--- title: Title keywords: fastai sidebar: home_sidebar nb_path: "j_notebooks/Process247FromDir.ipynb" ---
from bs4 import BeautifulSoup
import requests
import lxml
import time
import json
import os
from os import path
import io
#don't need to include schools.json here cause schools['json'] = schools['id']
conference = 'sec'
teamDir = "..//html//247//" + conference + "//teams//"
recruitDir = "..//html//247//" + conference + "//recruits//"
prospectDir = "..//html//247//" + conference + "//prospects//"
all_recruits = []
for file in os.listdir(teamDir):
gameSoup = BeautifulSoup(open(teamDir + file, "r", encoding='windows-1252').read(), 'lxml')
starter = "ri-page__list-item"
team = file.split('_')[0]
y = (file.split('_')[1]).split('.')[0]
for x in gameSoup.find_all("li", class_="ri-page__list-item"):
#append player to sqlinsert list
player={}
player_status = ""
if (x.find("p", class_="commit-date") is not None):
player_status = x.find("p", class_="commit-date").text
if (player_status.strip() == 'Enrolled' or player_status.strip() == 'Signed'):
player['school'] = team
player['year'] = y
#Name
if (x.find("a", class_="ri-page__name-link") is not None):
player['playerName'] = x.find("a", class_="ri-page__name-link").text
#School/CityState
if (x.find("span", class_="meta") is not None):
locationInfoRaw = x.find("span", class_="meta")
locationInfoList = locationInfoRaw.text.split("(")
player['highSchool'] = (locationInfoList[0].strip())
cityState = locationInfoList[1].split(', ')
if (len(cityState) > 1):
#print(cityState)
state = cityState[1].strip()
#print(state.rstrip(')'))
player['city'] = (cityState[0].strip())
player['state'] = (state.rstrip(')'))
else:
player['city'] = "None"
player['state'] = "None"
#Position
if (x.find("div", class_="position") is not None):
player['position'] = ((x.find("div", class_="position").text).strip())
#Height/Weight
if (x.find("div", class_="metrics") is not None):
heightWeight = x.find("div", class_="metrics").text.strip()
height = (heightWeight.split(' / '))[0]
inchHeightPre = height.split('-')
if (inchHeightPre[0] != ''):
inchHeight = int(inchHeightPre[0])*12 + float(inchHeightPre[1])
else:
inchHeight = '0.0'
weight = (heightWeight.split(' / '))[1]
if (weight == '-'):
weight = '0'
player['height'] = (inchHeight)
player['weight'] = (weight)
#Getting composite rankings from the class page because of the prospect link, in some cases,
#actually goes to the JUCO page and as a result the JUCO rankings.
#Composite Rating
if (x.find("span", class_="score") is not None):
player['compRating'] = (x.find("span", class_="score").text)
#Composite Stars
ratingChildren = x.find_all("span", class_='icon-starsolid yellow')
i = 0
for child in ratingChildren:
i = i + 1
player['compStars'] = (i)
#Composite National Rank
if (x.find("a", class_="natrank") is not None):
player['nationalRank'] = ((x.find("a", class_="natrank").text).strip())
#Composite Position Rank
if (x.find("a", class_="posrank") is not None):
player['positionRank'] = ((x.find("a", class_="posrank").text).strip())
#Composite State Rank
if (x.find("a", class_="sttrank") is not None):
player['stateRank'] = ((x.find("a", class_="sttrank").text).strip())
## We are going to get 247 rankings data from the prospect page, but nothing else
prospectFile = prospectDir + player['playerName'] + "_" + player['school'] + "_secondhop_" + player['year'] + ".html"
if (path.isfile(prospectFile)):
prospectSoup = BeautifulSoup(open(prospectFile, "r", encoding='utf8').read(), 'lxml')
ratingsSection = prospectSoup.find_all("section", class_="rankings-section")
count = 0
for rating in ratingsSection:
if (count == 1):
#247 Rating
if (rating.find("div", class_="rank-block") is not None):
player['247Rating'] = (rating.find("div", class_="rank-block").text)
#Stars
ratingChildren = rating.find_all("span", class_='icon-starsolid yellow')
i = 0
for child in ratingChildren:
i = i + 1
player['247Stars'] = (i)
#247 Rankings are stupid
ratingValues = rating.find_all("li", class_=None)
ratingColunt = 0
if (len(ratingValues) >= 3):
player['247nationalRank'] = ratingValues[0].find("strong").text
player['247positionRank'] = ratingValues[1].find("strong").text
player['247stateRank'] = ratingValues[2].find("strong").text
elif (len(ratingValues) == 2):
if (ratingValues[0].find("strong") is not None):
player['247positionRank'] = ratingValues[0].find("strong").text
if (ratingValues[1].find("strong") is not None):
player['247stateRank'] = ratingValues[1].find("strong").text
else:
print("Error: " + player['playerName'])
count += 1
if player:
all_recruits.append(player)
print(all_recruits)
[{'school': 'texas-am', 'year': '2015', 'playerName': 'Daylon Mack', 'highSchool': 'Gladewater', 'city': 'Gladewater', 'state': 'TX', 'position': 'DT', 'height': 73.0, 'weight': '330', 'compRating': '0.9916', 'compStars': 5, 'nationalRank': '14', 'positionRank': '4', 'stateRank': '2', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '18', '247positionRank': '5', '247stateRank': '3'}, {'school': 'texas-am', 'year': '2015', 'playerName': 'Christian Kirk', 'highSchool': 'Saguaro', 'city': 'Scottsdale', 'state': 'AZ', 'position': 'WR', 'height': 70.0, 'weight': '191', 'compRating': '0.9891', 'compStars': 5, 'nationalRank': '25', 'positionRank': '4', 'stateRank': '1', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '41', '247positionRank': '6', '247stateRank': '1'}, {'school': 'texas-am', 'year': '2015', 'playerName': 'Kyler Murray', 'highSchool': 'Allen', 'city': 'Allen', 'state': 'TX', 'position': 'DUAL', 'height': 70.0, 'weight': '180', 'compRating': '0.9855', 'compStars': 5, 'nationalRank': '34', 'positionRank': '1', 'stateRank': '5', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '30', '247positionRank': '2', '247stateRank': '4'}, {'school': 'texas-am', 'year': '2015', 'playerName': 'Justin Dunning', 'highSchool': 'Whitehouse', 'city': 'Whitehouse', 'state': 'TX', 'position': 'S', 'height': 75.5, 'weight': '204', 'compRating': '0.9425', 'compStars': 4, 'nationalRank': '130', 'positionRank': '5', 'stateRank': '17', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '181', '247positionRank': '7', '247stateRank': '23'}, {'school': 'texas-am', 'year': '2015', 'playerName': 'James Lockhart', 'highSchool': 'Ennis', 'city': 'Ennis', 'state': 'TX', 'position': 'SDE', 'height': 74.0, 'weight': '251', 'compRating': '0.9404', 'compStars': 4, 'nationalRank': '135', 'positionRank': '11', 'stateRank': '18', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '215', '247positionRank': '14', '247stateRank': '29'}, {'school': 'texas-am', 'year': '2015', 'playerName': 'Larry Pryor', 'highSchool': 'Sulphur Springs', 'city': 'Sulphur Springs', 'state': 'TX', 'position': 'S', 'height': 71.5, 'weight': '196', 'compRating': '0.9320', 'compStars': 4, 'nationalRank': '158', 'positionRank': '8', 'stateRank': '21', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '233', '247positionRank': '10', '247stateRank': '31'}, {'school': 'texas-am', 'year': '2015', 'playerName': 'Connor Lanfear', 'highSchool': 'Jack C Hays', 'city': 'Buda', 'state': 'TX', 'position': 'OT', 'height': 77.5, 'weight': '295', 'compRating': '0.9222', 'compStars': 4, 'nationalRank': '181', 'positionRank': '14', 'stateRank': '24', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '33', '247stateRank': '44'}, {'school': 'texas-am', 'year': '2015', 'playerName': 'Roney Elam', 'highSchool': 'Newton', 'city': 'Newton', 'state': 'TX', 'position': 'CB', 'height': 74.0, 'weight': '173', 'compRating': '0.9203', 'compStars': 4, 'nationalRank': '192', 'positionRank': '23', 'stateRank': '27', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '31', '247stateRank': '37'}, {'school': 'texas-am', 'year': '2015', 'playerName': 'Keaton Sutherland', 'highSchool': 'Marcus', 'city': 'Flower Mound', 'state': 'TX', 'position': 'OT', 'height': 77.0, 'weight': '293', 'compRating': '0.9201', 'compStars': 4, 'nationalRank': '193', 'positionRank': '16', 'stateRank': '28', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '67', '247positionRank': '4', '247stateRank': '10'}, {'school': 'texas-am', 'year': '2015', 'playerName': 'Jordan Davis', 'highSchool': 'Clear Lake', 'city': 'Houston', 'state': 'TX', 'position': 'TE', 'height': 76.5, 'weight': '255', 'compRating': '0.9117', 'compStars': 4, 'nationalRank': '221', 'positionRank': '10', 'stateRank': '33', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '10', '247stateRank': '43'}, {'school': 'texas-am', 'year': '2015', 'playerName': 'Trevor Elbert', 'highSchool': 'Rockwall-Heath', 'city': 'Rockwall', 'state': 'TX', 'position': 'OT', 'height': 77.0, 'weight': '290', 'compRating': '0.9089', 'compStars': 4, 'nationalRank': '236', 'positionRank': '23', 'stateRank': '35', '247Rating': ' 79 ', '247Stars': 2, '247nationalRank': '230', '247positionRank': '22', '247stateRank': '59'}, {'school': 'texas-am', 'year': '2015', 'playerName': 'Kemah Siverand', 'highSchool': 'Cy Ridge', 'city': 'Houston', 'state': 'TX', 'position': 'WR', 'height': 72.0, 'weight': '187', 'compRating': '0.9024', 'compStars': 4, 'nationalRank': '273', 'positionRank': '31', 'stateRank': '41', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '56', '247stateRank': '69'}, {'school': 'texas-am', 'year': '2015', 'playerName': 'Jay Bradford', 'highSchool': 'Splendora', 'city': 'Splendora', 'state': 'TX', 'position': 'RB', 'height': 70.0, 'weight': '190', 'compRating': '0.9016', 'compStars': 4, 'nationalRank': '276', 'positionRank': '22', 'stateRank': '42', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '22', '247stateRank': '35'}, {'school': 'texas-am', 'year': '2015', 'playerName': 'Kendall Bussey', 'highSchool': 'Isidore Newman', 'city': 'New Orleans', 'state': 'LA', 'position': 'RB', 'height': 68.0, 'weight': '205', 'compRating': '0.8856', 'compStars': 3, 'nationalRank': '368', 'positionRank': '31', 'stateRank': '16', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '55', '247stateRank': '32'}, {'school': 'texas-am', 'year': '2015', 'playerName': 'Richard Moore', 'highSchool': 'Cedar Hill', 'city': 'Cedar Hill', 'state': 'TX', 'position': 'OLB', 'height': 72.5, 'weight': '210', 'compRating': '0.8833', 'compStars': 3, 'nationalRank': '380', 'positionRank': '31', 'stateRank': '52', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '39', '247stateRank': '77'}, {'school': 'texas-am', 'year': '2015', 'playerName': 'TD Moton', 'highSchool': 'Woodlawn', 'city': 'Shreveport', 'state': 'LA', 'position': 'DT', 'height': 74.5, 'weight': '310', 'compRating': '0.8763', 'compStars': 3, 'nationalRank': '436', 'positionRank': '24', 'stateRank': '23', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '32', '247stateRank': '25'}, {'school': 'texas-am', 'year': '2015', 'playerName': 'Justin Evans', 'highSchool': 'Mississippi Gulf Coast C.C.', 'city': 'Perkinston', 'state': 'MS', 'position': 'S', 'height': 72.0, 'weight': '185', 'compRating': '0.8762', 'compStars': 3, 'nationalRank': '29', 'positionRank': '3', 'stateRank': '11', '247Rating': ' 90 ', '247Stars': 4, '247nationalRank': '23', '247positionRank': '4', '247stateRank': '10'}, {'school': 'texas-am', 'year': '2015', 'playerName': 'Kingsley KeKe', 'highSchool': 'George Ranch', 'city': 'Richmond', 'state': 'TX', 'position': 'DT', 'height': 75.0, 'weight': '290', 'compRating': '0.8746', 'compStars': 3, 'nationalRank': '455', 'positionRank': '25', 'stateRank': '64', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '22', '247stateRank': '48'}, {'school': 'texas-am', 'year': '2015', 'playerName': 'Deshawn Capers-Smith', 'highSchool': 'Warren Easton', 'city': 'New Orleans', 'state': 'LA', 'position': 'ATH', 'height': 71.5, 'weight': '173', 'compRating': '0.8721', 'compStars': 3, 'nationalRank': '479', 'positionRank': '35', 'stateRank': '24', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '34', '247stateRank': '17'}, {'school': 'texas-am', 'year': '2015', 'playerName': 'Damion Ratley', 'highSchool': 'Blinn College', 'city': 'Brenham', 'state': 'TX', 'position': 'WR', 'height': 73.0, 'weight': '185', 'compRating': '0.8662', 'compStars': 3, 'nationalRank': '48', 'positionRank': '7', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2015', 'playerName': 'Landis Durham', 'highSchool': 'Plano East', 'city': 'Plano', 'state': 'TX', 'position': 'OLB', 'height': 74.0, 'weight': '232', 'compRating': '0.8656', 'compStars': 3, 'nationalRank': '550', 'positionRank': '38', 'stateRank': '75', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '38', '247stateRank': '76'}, {'school': 'texas-am', 'year': '2015', 'playerName': 'Claude George', 'highSchool': 'Hutchinson C.C.', 'city': 'Hutchinson', 'state': 'KS', 'position': 'OLB', 'height': 74.0, 'weight': '230', 'compRating': '0.8640', 'compStars': 3, 'nationalRank': '55', 'positionRank': '3', 'stateRank': '10', '247Rating': ' 87 ', '247Stars': 3, '247nationalRank': '52', '247positionRank': '6', '247stateRank': '10'}, {'school': 'texas-am', 'year': '2015', 'playerName': 'Erik McCoy', 'highSchool': 'Lufkin', 'city': 'Lufkin', 'state': 'TX', 'position': 'OC', 'height': 75.5, 'weight': '299', 'compRating': '0.8401', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '15', 'stateRank': '138', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '12', '247stateRank': '99'}, {'school': 'texas-am', 'year': '2015', 'playerName': 'Riley Garner', 'highSchool': 'A&M Consolidated', 'city': 'College Station', 'state': 'TX', 'position': 'ILB', 'height': 74.5, 'weight': '220', 'compRating': '0.8397', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '45', 'stateRank': '139', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '50', '247stateRank': '151'}, {'school': 'texas-am', 'year': '2015', 'playerName': 'Dwaine Thomas', 'highSchool': 'Hahnville', 'city': 'Boutte', 'state': 'LA', 'position': 'OLB', 'height': 74.0, 'weight': '218', 'compRating': '0.8370', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '77', 'stateRank': '61', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '56', '247stateRank': '46'}, {'school': 'texas-am', 'year': '2015', 'playerName': 'Daniel LaCamera', 'highSchool': 'East Lake', 'city': 'Tarpon Springs', 'state': 'FL', 'position': 'K', 'height': 76.0, 'weight': '210', 'compRating': '0.8200', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '6', 'stateRank': '240', '247Rating': ' 78 ', '247Stars': 2, '247positionRank': '4', '247stateRank': '310'}, {'school': 'texas-am', 'year': '2015', 'playerName': 'Jake Hubenak', 'highSchool': 'Blinn College', 'city': 'Brenham', 'state': 'TX', 'position': 'PRO', 'height': 75.0, 'weight': '195', 'compRating': '0.7000', 'compStars': 2, 'nationalRank': '413', 'positionRank': '11', 'stateRank': '41', '247Rating': ' 70 ', '247Stars': 2, '247positionRank': '9', '247stateRank': '37'}, {'school': 'tennessee', 'year': '2015', 'playerName': 'Kahlil McKenzie', 'highSchool': 'Clayton Valley', 'city': 'Concord', 'state': 'CA', 'position': 'DT', 'height': 75.0, 'weight': '339', 'compRating': '0.9972', 'compStars': 5, 'nationalRank': '6', 'positionRank': '2', 'stateRank': '2', '247Rating': ' 100 ', '247Stars': 5, '247nationalRank': '3', '247positionRank': '2', '247stateRank': '1'}, {'school': 'tennessee', 'year': '2015', 'playerName': 'Kyle Phillips', 'highSchool': 'Hillsboro', 'city': 'Nashville', 'state': 'TN', 'position': 'SDE', 'height': 75.5, 'weight': '250', 'compRating': '0.9843', 'compStars': 5, 'nationalRank': '36', 'positionRank': '4', 'stateRank': '1', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '21', '247positionRank': '3', '247stateRank': '1'}, {'school': 'tennessee', 'year': '2015', 'playerName': 'Alvin Kamara', 'highSchool': 'Hutchinson C.C.', 'city': 'Hutchinson', 'state': 'KS', 'position': 'RB', 'height': 70.5, 'weight': '210', 'compRating': '0.9776', 'compStars': 4, 'nationalRank': '2', 'positionRank': '2', 'stateRank': '1', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '66', '247positionRank': '3', '247stateRank': '7'}, {'school': 'tennessee', 'year': '2015', 'playerName': 'Preston Williams', 'highSchool': 'Lovejoy', 'city': 'Hampton', 'state': 'GA', 'position': 'WR', 'height': 76.0, 'weight': '191', 'compRating': '0.9769', 'compStars': 4, 'nationalRank': '47', 'positionRank': '7', 'stateRank': '5', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '29', '247positionRank': '3', '247stateRank': '4'}, {'school': 'tennessee', 'year': '2015', 'playerName': 'Shy Tuttle', 'highSchool': 'North Davidson', 'city': 'Lexington', 'state': 'NC', 'position': 'DT', 'height': 75.0, 'weight': '320', 'compRating': '0.9745', 'compStars': 4, 'nationalRank': '55', 'positionRank': '9', 'stateRank': '1', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '64', '247positionRank': '11', '247stateRank': '3'}, {'school': 'tennessee', 'year': '2015', 'playerName': 'Drew Richmond', 'highSchool': 'Memphis University School', 'city': 'Memphis', 'state': 'TN', 'position': 'OT', 'height': 77.0, 'weight': '310', 'compRating': '0.9742', 'compStars': 4, 'nationalRank': '56', 'positionRank': '3', 'stateRank': '2', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '97', '247positionRank': '7', '247stateRank': '3'}, {'school': 'tennessee', 'year': '2015', 'playerName': 'Jack Jones', 'highSchool': 'Oakland', 'city': 'Murfreesboro', 'state': 'TN', 'position': 'OT', 'height': 77.0, 'weight': '290', 'compRating': '0.9421', 'compStars': 4, 'nationalRank': '131', 'positionRank': '9', 'stateRank': '4', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '150', '247positionRank': '13', '247stateRank': '7'}, {'school': 'tennessee', 'year': '2015', 'playerName': 'Darrin Kirkland Jr.', 'highSchool': 'Lawrence Central', 'city': 'Indianapolis', 'state': 'IN', 'position': 'ILB', 'height': 73.0, 'weight': '223', 'compRating': '0.9306', 'compStars': 4, 'nationalRank': '160', 'positionRank': '5', 'stateRank': '2', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '182', '247positionRank': '5', '247stateRank': '2'}, {'school': 'tennessee', 'year': '2015', 'playerName': 'Jauan Jennings', 'highSchool': 'Blackman', 'city': 'Murfreesboro', 'state': 'TN', 'position': 'DUAL', 'height': 76.0, 'weight': '188', 'compRating': '0.9289', 'compStars': 4, 'nationalRank': '164', 'positionRank': '6', 'stateRank': '7', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '89', '247positionRank': '5', '247stateRank': '2'}, {'school': 'tennessee', 'year': '2015', 'playerName': "Quart'e Sapp", 'highSchool': 'Milton', 'city': 'Alpharetta', 'state': 'GA', 'position': 'OLB', 'height': 73.5, 'weight': '200', 'compRating': '0.9110', 'compStars': 4, 'nationalRank': '228', 'positionRank': '14', 'stateRank': '23', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '22', '247stateRank': '31'}, {'school': 'tennessee', 'year': '2015', 'playerName': 'Micah Abernathy', 'highSchool': 'Greater Atlanta Christian School', 'city': 'Norcross', 'state': 'GA', 'position': 'CB', 'height': 73.0, 'weight': '187', 'compRating': '0.9095', 'compStars': 4, 'nationalRank': '233', 'positionRank': '25', 'stateRank': '24', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '227', '247positionRank': '28', '247stateRank': '18'}, {'school': 'tennessee', 'year': '2015', 'playerName': 'Sheriron Jones', 'highSchool': 'Rancho Verde', 'city': 'Moreno Valley', 'state': 'CA', 'position': 'DUAL', 'height': 74.5, 'weight': '191', 'compRating': '0.9075', 'compStars': 4, 'nationalRank': '247', 'positionRank': '7', 'stateRank': '34', '247Rating': ' 84 ', '247Stars': 3, '247nationalRank': '98', '247positionRank': '5', '247stateRank': '16'}, {'school': 'tennessee', 'year': '2015', 'playerName': 'Justin Martin', 'highSchool': 'Northeastern Oklahoma A&M', 'city': 'Miami', 'state': 'OK', 'position': 'CB', 'height': 74.0, 'weight': '183', 'compRating': '0.9069', 'compStars': 4, 'nationalRank': '11', 'positionRank': '2', 'stateRank': '1', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '7', '247positionRank': '1', '247stateRank': '1'}, {'school': 'tennessee', 'year': '2015', 'playerName': 'Andrew Butcher', 'highSchool': 'Alpharetta', 'city': 'Alpharetta', 'state': 'GA', 'position': 'SDE', 'height': 74.0, 'weight': '242', 'compRating': '0.9037', 'compStars': 4, 'nationalRank': '266', 'positionRank': '18', 'stateRank': '28', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '23', '247stateRank': '41'}, {'school': 'tennessee', 'year': '2015', 'playerName': 'Quinten Dormady', 'highSchool': 'Boerne', 'city': 'Boerne', 'state': 'TX', 'position': 'PRO', 'height': 76.0, 'weight': '200', 'compRating': '0.9029', 'compStars': 4, 'nationalRank': '271', 'positionRank': '11', 'stateRank': '40', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '198', '247positionRank': '8', '247stateRank': '26'}, {'school': 'tennessee', 'year': '2015', 'playerName': 'Darrell Taylor', 'highSchool': 'Hopewell', 'city': 'Hopewell', 'state': 'VA', 'position': 'WDE', 'height': 76.0, 'weight': '230', 'compRating': '0.9004', 'compStars': 4, 'nationalRank': '279', 'positionRank': '14', 'stateRank': '11', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '226', '247positionRank': '13', '247stateRank': '11'}, {'school': 'tennessee', 'year': '2015', 'playerName': 'Venzell Boulware', 'highSchool': 'Creekside', 'city': 'Fairburn', 'state': 'GA', 'position': 'OT', 'height': 76.0, 'weight': '290', 'compRating': '0.8872', 'compStars': 3, 'nationalRank': '356', 'positionRank': '36', 'stateRank': '33', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '57', '247stateRank': '54'}, {'school': 'tennessee', 'year': '2015', 'playerName': 'Quay Picou', 'highSchool': 'Buford', 'city': 'Buford', 'state': 'GA', 'position': 'DT', 'height': 74.0, 'weight': '275', 'compRating': '0.8706', 'compStars': 3, 'nationalRank': '497', 'positionRank': '30', 'stateRank': '47', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '23', '247stateRank': '35'}, {'school': 'tennessee', 'year': '2015', 'playerName': 'John Kelly', 'highSchool': 'Oak Park', 'city': 'Oak Park', 'state': 'MI', 'position': 'ATH', 'height': 70.0, 'weight': '208', 'compRating': '0.8665', 'compStars': 3, 'nationalRank': '545', 'positionRank': '40', 'stateRank': '8', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '38', '247stateRank': '5'}, {'school': 'tennessee', 'year': '2015', 'playerName': 'Austin Smith', 'highSchool': 'Buford', 'city': 'Buford', 'state': 'GA', 'position': 'OLB', 'height': 75.5, 'weight': '235', 'compRating': '0.8630', 'compStars': 3, 'nationalRank': '593', 'positionRank': '41', 'stateRank': '58', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '52', '247stateRank': '88'}, {'school': 'tennessee', 'year': '2015', 'playerName': 'Kyle Oliver', 'highSchool': 'Oakland', 'city': 'Murfreesboro', 'state': 'TN', 'position': 'TE', 'height': 77.0, 'weight': '230', 'compRating': '0.8605', 'compStars': 3, 'nationalRank': '633', 'positionRank': '20', 'stateRank': '19'}, {'school': 'tennessee', 'year': '2015', 'playerName': 'Chance Hall', 'highSchool': 'Northside', 'city': 'Roanoke', 'state': 'VA', 'position': 'OT', 'height': 77.0, 'weight': '305', 'compRating': '0.8585', 'compStars': 3, 'nationalRank': '679', 'positionRank': '76', 'stateRank': '23', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '53', '247stateRank': '21'}, {'school': 'tennessee', 'year': '2015', 'playerName': 'Stephen Griffin', 'highSchool': 'South Mecklenburg', 'city': 'Charlotte', 'state': 'NC', 'position': 'S', 'height': 75.0, 'weight': '190', 'compRating': '0.8564', 'compStars': 3, 'nationalRank': '733', 'positionRank': '53', 'stateRank': '26', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '83', '247stateRank': '34'}, {'school': 'tennessee', 'year': '2015', 'playerName': 'Darrell Miller', 'highSchool': 'Cedar Hill', 'city': 'Cedar Hill', 'state': 'TX', 'position': 'CB', 'height': 70.0, 'weight': '171', 'compRating': '0.8559', 'compStars': 3, 'nationalRank': '748', 'positionRank': '73', 'stateRank': '97'}, {'school': 'tennessee', 'year': '2015', 'playerName': 'Vincent Perry', 'highSchool': 'Hillsboro', 'city': 'Nashville', 'state': 'TN', 'position': 'APB', 'height': 72.0, 'weight': '177', 'compRating': '0.8538', 'compStars': 3, 'nationalRank': '793', 'positionRank': '14', 'stateRank': '22', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '10', '247stateRank': '18'}, {'school': 'tennessee', 'year': '2015', 'playerName': 'Jocquez Bruce', 'highSchool': 'South-Doyle', 'city': 'Knoxville', 'state': 'TN', 'position': 'ATH', 'height': 70.0, 'weight': '170', 'compRating': '0.8463', 'compStars': 3, 'nationalRank': '977', 'positionRank': '80', 'stateRank': '29', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '81', '247stateRank': '28'}, {'school': 'tennessee', 'year': '2015', 'playerName': 'Tommy Townsend', 'highSchool': 'Boone', 'city': 'Orlando', 'state': 'FL', 'position': 'P', 'height': 73.0, 'weight': '168', 'compRating': '0.8095', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '8', 'stateRank': '269', '247Rating': ' 71 ', '247Stars': 2, '247positionRank': '18', '247stateRank': '417'}, {'school': 'tennessee', 'year': '2015', 'playerName': 'Joe Young', 'highSchool': 'Fairfield Central', 'city': 'Winnsboro', 'state': 'SC', 'position': 'RB', 'height': 72.0, 'weight': '192', 'compRating': '0.7924', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '180', 'stateRank': '34', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '143', '247stateRank': '26'}, {'school': 'tennessee', 'year': '2015', 'playerName': 'Riley Lovingood', 'highSchool': 'Beech', 'city': 'Hendersonville', 'state': 'TN', 'position': 'LS', 'height': 73.0, 'weight': '240', 'compRating': '0.7575', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '8', 'stateRank': '96', '247Rating': ' 74 ', '247Stars': 2, '247positionRank': '4', '247stateRank': '87'}, {'school': 'tennessee', 'year': '2015', 'playerName': 'Zach Stewart', 'highSchool': 'Coalfield School', 'city': 'Coalfield', 'state': 'TN', 'position': 'OT', 'height': 76.0, 'weight': '315', 'compRating': '0.8649', 'compStars': 3, 'nationalRank': '563', 'positionRank': '64', 'stateRank': '16'}, {'school': 'lsu', 'year': '2011', 'playerName': "La'el Collins", 'highSchool': 'Redemptorist', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'OT', 'height': 77.0, 'weight': '306', 'compRating': '0.9977', 'compStars': 5, 'nationalRank': '3', 'positionRank': '2', 'stateRank': '1', '247Rating': ' 100 ', '247Stars': 5, '247nationalRank': '3', '247positionRank': '2', '247stateRank': '1'}, {'school': 'lsu', 'year': '2011', 'playerName': 'Anthony Johnson', 'highSchool': 'O Perry Walker', 'city': 'New Orleans', 'state': 'LA', 'position': 'DT', 'height': 75.0, 'weight': '294', 'compRating': '0.9973', 'compStars': 5, 'nationalRank': '5', 'positionRank': '1', 'stateRank': '2', '247Rating': ' 99 ', '247Stars': 5, '247nationalRank': '8', '247positionRank': '2', '247stateRank': '2'}, {'school': 'lsu', 'year': '2011', 'playerName': 'Jarvis Landry', 'highSchool': 'Lutcher', 'city': 'Lutcher', 'state': 'LA', 'position': 'WR', 'height': 71.0, 'weight': '194', 'compRating': '0.9922', 'compStars': 5, 'nationalRank': '15', 'positionRank': '2', 'stateRank': '3', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '17', '247positionRank': '3', '247stateRank': '3'}, {'school': 'lsu', 'year': '2011', 'playerName': 'Jermauria Rasco', 'highSchool': 'Evangel Christian Academy', 'city': 'Shreveport', 'state': 'LA', 'position': 'WDE', 'height': 75.0, 'weight': '247', 'compRating': '0.9593', 'compStars': 4, 'nationalRank': '86', 'positionRank': '5', 'stateRank': '4', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '58', '247positionRank': '4', '247stateRank': '5'}, {'school': 'lsu', 'year': '2011', 'playerName': 'Kenny Hilliard', 'highSchool': 'Patterson', 'city': 'Patterson', 'state': 'LA', 'position': 'RB', 'height': 72.0, 'weight': '230', 'compRating': '0.9432', 'compStars': 4, 'nationalRank': '114', 'positionRank': '8', 'stateRank': '7', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '213', '247positionRank': '16', '247stateRank': '11'}, {'school': 'lsu', 'year': '2011', 'playerName': 'Zach Mettenberger', 'highSchool': 'Butler C.C.', 'city': 'El Dorado', 'state': 'KS', 'position': 'PRO', 'height': 77.0, 'weight': '245', 'compRating': '0.9350', 'compStars': 4, 'nationalRank': '4', 'positionRank': '1', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2011', 'playerName': 'Odell Beckham Jr.', 'highSchool': 'Isidore Newman', 'city': 'New Orleans', 'state': 'LA', 'position': 'WR', 'height': 70.0, 'weight': '170', 'compRating': '0.9341', 'compStars': 4, 'nationalRank': '135', 'positionRank': '20', 'stateRank': '9', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '55', '247positionRank': '10', '247stateRank': '4'}, {'school': 'lsu', 'year': '2011', 'playerName': 'Mickey Johnson', 'highSchool': 'Covington', 'city': 'Covington', 'state': 'LA', 'position': 'DT', 'height': 72.0, 'weight': '310', 'compRating': '0.9286', 'compStars': 4, 'nationalRank': '153', 'positionRank': '13', 'stateRank': '10', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '203', '247positionRank': '20', '247stateRank': '10'}, {'school': 'lsu', 'year': '2011', 'playerName': 'David Jenkins', 'highSchool': 'Hebron', 'city': 'Carrollton', 'state': 'TX', 'position': 'CB', 'height': 73.0, 'weight': '175', 'compRating': '0.9265', 'compStars': 4, 'nationalRank': '156', 'positionRank': '10', 'stateRank': '22'}, {'school': 'lsu', 'year': '2011', 'playerName': 'Jerrard Randall', 'highSchool': 'Chaminade-Madonna Prep', 'city': 'Hollywood', 'state': 'FL', 'position': 'DUAL', 'height': 73.0, 'weight': '175', 'compRating': '0.9179', 'compStars': 4, 'nationalRank': '182', 'positionRank': '8', 'stateRank': '34', '247Rating': ' 70 ', '247Stars': 2, '247positionRank': '9', '247stateRank': '45'}, {'school': 'lsu', 'year': '2011', 'playerName': 'Jalen Collins', 'highSchool': 'Olive Branch', 'city': 'Olive Branch', 'state': 'MS', 'position': 'CB', 'height': 74.0, 'weight': '175', 'compRating': '0.8772', 'compStars': 3, 'nationalRank': '349', 'positionRank': '30', 'stateRank': '10', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '28', '247stateRank': '9'}, {'school': 'lsu', 'year': '2011', 'playerName': 'Trai Turner', 'highSchool': 'St. Augustine', 'city': 'New Orleans', 'state': 'LA', 'position': 'OG', 'height': 76.0, 'weight': '335', 'compRating': '0.8765', 'compStars': 3, 'nationalRank': '355', 'positionRank': '16', 'stateRank': '12', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '15', '247stateRank': '12'}, {'school': 'lsu', 'year': '2011', 'playerName': 'Corey White', 'highSchool': 'Capitol Pre-college Academy For Boys', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'OG', 'height': 76.0, 'weight': '332', 'compRating': '0.8740', 'compStars': 3, 'nationalRank': '376', 'positionRank': '18', 'stateRank': '13', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '25', '247stateRank': '18'}, {'school': 'lsu', 'year': '2011', 'playerName': 'Jonah Austin', 'highSchool': 'St. Augustine', 'city': 'New Orleans', 'state': 'LA', 'position': 'OT', 'height': 79.0, 'weight': '315', 'compRating': '0.8700', 'compStars': 3, 'nationalRank': '411', 'positionRank': '41', 'stateRank': '15', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '27', '247stateRank': '14'}, {'school': 'lsu', 'year': '2011', 'playerName': 'Paul Turner', 'highSchool': 'West Monroe', 'city': 'West Monroe', 'state': 'LA', 'position': 'ATH', 'height': 71.0, 'weight': '195', 'compRating': '0.8684', 'compStars': 3, 'nationalRank': '422', 'positionRank': '27', 'stateRank': '17', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '21', '247stateRank': '15'}, {'school': 'lsu', 'year': '2011', 'playerName': 'Micah Eugene', 'highSchool': 'Acadiana', 'city': 'Lafayette', 'state': 'LA', 'position': 'S', 'height': 71.0, 'weight': '190', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '442', 'positionRank': '31', 'stateRank': '18', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '20', '247stateRank': '13'}, {'school': 'lsu', 'year': '2011', 'playerName': 'Terrence Magee', 'highSchool': 'Franklinton', 'city': 'Franklinton', 'state': 'LA', 'position': 'RB', 'height': 70.0, 'weight': '205', 'compRating': '0.8640', 'compStars': 3, 'nationalRank': '480', 'positionRank': '31', 'stateRank': '20', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '32', '247stateRank': '23'}, {'school': 'lsu', 'year': '2011', 'playerName': 'Quentin Thomas', 'highSchool': 'Breaux Bridge', 'city': 'Breaux Bridge', 'state': 'LA', 'position': 'SDE', 'height': 75.0, 'weight': '255', 'compRating': '0.8615', 'compStars': 3, 'nationalRank': '521', 'positionRank': '40', 'stateRank': '21', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '40', '247stateRank': '25'}, {'school': 'lsu', 'year': '2011', 'playerName': 'Stephen Rivers', 'highSchool': 'Athens', 'city': 'Athens', 'state': 'AL', 'position': 'PRO', 'height': 78.0, 'weight': '200', 'compRating': '0.8584', 'compStars': 3, 'nationalRank': '576', 'positionRank': '18', 'stateRank': '19', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '20', '247stateRank': '21'}, {'school': 'lsu', 'year': '2011', 'playerName': 'Ronald Martin', 'highSchool': 'White Castle', 'city': 'White Castle', 'state': 'LA', 'position': 'CB', 'height': 74.0, 'weight': '190', 'compRating': '0.8559', 'compStars': 3, 'nationalRank': '624', 'positionRank': '43', 'stateRank': '24', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '46', '247stateRank': '26'}, {'school': 'lsu', 'year': '2011', 'playerName': 'James Hairston', 'highSchool': 'Jesuit', 'city': 'Dallas', 'state': 'TX', 'position': 'K', 'height': 73.0, 'weight': '195', 'compRating': '0.7999', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '15', 'stateRank': '225', '247Rating': ' 76 ', '247Stars': 2, '247positionRank': '9', '247stateRank': '200'}, {'school': 'lsu', 'year': '2011', 'playerName': 'Trevon Randle', 'highSchool': 'Clear Springs', 'city': 'League City', 'state': 'TX', 'position': 'OLB', 'height': 73.0, 'weight': '210', 'compRating': '0.9007', 'compStars': 4, 'nationalRank': '237', 'positionRank': '15', 'stateRank': '35'}, {'school': 'lsu', 'year': '2011', 'playerName': 'Alonzo Lewis', 'highSchool': 'St. James', 'city': 'Saint James', 'state': 'LA', 'position': 'ATH', 'height': 75.0, 'weight': '180', 'compRating': '0.8569', 'compStars': 3, 'nationalRank': '599', 'positionRank': '39', 'stateRank': '22'}, {'school': 'auburn', 'year': '2012', 'playerName': 'Avery Young', 'highSchool': 'Palm Beach Gardens', 'city': 'Palm Beach Gardens', 'state': 'FL', 'position': 'OT', 'height': 78.0, 'weight': '281', 'compRating': '0.9655', 'compStars': 4, 'nationalRank': '77', 'positionRank': '8', 'stateRank': '14', '247Rating': ' 92 ', '247Stars': 4, '247positionRank': '29', '247stateRank': '35'}, {'school': 'auburn', 'year': '2012', 'playerName': 'Ricky Parks', 'highSchool': 'Callaway', 'city': 'Hogansville', 'state': 'GA', 'position': 'TE', 'height': 76.0, 'weight': '235', 'compRating': '0.9631', 'compStars': 4, 'nationalRank': '82', 'positionRank': '2', 'stateRank': '7', '247Rating': ' 79 ', '247Stars': 2, '247nationalRank': '213', '247positionRank': '19', '247stateRank': '35'}, {'school': 'auburn', 'year': '2012', 'playerName': 'Jordan Diamond', 'highSchool': 'Simeon', 'city': 'Chicago', 'state': 'IL', 'position': 'OT', 'height': 78.0, 'weight': '290', 'compRating': '0.9565', 'compStars': 4, 'nationalRank': '101', 'positionRank': '10', 'stateRank': '3', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '70', '247positionRank': '5', '247stateRank': '2'}, {'school': 'auburn', 'year': '2012', 'playerName': 'Ricardo Louis', 'highSchool': 'Miami Beach Senior', 'city': 'Miami Beach', 'state': 'FL', 'position': 'WR', 'height': 74.0, 'weight': '210', 'compRating': '0.9423', 'compStars': 4, 'nationalRank': '148', 'positionRank': '19', 'stateRank': '24', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '228', '247positionRank': '29', '247stateRank': '32'}, {'school': 'auburn', 'year': '2012', 'playerName': 'Joshua Holsey', 'highSchool': 'Creekside', 'city': 'Fairburn', 'state': 'GA', 'position': 'CB', 'height': 71.0, 'weight': '175', 'compRating': '0.9383', 'compStars': 4, 'nationalRank': '156', 'positionRank': '12', 'stateRank': '14', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '241', '247positionRank': '16', '247stateRank': '20'}, {'school': 'auburn', 'year': '2012', 'playerName': 'Tyler Nero', 'highSchool': 'Escambia Co Sch', 'city': 'Atmore', 'state': 'AL', 'position': 'DT', 'height': 74.0, 'weight': '285', 'compRating': '0.9360', 'compStars': 4, 'nationalRank': '161', 'positionRank': '14', 'stateRank': '10', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '157', '247positionRank': '12', '247stateRank': '9'}, {'school': 'auburn', 'year': '2012', 'playerName': 'Patrick Miller', 'highSchool': 'Dwyer', 'city': 'Palm Beach Gardens', 'state': 'FL', 'position': 'OT', 'height': 78.0, 'weight': '275', 'compRating': '0.9302', 'compStars': 4, 'nationalRank': '181', 'positionRank': '20', 'stateRank': '31', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '133', '247positionRank': '13', '247stateRank': '22'}, {'school': 'auburn', 'year': '2012', 'playerName': 'Shane Callahan', 'highSchool': 'Chaparral', 'city': 'Parker', 'state': 'CO', 'position': 'OT', 'height': 78.0, 'weight': '275', 'compRating': '0.9166', 'compStars': 4, 'nationalRank': '242', 'positionRank': '27', 'stateRank': '4', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '35', '247stateRank': '4'}, {'school': 'auburn', 'year': '2012', 'playerName': 'Cassanova McKinzy', 'highSchool': 'Woodlawn', 'city': 'Birmingham', 'state': 'AL', 'position': 'OLB', 'height': 75.0, 'weight': '230', 'compRating': '0.9183', 'compStars': 4, 'nationalRank': '234', 'positionRank': '26', 'stateRank': '12', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '205', '247positionRank': '22', '247stateRank': '10'}, {'school': 'auburn', 'year': '2012', 'playerName': 'Zeke Pike', 'highSchool': 'Dixie Heights', 'city': 'Ft Mitchell', 'state': 'KY', 'position': 'PRO', 'height': 77.0, 'weight': '229', 'compRating': '0.9028', 'compStars': 4, 'nationalRank': '300', 'positionRank': '12', 'stateRank': '1', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '14', '247stateRank': '3'}, {'school': 'auburn', 'year': '2012', 'playerName': 'Alex Kozan', 'highSchool': 'Valor Christian', 'city': 'Littleton', 'state': 'CO', 'position': 'OT', 'height': 76.0, 'weight': '295', 'compRating': '0.8889', 'compStars': 3, 'nationalRank': '390', 'positionRank': '39', 'stateRank': '6', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '47', '247stateRank': '6'}, {'school': 'auburn', 'year': '2012', 'playerName': 'JaViere Mitchell', 'highSchool': 'Leeds', 'city': 'Leeds', 'state': 'AL', 'position': 'OLB', 'height': 74.0, 'weight': '210', 'compRating': '0.8840', 'compStars': 3, 'nationalRank': '429', 'positionRank': '43', 'stateRank': '14', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '48', '247stateRank': '16'}, {'school': 'auburn', 'year': '2012', 'playerName': 'Jonathan Jones', 'highSchool': 'Carrollton', 'city': 'Carrollton', 'state': 'GA', 'position': 'CB', 'height': 70.0, 'weight': '184', 'compRating': '0.8834', 'compStars': 3, 'nationalRank': '436', 'positionRank': '32', 'stateRank': '33', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '39', '247stateRank': '35'}, {'school': 'auburn', 'year': '2012', 'playerName': 'T.J. Davis', 'highSchool': 'Amos P. Godby', 'city': 'Tallahassee', 'state': 'FL', 'position': 'CB', 'height': 73.0, 'weight': '172', 'compRating': '0.8816', 'compStars': 3, 'nationalRank': '462', 'positionRank': '34', 'stateRank': '60', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '43', '247stateRank': '67'}, {'school': 'auburn', 'year': '2012', 'playerName': 'Gimel President', 'highSchool': 'Wando', 'city': 'Mount Pleasant', 'state': 'SC', 'position': 'SDE', 'height': 76.0, 'weight': '250', 'compRating': '0.8688', 'compStars': 3, 'nationalRank': '645', 'positionRank': '38', 'stateRank': '15', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '42', '247stateRank': '15'}, {'school': 'auburn', 'year': '2012', 'playerName': 'Jonathan Wallace', 'highSchool': 'Central', 'city': 'Phenix City', 'state': 'AL', 'position': 'DUAL', 'height': 73.0, 'weight': '205', 'compRating': '0.8670', 'compStars': 3, 'nationalRank': '669', 'positionRank': '17', 'stateRank': '22', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '16', '247stateRank': '24'}, {'school': 'auburn', 'year': '2012', 'playerName': 'Will Adams', 'highSchool': 'Sandy Creek', 'city': 'Tyrone', 'state': 'GA', 'position': 'OT', 'height': 79.0, 'weight': '275', 'compRating': '0.8440', 'compStars': 3, 'nationalRank': '959', 'positionRank': '83', 'stateRank': '80', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '72', '247stateRank': '58'}, {'school': 'auburn', 'year': '2012', 'playerName': 'Robert Leff', 'highSchool': 'Fairhope', 'city': 'Fairhope', 'state': 'AL', 'position': 'OT', 'height': 78.0, 'weight': '280', 'compRating': '0.8387', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '92', 'stateRank': '31', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '106', '247stateRank': '37'}, {'school': 'auburn', 'year': '2012', 'playerName': 'Forrest Hill', 'highSchool': 'Morrow', 'city': 'Morrow', 'state': 'GA', 'position': 'LS', 'height': 73.0, 'weight': '232', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2012', 'playerName': 'JaQuay Savage', 'highSchool': 'Sandy Creek', 'city': 'Tyrone', 'state': 'GA', 'position': 'WR', 'height': 76.0, 'weight': '200', 'compRating': '0.9574', 'compStars': 4, 'nationalRank': '97', 'positionRank': '15', 'stateRank': '8', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '3', '247positionRank': '2', '247stateRank': '3'}, {'school': 'auburn', 'year': '2012', 'playerName': 'Darrion Hutcherson', 'highSchool': 'Dadeville', 'city': 'Dadeville', 'state': 'AL', 'position': 'TE', 'height': 79.0, 'weight': '245', 'compRating': '0.8827', 'compStars': 3, 'nationalRank': '449', 'positionRank': '16', 'stateRank': '16', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '78', '247positionRank': '3', '247stateRank': '15'}, {'school': 'georgia', 'year': '2013', 'playerName': 'Tray Matthews', 'highSchool': 'Newnan', 'city': 'Newnan', 'state': 'GA', 'position': 'S', 'height': 73.0, 'weight': '192', 'compRating': '0.9653', 'compStars': 4, 'nationalRank': '77', 'positionRank': '10', 'stateRank': '7', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '99', '247positionRank': '13', '247stateRank': '9'}, {'school': 'georgia', 'year': '2013', 'playerName': 'Brice Ramsey', 'highSchool': 'Camden County', 'city': 'Kingsland', 'state': 'GA', 'position': 'PRO', 'height': 75.0, 'weight': '197', 'compRating': '0.9537', 'compStars': 4, 'nationalRank': '102', 'positionRank': '7', 'stateRank': '10', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '37', '247positionRank': '3', '247stateRank': '5'}, {'school': 'georgia', 'year': '2013', 'playerName': 'Tramel Terry', 'highSchool': 'Goose Creek', 'city': 'Goose Creek', 'state': 'SC', 'position': 'WR', 'height': 72.0, 'weight': '192', 'compRating': '0.9443', 'compStars': 4, 'nationalRank': '121', 'positionRank': '13', 'stateRank': '1', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '101', '247positionRank': '9', '247stateRank': '1'}, {'school': 'georgia', 'year': '2013', 'playerName': 'Shaq Wiggins', 'highSchool': 'Sandy Creek', 'city': 'Tyrone', 'state': 'GA', 'position': 'CB', 'height': 69.0, 'weight': '160', 'compRating': '0.9383', 'compStars': 4, 'nationalRank': '133', 'positionRank': '13', 'stateRank': '13', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '186', '247positionRank': '16', '247stateRank': '17'}, {'school': 'georgia', 'year': '2013', 'playerName': 'Tim Kimbrough', 'highSchool': 'Warren Central', 'city': 'Indianapolis', 'state': 'IN', 'position': 'ILB', 'height': 71.5, 'weight': '228', 'compRating': '0.9299', 'compStars': 4, 'nationalRank': '163', 'positionRank': '5', 'stateRank': '3', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '218', '247positionRank': '10', '247stateRank': '4'}, {'school': 'georgia', 'year': '2013', 'playerName': 'Brandon Kublanow', 'highSchool': 'Walton', 'city': 'Marietta', 'state': 'GA', 'position': 'OC', 'height': 74.0, 'weight': '290', 'compRating': '0.9226', 'compStars': 4, 'nationalRank': '185', 'positionRank': '4', 'stateRank': '16', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '5', '247stateRank': '21'}, {'school': 'georgia', 'year': '2013', 'playerName': 'Brendan Langley', 'highSchool': 'Kell', 'city': 'Marietta', 'state': 'GA', 'position': 'CB', 'height': 73.0, 'weight': '180', 'compRating': '0.9225', 'compStars': 4, 'nationalRank': '186', 'positionRank': '17', 'stateRank': '17', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '181', '247positionRank': '15', '247stateRank': '16'}, {'school': 'georgia', 'year': '2013', 'playerName': 'Leonard Floyd', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'OLB', 'height': 77.0, 'weight': '240', 'compRating': '0.9167', 'compStars': 4, 'nationalRank': '5', 'positionRank': '1', 'stateRank': '5', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '123', '247positionRank': '10', '247stateRank': '11'}, {'school': 'georgia', 'year': '2013', 'playerName': 'Toby Johnson', 'highSchool': 'Hutchinson C.C.', 'city': 'Hutchinson', 'state': 'KS', 'position': 'DT', 'height': 76.5, 'weight': '310', 'compRating': '0.9141', 'compStars': 4, 'nationalRank': '9', 'positionRank': '4', 'stateRank': '1', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '8', '247positionRank': '3', '247stateRank': '1'}, {'school': 'georgia', 'year': '2013', 'playerName': 'Reggie Wilkerson', 'highSchool': 'North Marion', 'city': 'Citra', 'state': 'FL', 'position': 'CB', 'height': 71.0, 'weight': '175', 'compRating': '0.9114', 'compStars': 4, 'nationalRank': '228', 'positionRank': '18', 'stateRank': '31', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '26', '247stateRank': '50'}, {'school': 'georgia', 'year': '2013', 'playerName': 'A.J. Turman', 'highSchool': 'Boone', 'city': 'Orlando', 'state': 'FL', 'position': 'RB', 'height': 72.0, 'weight': '205', 'compRating': '0.9114', 'compStars': 4, 'nationalRank': '229', 'positionRank': '18', 'stateRank': '32', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '185', '247positionRank': '13', '247stateRank': '26'}, {'school': 'georgia', 'year': '2013', 'playerName': "Johnny O'Neal", 'highSchool': 'West Laurens', 'city': 'Dublin', 'state': 'GA', 'position': 'ILB', 'height': 73.0, 'weight': '233', 'compRating': '0.9049', 'compStars': 4, 'nationalRank': '260', 'positionRank': '14', 'stateRank': '20', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '35', '247stateRank': '59'}, {'school': 'georgia', 'year': '2013', 'playerName': 'Reggie Carter', 'highSchool': 'South Gwinnett', 'city': 'Snellville', 'state': 'GA', 'position': 'ILB', 'height': 74.0, 'weight': '230', 'compRating': '0.8968', 'compStars': 4, 'nationalRank': '294', 'positionRank': '16', 'stateRank': '22', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '23', '247stateRank': '34'}, {'school': 'georgia', 'year': '2013', 'playerName': 'Jonathon Rumph', 'highSchool': 'Holmes C.C.', 'city': 'Goodman', 'state': 'MS', 'position': 'WR', 'height': 77.0, 'weight': '215', 'compRating': '0.8966', 'compStars': 4, 'nationalRank': '15', 'positionRank': '6', 'stateRank': '7', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '57', '247positionRank': '11', '247stateRank': '11'}, {'school': 'georgia', 'year': '2013', 'playerName': 'Davin Bellamy', 'highSchool': 'Chamblee Charter', 'city': 'Atlanta', 'state': 'GA', 'position': 'SDE', 'height': 77.0, 'weight': '235', 'compRating': '0.8937', 'compStars': 4, 'nationalRank': '314', 'positionRank': '19', 'stateRank': '25', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '21', '247stateRank': '32'}, {'school': 'georgia', 'year': '2013', 'playerName': 'John Atkins', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'DT', 'height': 76.0, 'weight': '300', 'compRating': '0.8804', 'compStars': 3, 'nationalRank': '10', 'positionRank': '1', 'stateRank': '9', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '5', '247positionRank': '1', '247stateRank': '5'}, {'school': 'georgia', 'year': '2013', 'playerName': 'Reggie Davis', 'highSchool': 'Lincoln', 'city': 'Tallahassee', 'state': 'FL', 'position': 'WR', 'height': 72.0, 'weight': '158', 'compRating': '0.8783', 'compStars': 3, 'nationalRank': '394', 'positionRank': '57', 'stateRank': '59', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '75', '247stateRank': '85'}, {'school': 'georgia', 'year': '2013', 'playerName': 'Ryne Rankin', 'highSchool': 'East River', 'city': 'Orlando', 'state': 'FL', 'position': 'ILB', 'height': 73.0, 'weight': '230', 'compRating': '0.8781', 'compStars': 3, 'nationalRank': '396', 'positionRank': '23', 'stateRank': '60', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '16', '247stateRank': '40'}, {'school': 'georgia', 'year': '2013', 'playerName': 'Shaquille Fluker', 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'S', 'height': 73.0, 'weight': '200', 'compRating': '0.8772', 'compStars': 3, 'nationalRank': '34', 'positionRank': '2', 'stateRank': '10', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '28', '247positionRank': '3', '247stateRank': '9'}, {'school': 'georgia', 'year': '2013', 'playerName': 'Uriah LeMay', 'highSchool': 'Butler', 'city': 'Matthews', 'state': 'NC', 'position': 'WR', 'height': 74.0, 'weight': '200', 'compRating': '0.8753', 'compStars': 3, 'nationalRank': '423', 'positionRank': '61', 'stateRank': '13', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '98', '247stateRank': '26'}, {'school': 'georgia', 'year': '2013', 'playerName': 'Jordan Davis', 'highSchool': 'Thomson', 'city': 'Thomson', 'state': 'GA', 'position': 'TE', 'height': 76.0, 'weight': '230', 'compRating': '0.8675', 'compStars': 3, 'nationalRank': '507', 'positionRank': '19', 'stateRank': '46', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '13', '247stateRank': '31'}, {'school': 'georgia', 'year': '2013', 'playerName': 'Josh Cardiello', 'highSchool': 'Buford', 'city': 'Buford', 'state': 'GA', 'position': 'OG', 'height': 75.0, 'weight': '285', 'compRating': '0.8656', 'compStars': 3, 'nationalRank': '537', 'positionRank': '30', 'stateRank': '50', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '25', '247stateRank': '42'}, {'school': 'georgia', 'year': '2013', 'playerName': 'Aulden Bynum', 'highSchool': 'Valwood School', 'city': 'Valdosta', 'state': 'GA', 'position': 'OT', 'height': 77.0, 'weight': '270', 'compRating': '0.8640', 'compStars': 3, 'nationalRank': '558', 'positionRank': '42', 'stateRank': '51', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '41', '247stateRank': '54'}, {'school': 'georgia', 'year': '2013', 'playerName': "De'Andre Johnson", 'highSchool': 'Northgate', 'city': 'Newnan', 'state': 'GA', 'position': 'DT', 'height': 75.0, 'weight': '310', 'compRating': '0.8628', 'compStars': 3, 'nationalRank': '576', 'positionRank': '39', 'stateRank': '53', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '31', '247stateRank': '39'}, {'school': 'georgia', 'year': '2013', 'playerName': 'Shaun McGee', 'highSchool': 'Brookwood', 'city': 'Snellville', 'state': 'GA', 'position': 'OLB', 'height': 75.0, 'weight': '230', 'compRating': '0.8620', 'compStars': 3, 'nationalRank': '591', 'positionRank': '45', 'stateRank': '55', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '30', '247stateRank': '25'}, {'school': 'georgia', 'year': '2013', 'playerName': 'J.J. Green', 'highSchool': 'Camden County', 'city': 'Kingsland', 'state': 'GA', 'position': 'CB', 'height': 69.0, 'weight': '175', 'compRating': '0.8619', 'compStars': 3, 'nationalRank': '593', 'positionRank': '46', 'stateRank': '56', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '31', '247stateRank': '28'}, {'school': 'georgia', 'year': '2013', 'playerName': 'Paris Bostick', 'highSchool': 'Plant', 'city': 'Tampa', 'state': 'FL', 'position': 'S', 'height': 72.5, 'weight': '217', 'compRating': '0.8553', 'compStars': 3, 'nationalRank': '713', 'positionRank': '52', 'stateRank': '104', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '80', '247positionRank': '7', '247stateRank': '19'}, {'school': 'georgia', 'year': '2013', 'playerName': 'Chris Mayes', 'highSchool': 'Mississippi Gulf Coast C.C.', 'city': 'Perkinston', 'state': 'MS', 'position': 'SDE', 'height': 76.0, 'weight': '330', 'compRating': '0.8528', 'compStars': 3, 'nationalRank': '83', 'positionRank': '7', 'stateRank': '18', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '55', '247stateRank': '50'}, {'school': 'georgia', 'year': '2013', 'playerName': 'Quincy Mauger', 'highSchool': 'Kell', 'city': 'Marietta', 'state': 'GA', 'position': 'S', 'height': 72.0, 'weight': '195', 'compRating': '0.8499', 'compStars': 3, 'nationalRank': '819', 'positionRank': '62', 'stateRank': '75', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '98', '247stateRank': '99'}, {'school': 'georgia', 'year': '2013', 'playerName': 'Kennar Daniels-Johnson', 'highSchool': 'Mississippi Gulf Coast C.C.', 'city': 'Perkinston', 'state': 'MS', 'position': 'CB', 'height': 74.0, 'weight': '185', 'compRating': '0.8439', 'compStars': 3, 'nationalRank': '109', 'positionRank': '11', 'stateRank': '24', '247Rating': ' 84 ', '247Stars': 3, '247nationalRank': '130', '247positionRank': '10', '247stateRank': '28'}, {'school': 'georgia', 'year': '2013', 'playerName': 'Brendan Douglas', 'highSchool': 'Aquinas', 'city': 'Augusta', 'state': 'GA', 'position': 'FB', 'height': 70.0, 'weight': '210', 'compRating': '0.7986', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '6', 'stateRank': '158', '247Rating': ' 77 ', '247Stars': 2, '247positionRank': '13', '247stateRank': '177'}, {'school': 'georgia', 'year': '2013', 'playerName': 'Glenn Welch', 'highSchool': 'Wayne County', 'city': 'Jesup', 'state': 'GA', 'position': 'OC', 'height': 75.0, 'weight': '283', 'compRating': '0.7798', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '34', 'stateRank': '186', '247Rating': ' 78 ', '247Stars': 2, '247positionRank': '30', '247stateRank': '174'}, {'school': 'georgia', 'year': '2013', 'playerName': 'DeVondre Seymour', 'highSchool': 'North Gwinnett', 'city': 'Suwanee', 'state': 'GA', 'position': 'OT', 'height': 78.0, 'weight': '300', 'compRating': '0.8762', 'compStars': 3, 'nationalRank': '415', 'positionRank': '33', 'stateRank': '33'}, {'school': 'georgia', 'year': '2013', 'playerName': 'Rico Johnson', 'highSchool': 'Swainsboro', 'city': 'Swainsboro', 'state': 'GA', 'position': 'WR', 'height': 70.0, 'weight': '165', 'compRating': '0.8684', 'compStars': 3, 'nationalRank': '491', 'positionRank': '68', 'stateRank': '44'}, {'school': 'tennessee', 'year': '2003', 'playerName': 'Robert Meachem', 'highSchool': 'Booker T. Washington', 'city': 'Tulsa', 'state': 'OK', 'position': 'WR', 'height': 75.0, 'weight': '200', 'compRating': '0.9890', 'compStars': 5, 'nationalRank': '25', 'positionRank': '4', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2003', 'playerName': 'Daniel Brooks', 'highSchool': 'Jackson Central Merry', 'city': 'Jackson', 'state': 'TN', 'position': 'ILB', 'height': 75.0, 'weight': '230', 'compRating': '0.9825', 'compStars': 4, 'nationalRank': '36', 'positionRank': '4', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2003', 'playerName': 'Jayson Swain', 'highSchool': 'Grissom', 'city': 'Huntsville', 'state': 'AL', 'position': 'WR', 'height': 74.0, 'weight': '200', 'compRating': '0.9763', 'compStars': 4, 'nationalRank': '49', 'positionRank': '7', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2003', 'playerName': 'Turk McBride', 'highSchool': 'Woodrow Wilson', 'city': 'Camden', 'state': 'NJ', 'position': 'WDE', 'height': 76.0, 'weight': '235', 'compRating': '0.9759', 'compStars': 4, 'nationalRank': '52', 'positionRank': '4', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2003', 'playerName': 'Eric Young', 'highSchool': 'Union', 'city': 'Union', 'state': 'SC', 'position': 'OG', 'height': 76.0, 'weight': '260', 'compRating': '0.9478', 'compStars': 4, 'nationalRank': '77', 'positionRank': '4', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2003', 'playerName': 'Arron Sears', 'highSchool': 'Russellville', 'city': 'Russellville', 'state': 'AL', 'position': 'OT', 'height': 76.0, 'weight': '300', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '145', 'positionRank': '12', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2003', 'playerName': 'Bret Smith', 'highSchool': 'Warren', 'city': 'Warren', 'state': 'AR', 'position': 'WR', 'height': 75.0, 'weight': '175', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '178', 'positionRank': '19', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2003', 'playerName': 'John Poe', 'highSchool': 'Coffeyville C.C.', 'city': 'Coffeyville', 'state': 'KS', 'position': 'ILB', 'height': 71.0, 'weight': '240', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '37', 'positionRank': '9', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2003', 'playerName': 'Jared Hostetter', 'highSchool': 'Lawrence County', 'city': 'Louisa', 'state': 'KY', 'position': 'SDE', 'height': 77.0, 'weight': '275', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '394', 'positionRank': '21', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2003', 'playerName': 'Tony McDaniel', 'highSchool': 'Keenan', 'city': 'Columbia', 'state': 'SC', 'position': 'SDE', 'height': 79.0, 'weight': '270', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '397', 'positionRank': '23', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2003', 'playerName': 'Zarnell Fitch', 'highSchool': 'Navarro College', 'city': 'Corsicana', 'state': 'TX', 'position': 'DT', 'height': 75.0, 'weight': '280', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '83', 'positionRank': '11', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2003', 'playerName': 'RoShaun Fellows', 'highSchool': 'Warren', 'city': 'Warren', 'state': 'AR', 'position': 'CB', 'height': 72.0, 'weight': '175', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '524', 'positionRank': '39', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2003', 'playerName': 'Brad Cottam', 'highSchool': 'Evangelical Christian', 'city': 'Cordova', 'state': 'TN', 'position': 'TE', 'height': 80.0, 'weight': '240', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '529', 'positionRank': '37', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2003', 'playerName': 'Jon Hefney', 'highSchool': 'Rock Hill', 'city': 'Rock Hill', 'state': 'SC', 'position': 'CB', 'height': 70.0, 'weight': '172', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '707', 'positionRank': '50', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2003', 'playerName': 'Jarod Parrish', 'highSchool': 'Chattooga', 'city': 'Summerville', 'state': 'GA', 'position': 'S', 'height': 73.0, 'weight': '185', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '762', 'positionRank': '47', 'stateRank': '54', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2003', 'playerName': 'Bill Grimes', 'highSchool': 'Chapel Hill', 'city': 'Douglasville', 'state': 'GA', 'position': 'WR', 'height': 74.0, 'weight': '195', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '142', 'stateRank': '73', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2003', 'playerName': 'Antonio Gaines', 'highSchool': 'Covington', 'city': 'Covington', 'state': 'TN', 'position': 'APB', 'height': 68.0, 'weight': '170', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '22', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2003', 'playerName': 'Britton Colquitt', 'highSchool': 'Bearden', 'city': 'Knoxville', 'state': 'TN', 'position': 'K', 'height': 75.0, 'weight': '199', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2003', 'playerName': 'Corey Campbell', 'highSchool': 'Westfield', 'city': 'Houston', 'state': 'TX', 'position': 'S', 'height': 75.0, 'weight': '195', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2003', 'playerName': 'Steven Jones', 'highSchool': 'Brentwood', 'city': 'Brentwood', 'state': 'TN', 'position': 'OT', 'height': 78.0, 'weight': '290', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2003', 'playerName': 'Bo Hardegree', 'highSchool': 'Jackson Central Merry', 'city': 'Jackson', 'state': 'TN', 'position': 'PRO', 'height': 77.0, 'weight': '195', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2003', 'playerName': 'Brandon S. Johnson', 'highSchool': 'Northeastern Oklahoma A&M', 'city': 'Miami', 'state': 'OK', 'position': 'CB', 'height': 74.0, 'weight': '190', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2007', 'playerName': 'Terrance Toliver', 'highSchool': 'Hempstead', 'city': 'Hempstead', 'state': 'TX', 'position': 'WR', 'height': 76.0, 'weight': '198', 'compRating': '0.9965', 'compStars': 5, 'nationalRank': '8', 'positionRank': '1', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2007', 'playerName': 'DeAngelo Benton', 'highSchool': 'Bastrop', 'city': 'Bastrop', 'state': 'LA', 'position': 'WR', 'height': 74.0, 'weight': '203', 'compRating': '0.9802', 'compStars': 4, 'nationalRank': '40', 'positionRank': '6', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2007', 'playerName': 'Joseph Barksdale', 'highSchool': 'Cass Technical', 'city': 'Detroit', 'state': 'MI', 'position': 'DT', 'height': 78.0, 'weight': '325', 'compRating': '0.9721', 'compStars': 4, 'nationalRank': '61', 'positionRank': '5', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2007', 'playerName': 'Sidell Corley Jr. ', 'highSchool': 'McGill Toolen', 'city': 'Mobile', 'state': 'AL', 'position': 'SDE', 'height': 76.0, 'weight': '250', 'compRating': '0.9666', 'compStars': 4, 'nationalRank': '71', 'positionRank': '7', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2007', 'playerName': 'Chad Jones', 'highSchool': 'Southern University Lab School', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'S', 'height': 75.0, 'weight': '230', 'compRating': '0.9573', 'compStars': 4, 'nationalRank': '84', 'positionRank': '6', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2007', 'playerName': 'Phelon Jones', 'highSchool': 'McGill Toolen', 'city': 'Mobile', 'state': 'AL', 'position': 'CB', 'height': 71.0, 'weight': '194', 'compRating': '0.9527', 'compStars': 4, 'nationalRank': '89', 'positionRank': '10', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2007', 'playerName': 'Stefoin Francois', 'highSchool': 'East St. John', 'city': 'Reserve', 'state': 'LA', 'position': 'S', 'height': 73.0, 'weight': '190', 'compRating': '0.9408', 'compStars': 4, 'nationalRank': '112', 'positionRank': '9', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2007', 'playerName': 'T-Bob Hebert', 'highSchool': 'Greater Atlanta Christian School', 'city': 'Norcross', 'state': 'GA', 'position': 'OC', 'height': 75.0, 'weight': '260', 'compRating': '0.9336', 'compStars': 4, 'nationalRank': '129', 'positionRank': '2', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2007', 'playerName': 'Demetrius Byrd', 'highSchool': 'Pearl River C.C.', 'city': 'Poplarville', 'state': 'MS', 'position': 'WR', 'height': 74.0, 'weight': '195', 'compRating': '0.9333', 'compStars': 4, 'nationalRank': '9', 'positionRank': '3', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2007', 'playerName': 'Ron Brooks', 'highSchool': 'MacArthur', 'city': 'Irving', 'state': 'TX', 'position': 'ATH', 'height': 72.0, 'weight': '170', 'compRating': '0.9270', 'compStars': 4, 'nationalRank': '146', 'positionRank': '6', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2007', 'playerName': 'Jarrett Lee', 'highSchool': 'Brenham', 'city': 'Brenham', 'state': 'TX', 'position': 'PRO', 'height': 75.0, 'weight': '195', 'compRating': '0.9268', 'compStars': 4, 'nationalRank': '148', 'positionRank': '10', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2007', 'playerName': 'John Williams', 'highSchool': 'Breaux Bridge', 'city': 'Breaux Bridge', 'state': 'LA', 'position': 'ATH', 'height': 71.0, 'weight': '175', 'compRating': '0.9081', 'compStars': 4, 'nationalRank': '186', 'positionRank': '10', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2007', 'playerName': 'Drake Nevis', 'highSchool': 'John Ehret', 'city': 'Marrero', 'state': 'LA', 'position': 'DT', 'height': 74.0, 'weight': '290', 'compRating': '0.9065', 'compStars': 4, 'nationalRank': '187', 'positionRank': '21', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2007', 'playerName': 'Jordon Corbin', 'highSchool': 'Lakeland', 'city': 'Lakeland', 'state': 'FL', 'position': 'TE', 'height': 77.0, 'weight': '235', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '191', 'positionRank': '7', 'stateRank': '28', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2007', 'playerName': 'Will Blackwell', 'highSchool': 'West Monroe', 'city': 'West Monroe', 'state': 'LA', 'position': 'DT', 'height': 76.0, 'weight': '296', 'compRating': '0.8906', 'compStars': 4, 'nationalRank': '225', 'positionRank': '24', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2007', 'playerName': 'Stevan Ridley', 'highSchool': 'Trinity Episcopal Day School', 'city': 'Natchez', 'state': 'MS', 'position': 'ATH', 'height': 72.0, 'weight': '211', 'compRating': '0.8875', 'compStars': 3, 'nationalRank': '262', 'positionRank': '19', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2007', 'playerName': 'Ernest McCoy', 'highSchool': 'Glades Central', 'city': 'Belle Glade', 'state': 'FL', 'position': 'OG', 'height': 77.0, 'weight': '330', 'compRating': '0.8844', 'compStars': 3, 'nationalRank': '289', 'positionRank': '16', 'stateRank': '43', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2007', 'playerName': 'Jarvis Jones', 'highSchool': 'Lamar Consolidated', 'city': 'Rosenberg', 'state': 'TX', 'position': 'OT', 'height': 79.0, 'weight': '250', 'compRating': '0.8767', 'compStars': 3, 'nationalRank': '337', 'positionRank': '27', 'stateRank': '43', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2007', 'playerName': 'Mitch Joseph', 'highSchool': 'Catholic', 'city': 'New Iberia', 'state': 'LA', 'position': 'TE', 'height': 77.0, 'weight': '243', 'compRating': '0.8764', 'compStars': 3, 'nationalRank': '349', 'positionRank': '17', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2007', 'playerName': 'Kentravis Aubrey', 'highSchool': 'Bastrop', 'city': 'Bastrop', 'state': 'LA', 'position': 'SDE', 'height': 75.0, 'weight': '285', 'compRating': '0.8750', 'compStars': 3, 'nationalRank': '362', 'positionRank': '28', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2007', 'playerName': 'Josh Dworaczyk', 'highSchool': 'Catholic', 'city': 'New Iberia', 'state': 'LA', 'position': 'OT', 'height': 78.0, 'weight': '265', 'compRating': '0.8719', 'compStars': 3, 'nationalRank': '391', 'positionRank': '32', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2007', 'playerName': 'Josh Jasper', 'highSchool': 'Ridgeway', 'city': 'Memphis', 'state': 'TN', 'position': 'K', 'height': 72.0, 'weight': '165', 'compRating': '0.8542', 'compStars': 3, 'nationalRank': '583', 'positionRank': '3', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2007', 'playerName': 'Alex Russian', 'highSchool': 'Round Rock', 'city': 'Round Rock', 'state': 'TX', 'position': 'TE', 'height': 76.0, 'weight': '231', 'compRating': '0.8542', 'compStars': 3, 'nationalRank': '584', 'positionRank': '28', 'stateRank': '70', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2007', 'playerName': 'Andrew Crutchfield', 'highSchool': 'Northwest Cabarrus', 'city': 'Concord', 'state': 'NC', 'position': 'K', 'height': 72.0, 'weight': '175', 'compRating': '0.8479', 'compStars': 3, 'nationalRank': '660', 'positionRank': '6', 'stateRank': '30', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2007', 'playerName': 'Drew Alleman', 'highSchool': 'Acadiana', 'city': 'Lafayette', 'state': 'LA', 'position': 'K', 'height': 72.0, 'weight': '170', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2007', 'playerName': 'Delvin Breaux', 'highSchool': 'McDonogh 35', 'city': 'New Orleans', 'state': 'LA', 'position': 'CB', 'height': 72.0, 'weight': '175', 'compRating': '0.8479', 'compStars': 3, 'nationalRank': '665', 'positionRank': '42', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2017', 'playerName': 'Jamyest Williams', 'highSchool': 'Grayson', 'city': 'Loganville', 'state': 'GA', 'position': 'CB', 'height': 69.0, 'weight': '174', 'compRating': '0.9638', 'compStars': 4, 'nationalRank': '76', 'positionRank': '8', 'stateRank': '9', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '87', '247positionRank': '12', '247stateRank': '9'}, {'school': 'south-carolina', 'year': '2017', 'playerName': 'OrTre Smith', 'highSchool': 'Wando', 'city': 'Mount Pleasant', 'state': 'SC', 'position': 'WR', 'height': 75.0, 'weight': '215', 'compRating': '0.9413', 'compStars': 4, 'nationalRank': '127', 'positionRank': '19', 'stateRank': '1', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '105', '247positionRank': '18', '247stateRank': '1'}, {'school': 'south-carolina', 'year': '2017', 'playerName': 'Shi Smith', 'highSchool': 'Union', 'city': 'Union', 'state': 'SC', 'position': 'ATH', 'height': 70.0, 'weight': '181', 'compRating': '0.9131', 'compStars': 4, 'nationalRank': '226', 'positionRank': '10', 'stateRank': '2', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '159', '247positionRank': '4', '247stateRank': '2'}, {'school': 'south-carolina', 'year': '2017', 'playerName': 'Javon Kinlaw', 'highSchool': 'Jones College', 'city': 'Ellisville', 'state': 'MS', 'position': 'SDE', 'height': 78.0, 'weight': '340', 'compRating': '0.8979', 'compStars': 4, 'nationalRank': '10', 'positionRank': '2', 'stateRank': '3', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '37', '247stateRank': '9'}, {'school': 'south-carolina', 'year': '2017', 'playerName': 'MJ Webb', 'highSchool': 'Morgan County', 'city': 'Madison', 'state': 'GA', 'position': 'SDE', 'height': 74.5, 'weight': '271', 'compRating': '0.8950', 'compStars': 4, 'nationalRank': '300', 'positionRank': '14', 'stateRank': '29', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '15', '247stateRank': '29'}, {'school': 'south-carolina', 'year': '2017', 'playerName': 'Brad Johnson', 'highSchool': 'Pendleton', 'city': 'Pendleton', 'state': 'SC', 'position': 'WDE', 'height': 74.0, 'weight': '230', 'compRating': '0.8929', 'compStars': 4, 'nationalRank': '314', 'positionRank': '21', 'stateRank': '3', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '219', '247positionRank': '16', '247stateRank': '3'}, {'school': 'south-carolina', 'year': '2017', 'playerName': 'Keisean Nixon', 'highSchool': 'Arizona Western College', 'city': 'Yuma', 'state': 'AZ', 'position': 'CB', 'height': 70.0, 'weight': '192', 'compRating': '0.8870', 'compStars': 3, 'nationalRank': '18', 'positionRank': '3', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2017', 'playerName': 'Chad Terrell', 'highSchool': 'North Paulding', 'city': 'Dallas', 'state': 'GA', 'position': 'WR', 'height': 74.0, 'weight': '208', 'compRating': '0.8818', 'compStars': 3, 'nationalRank': '394', 'positionRank': '57', 'stateRank': '41', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '42', '247stateRank': '31'}, {'school': 'south-carolina', 'year': '2017', 'playerName': 'Will Register', 'highSchool': 'Chapin', 'city': 'Chapin', 'state': 'SC', 'position': 'TE', 'height': 76.0, 'weight': '236', 'compRating': '0.8806', 'compStars': 3, 'nationalRank': '406', 'positionRank': '16', 'stateRank': '5', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '25', '247stateRank': '7'}, {'school': 'south-carolina', 'year': '2017', 'playerName': 'Aaron Sterling', 'highSchool': 'Tucker', 'city': 'Tucker', 'state': 'GA', 'position': 'SDE', 'height': 74.0, 'weight': '238', 'compRating': '0.8783', 'compStars': 3, 'nationalRank': '426', 'positionRank': '17', 'stateRank': '46', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '45', '247stateRank': '93'}, {'school': 'south-carolina', 'year': '2017', 'playerName': 'Davonne Bowen', 'highSchool': 'Woodmont', 'city': 'Piedmont', 'state': 'SC', 'position': 'OLB', 'height': 73.0, 'weight': '224', 'compRating': '0.8725', 'compStars': 3, 'nationalRank': '453', 'positionRank': '24', 'stateRank': '6', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '16', '247stateRank': '4'}, {'school': 'south-carolina', 'year': '2017', 'playerName': 'Eric Douglas', 'highSchool': 'Mallard Creek', 'city': 'Charlotte', 'state': 'NC', 'position': 'OT', 'height': 77.0, 'weight': '297', 'compRating': '0.8684', 'compStars': 3, 'nationalRank': '505', 'positionRank': '54', 'stateRank': '16', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '35', '247stateRank': '10'}, {'school': 'south-carolina', 'year': '2017', 'playerName': 'Sherrod Greene', 'highSchool': 'Rocky Mount', 'city': 'Rocky Mount', 'state': 'NC', 'position': 'OLB', 'height': 73.0, 'weight': '221', 'compRating': '0.8675', 'compStars': 3, 'nationalRank': '519', 'positionRank': '30', 'stateRank': '18', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '21', '247stateRank': '15'}, {'school': 'south-carolina', 'year': '2017', 'playerName': 'Dennis Daley', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'OT', 'height': 78.0, 'weight': '309', 'compRating': '0.8632', 'compStars': 3, 'nationalRank': '49', 'positionRank': '8', 'stateRank': '1', '247Rating': ' 77 ', '247Stars': 2, '247positionRank': '236', '247stateRank': '39'}, {'school': 'south-carolina', 'year': '2017', 'playerName': 'Summie Carlay', 'highSchool': 'Laurens Dist 55', 'city': 'Laurens', 'state': 'SC', 'position': 'OT', 'height': 77.0, 'weight': '265', 'compRating': '0.8615', 'compStars': 3, 'nationalRank': '599', 'positionRank': '60', 'stateRank': '8', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '67', '247stateRank': '10'}, {'school': 'south-carolina', 'year': '2017', 'playerName': 'Jay Urich', 'highSchool': 'Wren', 'city': 'Piedmont', 'state': 'SC', 'position': 'DUAL', 'height': 76.0, 'weight': '196', 'compRating': '0.8564', 'compStars': 3, 'nationalRank': '696', 'positionRank': '15', 'stateRank': '9', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '19', '247stateRank': '17'}, {'school': 'south-carolina', 'year': '2017', 'playerName': 'Kaleb Chalmers', 'highSchool': 'Northwest Mississippi C.C.', 'city': 'Senatobia', 'state': 'MS', 'position': 'CB', 'height': 71.0, 'weight': '171', 'compRating': '0.8551', 'compStars': 3, 'nationalRank': '64', 'positionRank': '8', 'stateRank': '24'}, {'school': 'south-carolina', 'year': '2017', 'playerName': 'Jaylin Dickerson', 'highSchool': 'Pinecrest', 'city': 'Southern Pines', 'state': 'NC', 'position': 'S', 'height': 72.0, 'weight': '174', 'compRating': '0.8524', 'compStars': 3, 'nationalRank': '776', 'positionRank': '58', 'stateRank': '26', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '93', '247stateRank': '37'}, {'school': 'south-carolina', 'year': '2017', 'playerName': 'Austin Connor', 'highSchool': 'Dutch Fork', 'city': 'Irmo', 'state': 'SC', 'position': 'WR', 'height': 72.0, 'weight': '180', 'compRating': '0.8504', 'compStars': 3, 'nationalRank': '831', 'positionRank': '120', 'stateRank': '12', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '112', '247stateRank': '12'}, {'school': 'south-carolina', 'year': '2017', 'playerName': 'Jordon Carty', 'highSchool': 'South Broward', 'city': 'Hollywood', 'state': 'FL', 'position': 'OT', 'height': 79.0, 'weight': '299', 'compRating': '0.8503', 'compStars': 3, 'nationalRank': '835', 'positionRank': '79', 'stateRank': '114', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '115', '247stateRank': '187'}, {'school': 'south-carolina', 'year': '2017', 'playerName': 'Tavyn Jackson', 'highSchool': 'James Rickards', 'city': 'Tallahassee', 'state': 'FL', 'position': 'CB', 'height': 71.0, 'weight': '177', 'compRating': '0.8481', 'compStars': 3, 'nationalRank': '893', 'positionRank': '95', 'stateRank': '127', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '87', '247stateRank': '112'}, {'school': 'south-carolina', 'year': '2017', 'playerName': 'Damani Staley', 'highSchool': 'Ridge View', 'city': 'Columbia', 'state': 'SC', 'position': 'OLB', 'height': 73.0, 'weight': '205', 'compRating': '0.8391', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '73', 'stateRank': '17', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '81', '247stateRank': '20'}, {'school': 'south-carolina', 'year': '2017', 'playerName': 'Jordan Rhodes', 'highSchool': 'Creekside', 'city': 'Fairburn', 'state': 'GA', 'position': 'OT', 'height': 77.0, 'weight': '318', 'compRating': '0.8382', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '107', 'stateRank': '118', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '114', '247stateRank': '133'}, {'school': 'south-carolina', 'year': '2017', 'playerName': 'Eldridge Thompson', 'highSchool': 'Coffeyville C.C.', 'city': 'Coffeyville', 'state': 'KS', 'position': 'OLB', 'height': 73.0, 'weight': '191', 'compRating': '0.8272', 'compStars': 3, 'nationalRank': '141', 'positionRank': '7', 'stateRank': '17', '247Rating': ' 84 ', '247Stars': 3, '247nationalRank': '96', '247positionRank': '3', '247stateRank': '13'}, {'school': 'south-carolina', 'year': '2017', 'playerName': 'Zay Brown', 'highSchool': 'Clarke Central', 'city': 'Athens', 'state': 'GA', 'position': 'S', 'height': 70.0, 'weight': '197', 'compRating': '0.8260', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '109', 'stateRank': '157', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '138', '247stateRank': '181'}, {'school': 'auburn', 'year': '2004', 'playerName': 'Tony Bell', 'highSchool': 'Thompson', 'city': 'Alabaster', 'state': 'AL', 'position': 'S', 'height': 74.0, 'weight': '210', 'compRating': '0.9222', 'compStars': 4, 'nationalRank': '132', 'positionRank': '5', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2004', 'playerName': 'Pat Sims', 'highSchool': 'Dillard', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'DT', 'height': 75.0, 'weight': '295', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '150', 'positionRank': '17', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2004', 'playerName': 'Tristan Davis', 'highSchool': 'Tri-cities', 'city': 'Atlanta', 'state': 'GA', 'position': 'ATH', 'height': 71.0, 'weight': '188', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '319', 'positionRank': '26', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2004', 'playerName': 'Jerald Watson', 'highSchool': 'Central Catholic', 'city': 'Morgan City', 'state': 'LA', 'position': 'APB', 'height': 71.0, 'weight': '205', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '383', 'positionRank': '9', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2004', 'playerName': 'Steve Gandy', 'highSchool': 'Wayne County', 'city': 'Waynesboro', 'state': 'MS', 'position': 'OLB', 'height': 72.0, 'weight': '190', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '435', 'positionRank': '25', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2004', 'playerName': 'Lemarcus Rowell', 'highSchool': 'Itawamba C.C.', 'city': 'Fulton', 'state': 'MS', 'position': 'ILB', 'height': 75.0, 'weight': '224', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '41', 'positionRank': '7', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2004', 'playerName': 'Neil Brown', 'highSchool': 'Buford', 'city': 'Buford', 'state': 'GA', 'position': 'DT', 'height': 74.0, 'weight': '255', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '457', 'positionRank': '40', 'stateRank': '27', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2004', 'playerName': 'Brad Lester', 'highSchool': 'Parkview', 'city': 'Lilburn', 'state': 'GA', 'position': 'RB', 'height': 71.0, 'weight': '188', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '464', 'positionRank': '31', 'stateRank': '28', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2004', 'playerName': 'Octavious Balkcom', 'highSchool': 'Early County', 'city': 'Blakely', 'state': 'GA', 'position': 'ILB', 'height': 76.0, 'weight': '225', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '591', 'positionRank': '31', 'stateRank': '34', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2004', 'playerName': 'Calvin Booker', 'highSchool': 'Mays', 'city': 'Atlanta', 'state': 'GA', 'position': 'PRO', 'height': 76.0, 'weight': '205', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '603', 'positionRank': '26', 'stateRank': '35', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2004', 'playerName': 'Courtney Harden', 'highSchool': 'Colbert Co Sch', 'city': 'Leighton', 'state': 'AL', 'position': 'OLB', 'height': 73.0, 'weight': '212', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '655', 'positionRank': '36', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2004', 'playerName': 'Blake Field', 'highSchool': 'North Florida Christian', 'city': 'Tallahassee', 'state': 'FL', 'position': 'PRO', 'height': 75.0, 'weight': '195', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '702', 'positionRank': '31', 'stateRank': '79', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2004', 'playerName': 'David Irons', 'highSchool': 'Butler C.C.', 'city': 'El Dorado', 'state': 'KS', 'position': 'CB', 'height': 73.0, 'weight': '185', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '94', 'positionRank': '12', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2004', 'playerName': 'Chris Browder', 'highSchool': 'Southwest Mississippi C.C.', 'city': 'Summit', 'state': 'MS', 'position': 'WDE', 'height': 76.0, 'weight': '240', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '98', 'positionRank': '2', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2004', 'playerName': 'James Swinton', 'highSchool': 'Tucker', 'city': 'Tucker', 'state': 'GA', 'position': 'WR', 'height': 73.0, 'weight': '165', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': '844', 'positionRank': '96', 'stateRank': '49', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2004', 'playerName': 'Anthony Campbell', 'highSchool': 'Hialeah', 'city': 'Hialeah', 'state': 'FL', 'position': 'ATH', 'height': 69.0, 'weight': '178', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': '865', 'positionRank': '65', 'stateRank': '93', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2004', 'playerName': 'Jason Bosley', 'highSchool': 'Grissom', 'city': 'Huntsville', 'state': 'AL', 'position': 'OG', 'height': 76.0, 'weight': '280', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': '994', 'positionRank': '84', 'stateRank': '28', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2004', 'playerName': 'John Watts', 'highSchool': 'Russellville', 'city': 'Russellville', 'state': 'AL', 'position': 'OT', 'height': 78.0, 'weight': '250', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '72', 'stateRank': '31', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2004', 'playerName': 'Antwoin Daniels', 'highSchool': 'Mary Persons', 'city': 'Forsyth', 'state': 'GA', 'position': 'OG', 'height': 78.0, 'weight': '265', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '87', 'stateRank': '59', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2004', 'playerName': 'Merrill Johnson', 'highSchool': 'Choctaw County', 'city': 'Butler', 'state': 'AL', 'position': 'OLB', 'height': 73.0, 'weight': '195', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '70', 'stateRank': '35', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2004', 'playerName': 'Lorenzo Ferguson', 'highSchool': 'Miami Southridge', 'city': 'Miami', 'state': 'FL', 'position': 'CB', 'height': 75.0, 'weight': '190', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '113', 'stateRank': '143', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2004', 'playerName': 'Tyronne Green', 'highSchool': 'Woodham', 'city': 'Pensacola', 'state': 'FL', 'position': 'DT', 'height': 75.0, 'weight': '275', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '104', 'stateRank': '147', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2004', 'playerName': 'Korey Raymond', 'highSchool': 'East St. John', 'city': 'Reserve', 'state': 'LA', 'position': 'SDE', 'height': 76.0, 'weight': '270', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '83', 'stateRank': '61', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2004', 'playerName': 'William Sullivan', 'highSchool': 'Western Harnett', 'city': 'Lillington', 'state': 'NC', 'position': 'OG', 'height': 76.0, 'weight': '290', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '138', 'stateRank': '31', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2004', 'playerName': 'Chris Evans', 'highSchool': 'Blount', 'city': 'Eight Mile', 'state': 'AL', 'position': 'OLB', 'height': 72.0, 'weight': '217', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '99', 'stateRank': '44', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2004', 'playerName': 'Charles Mullen', 'highSchool': 'Madison', 'city': 'San Diego', 'state': 'CA', 'position': 'TE', 'height': 74.0, 'weight': '240', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '79', 'stateRank': '213', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2004', 'playerName': 'Michael McLaughlin', 'highSchool': 'Wayne County', 'city': 'Waynesboro', 'state': 'MS', 'position': 'RB', 'height': 74.0, 'weight': '215', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '106', 'stateRank': '33', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2004', 'playerName': 'Leon Hart', 'highSchool': 'Spring Valley', 'city': 'Columbia', 'state': 'SC', 'position': 'OG', 'height': 76.0, 'weight': '290', 'compRating': '0.9765', 'compStars': 4, 'nationalRank': '55', 'positionRank': '2', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2005', 'playerName': 'Kade Weston', 'highSchool': 'Red Bank Catholic', 'city': 'Red Bank', 'state': 'NJ', 'position': 'DT', 'height': 77.0, 'weight': '315', 'compRating': '0.9878', 'compStars': 5, 'nationalRank': '27', 'positionRank': '4', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2005', 'playerName': 'C.J. Byrd', 'highSchool': 'North Augusta', 'city': 'North Augusta', 'state': 'SC', 'position': 'S', 'height': 75.0, 'weight': '185', 'compRating': '0.9775', 'compStars': 4, 'nationalRank': '53', 'positionRank': '2', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2005', 'playerName': 'Mohamed Massaquoi', 'highSchool': 'Independence', 'city': 'Charlotte', 'state': 'NC', 'position': 'WR', 'height': 74.0, 'weight': '190', 'compRating': '0.9747', 'compStars': 4, 'nationalRank': '66', 'positionRank': '9', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2005', 'playerName': 'Bryan Evans', 'highSchool': 'Ed White', 'city': 'Jacksonville', 'state': 'FL', 'position': 'CB', 'height': 72.0, 'weight': '175', 'compRating': '0.9711', 'compStars': 4, 'nationalRank': '74', 'positionRank': '10', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2005', 'playerName': 'Jeff Owens', 'highSchool': 'Plantation', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'DT', 'height': 74.0, 'weight': '263', 'compRating': '0.9222', 'compStars': 4, 'nationalRank': '127', 'positionRank': '12', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2005', 'playerName': 'Roderick Battle', 'highSchool': 'Douglass', 'city': 'Atlanta', 'state': 'GA', 'position': 'WDE', 'height': 75.0, 'weight': '236', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '165', 'positionRank': '7', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2005', 'playerName': 'Marcus Washington', 'highSchool': 'Burke County', 'city': 'Waynesboro', 'state': 'GA', 'position': 'OLB', 'height': 74.0, 'weight': '210', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '186', 'positionRank': '23', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2005', 'playerName': 'Brandon Sesay', 'highSchool': 'Douglass', 'city': 'Atlanta', 'state': 'GA', 'position': 'DT', 'height': 77.0, 'weight': '250', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '210', 'positionRank': '16', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2005', 'playerName': 'Mike Moore', 'highSchool': 'Coconut Creek', 'city': 'Pompano Beach', 'state': 'FL', 'position': 'WR', 'height': 75.0, 'weight': '187', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '215', 'positionRank': '24', 'stateRank': '30', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2005', 'playerName': 'Corey Moon', 'highSchool': 'Decatur', 'city': 'Decatur', 'state': 'GA', 'position': 'SDE', 'height': 76.0, 'weight': '235', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '230', 'positionRank': '18', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2005', 'playerName': 'Ian Smith', 'highSchool': 'Cartersville', 'city': 'Cartersville', 'state': 'GA', 'position': 'OG', 'height': 75.0, 'weight': '277', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '268', 'positionRank': '17', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2005', 'playerName': 'Joe (player) Cox', 'highSchool': 'Independence', 'city': 'Charlotte', 'state': 'NC', 'position': 'PRO', 'height': 73.0, 'weight': '192', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '296', 'positionRank': '8', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2005', 'playerName': 'Donovan Baldwin', 'highSchool': 'American Heritage', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'CB', 'height': 73.0, 'weight': '175', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '348', 'positionRank': '32', 'stateRank': '49', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2005', 'playerName': 'Tavares Kearney', 'highSchool': 'Tucker', 'city': 'Tucker', 'state': 'GA', 'position': 'OLB', 'height': 73.0, 'weight': '210', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '401', 'positionRank': '37', 'stateRank': '27', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2005', 'playerName': 'Antavious Coates', 'highSchool': 'Greenwood', 'city': 'Greenwood', 'state': 'SC', 'position': 'S', 'height': 76.0, 'weight': '185', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '466', 'positionRank': '26', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2005', 'playerName': 'Tripp Chandler', 'highSchool': 'Woodstock', 'city': 'Woodstock', 'state': 'GA', 'position': 'TE', 'height': 77.0, 'weight': '227', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '572', 'positionRank': '33', 'stateRank': '32', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2005', 'playerName': 'Darius Dewberry', 'highSchool': 'Peach County', 'city': 'Fort Valley', 'state': 'GA', 'position': 'ILB', 'height': 75.0, 'weight': '215', 'compRating': '0.9424', 'compStars': 4, 'nationalRank': '102', 'positionRank': '7', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2020', 'playerName': 'Myles Slusher', 'highSchool': 'Broken Arrow', 'city': 'Broken Arrow', 'state': 'OK', 'position': 'S', 'height': 72.0, 'weight': '181', 'compRating': '0.9281', 'compStars': 4, 'nationalRank': '173', 'positionRank': '12', 'stateRank': '2', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '121', '247positionRank': '8', '247stateRank': '2'}, {'school': 'arkansas', 'year': '2020', 'playerName': 'Malik Hornsby', 'highSchool': 'Fort Bend Marshall', 'city': 'Missouri City', 'state': 'TX', 'position': 'DUAL', 'height': 74.0, 'weight': '175', 'compRating': '0.9208', 'compStars': 4, 'nationalRank': '201', 'positionRank': '8', 'stateRank': '30', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '99', '247positionRank': '5', '247stateRank': '14'}, {'school': 'arkansas', 'year': '2020', 'playerName': 'Darin Turner', 'highSchool': 'Memphis Central', 'city': 'Memphis', 'state': 'TN', 'position': 'WR', 'height': 74.5, 'weight': '206', 'compRating': '0.9188', 'compStars': 4, 'nationalRank': '213', 'positionRank': '38', 'stateRank': '6', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '207', '247positionRank': '37', '247stateRank': '5'}, {'school': 'arkansas', 'year': '2020', 'playerName': 'Marcus Henderson', 'highSchool': 'Memphis University School', 'city': 'Memphis', 'state': 'TN', 'position': 'OG', 'height': 77.0, 'weight': '300', 'compRating': '0.8947', 'compStars': 4, 'nationalRank': '337', 'positionRank': '15', 'stateRank': '11', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '23', '247stateRank': '12'}, {'school': 'arkansas', 'year': '2020', 'playerName': 'Blayne Toll', 'highSchool': 'Hazen', 'city': 'Hazen', 'state': 'AR', 'position': 'SDE', 'height': 77.0, 'weight': '244', 'compRating': '0.8827', 'compStars': 3, 'nationalRank': '446', 'positionRank': '16', 'stateRank': '3', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '22', '247stateRank': '5'}, {'school': 'arkansas', 'year': '2020', 'playerName': 'Jashaud Stewart', 'highSchool': 'Jonesboro', 'city': 'Jonesboro', 'state': 'AR', 'position': 'OLB', 'height': 74.0, 'weight': '223', 'compRating': '0.8802', 'compStars': 3, 'nationalRank': '476', 'positionRank': '30', 'stateRank': '4', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '20', '247stateRank': '2'}, {'school': 'arkansas', 'year': '2020', 'playerName': 'Andy Boykin', 'highSchool': 'Troup County', 'city': 'Lagrange', 'state': 'GA', 'position': 'SDE', 'height': 75.0, 'weight': '301', 'compRating': '0.8763', 'compStars': 3, 'nationalRank': '525', 'positionRank': '24', 'stateRank': '57', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '37', '247stateRank': '70'}, {'school': 'arkansas', 'year': '2020', 'playerName': 'Jalen St. John', 'highSchool': 'Trinity Catholic', 'city': 'Saint Louis', 'state': 'MO', 'position': 'OG', 'height': 77.0, 'weight': '310', 'compRating': '0.8741', 'compStars': 3, 'nationalRank': '565', 'positionRank': '31', 'stateRank': '11', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '52', '247stateRank': '17'}, {'school': 'arkansas', 'year': '2020', 'playerName': 'Nick Turner', 'highSchool': 'Brother Martin', 'city': 'New Orleans', 'state': 'LA', 'position': 'S', 'height': 71.0, 'weight': '177', 'compRating': '0.8680', 'compStars': 3, 'nationalRank': '657', 'positionRank': '50', 'stateRank': '26', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '52', '247stateRank': '29'}, {'school': 'arkansas', 'year': '2020', 'playerName': 'Kelin Burrle', 'highSchool': 'Helen Cox', 'city': 'Harvey', 'state': 'LA', 'position': 'OLB', 'height': 72.0, 'weight': '205', 'compRating': '0.8633', 'compStars': 3, 'nationalRank': '764', 'positionRank': '47', 'stateRank': '33', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '71', '247stateRank': '54'}, {'school': 'arkansas', 'year': '2020', 'playerName': 'Ray Curry Jr.', 'highSchool': 'White Station', 'city': 'Memphis', 'state': 'TN', 'position': 'OT', 'height': 78.0, 'weight': '315', 'compRating': '0.8548', 'compStars': 3, 'nationalRank': '971', 'positionRank': '81', 'stateRank': '28', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '92', '247stateRank': '33'}, {'school': 'arkansas', 'year': '2020', 'playerName': 'Julius Coates', 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'SDE', 'height': 78.0, 'weight': '270', 'compRating': '0.8528', 'compStars': 3, 'nationalRank': '85', 'positionRank': '12', 'stateRank': '19', '247Rating': ' 85 ', '247Stars': 3, '247nationalRank': '77', '247positionRank': '12', '247stateRank': '14'}, {'school': 'arkansas', 'year': '2020', 'playerName': 'Eric Thomas', 'highSchool': 'Booker T. Washington', 'city': 'Pensacola', 'state': 'FL', 'position': 'WDE', 'height': 75.0, 'weight': '230', 'compRating': '0.8498', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '58', 'stateRank': '144', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '50', '247stateRank': '113'}, {'school': 'arkansas', 'year': '2020', 'playerName': 'Jaqualin McGhee', 'highSchool': 'Peach County', 'city': 'Fort Valley', 'state': 'GA', 'position': 'SDE', 'height': 76.0, 'weight': '255', 'compRating': '0.8484', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '59', 'stateRank': '124'}, {'school': 'arkansas', 'year': '2020', 'playerName': 'Jacorrei Turner', 'highSchool': 'Woodward Academy', 'city': 'Atlanta', 'state': 'GA', 'position': 'OLB', 'height': 74.0, 'weight': '205', 'compRating': '0.8464', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '83', 'stateRank': '129', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '82', '247stateRank': '108'}, {'school': 'arkansas', 'year': '2020', 'playerName': 'Dominique Johnson', 'highSchool': 'Crowley', 'city': 'Crowley', 'state': 'TX', 'position': 'RB', 'height': 73.0, 'weight': '230', 'compRating': '0.8343', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '96', 'stateRank': '223', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '120', '247stateRank': '252'}, {'school': 'arkansas', 'year': '2020', 'playerName': 'JT Towers', 'highSchool': 'Joe T. Robinson', 'city': 'Little Rock', 'state': 'AR', 'position': 'ILB', 'height': 76.0, 'weight': '210', 'compRating': '0.8315', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '72', 'stateRank': '13', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '60', '247stateRank': '9'}, {'school': 'arkansas', 'year': '2020', 'playerName': 'Collin Sutherland', 'highSchool': 'Marcus', 'city': 'Flower Mound', 'state': 'TX', 'position': 'TE', 'height': 76.5, 'weight': '224', 'compRating': '0.8248', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '95', 'stateRank': '277', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '99', '247stateRank': '273'}, {'school': 'arkansas', 'year': '2020', 'playerName': 'Khari Johnson', 'highSchool': 'Suffield Academy', 'city': 'Suffield', 'state': 'CT', 'position': 'CB', 'height': 72.0, 'weight': '184', 'compRating': '0.8167', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '207', 'stateRank': '16', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '138', '247stateRank': '14'}, {'school': 'arkansas', 'year': '2020', 'playerName': 'Catrell Wallace', 'highSchool': 'Bryant', 'city': 'Bryant', 'state': 'AR', 'position': 'OLB', 'height': 78.0, 'weight': '210', 'compRating': '0.8681', 'compStars': 3, 'nationalRank': '654', 'positionRank': '43', 'stateRank': '6'}, {'school': 'florida', 'year': '2016', 'playerName': 'Antonneous Clayton', 'highSchool': 'Dooly County', 'city': 'Vienna', 'state': 'GA', 'position': 'WDE', 'height': 75.0, 'weight': '218', 'compRating': '0.9823', 'compStars': 4, 'nationalRank': '27', 'positionRank': '2', 'stateRank': '4', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '50', '247positionRank': '6', '247stateRank': '7'}, {'school': 'florida', 'year': '2016', 'playerName': 'Tyrie Cleveland', 'highSchool': 'Westfield', 'city': 'Houston', 'state': 'TX', 'position': 'WR', 'height': 74.5, 'weight': '189', 'compRating': '0.9810', 'compStars': 4, 'nationalRank': '34', 'positionRank': '3', 'stateRank': '3', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '45', '247positionRank': '4', '247stateRank': '4'}, {'school': 'florida', 'year': '2016', 'playerName': 'Chauncey Gardner-Johnson', 'highSchool': 'Cocoa', 'city': 'Cocoa', 'state': 'FL', 'position': 'CB', 'height': 72.0, 'weight': '194', 'compRating': '0.9774', 'compStars': 4, 'nationalRank': '42', 'positionRank': '4', 'stateRank': '4', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '65', '247positionRank': '5', '247stateRank': '7'}, {'school': 'florida', 'year': '2016', 'playerName': 'Feleipe Franks', 'highSchool': 'Wakulla', 'city': 'Crawfordville', 'state': 'FL', 'position': 'PRO', 'height': 77.5, 'weight': '210', 'compRating': '0.9732', 'compStars': 4, 'nationalRank': '54', 'positionRank': '5', 'stateRank': '9', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '77', '247positionRank': '6', '247stateRank': '9'}, {'school': 'florida', 'year': '2016', 'playerName': 'Freddie Swain', 'highSchool': 'North Marion', 'city': 'Citra', 'state': 'FL', 'position': 'WR', 'height': 73.0, 'weight': '188', 'compRating': '0.9423', 'compStars': 4, 'nationalRank': '127', 'positionRank': '22', 'stateRank': '21', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '162', '247positionRank': '30', '247stateRank': '24'}, {'school': 'florida', 'year': '2016', 'playerName': 'Mark Thompson', 'highSchool': 'Dodge City C.C.', 'city': 'Dodge City', 'state': 'KS', 'position': 'RB', 'height': 74.0, 'weight': '230', 'compRating': '0.9315', 'compStars': 4, 'nationalRank': '5', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '7', '247positionRank': '1', '247stateRank': '1'}, {'school': 'florida', 'year': '2016', 'playerName': 'Joshua Hammond', 'highSchool': 'Hallandale', 'city': 'Hallandale', 'state': 'FL', 'position': 'WR', 'height': 72.5, 'weight': '180', 'compRating': '0.9294', 'compStars': 4, 'nationalRank': '165', 'positionRank': '31', 'stateRank': '27', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '235', '247positionRank': '41', '247stateRank': '31'}, {'school': 'florida', 'year': '2016', 'playerName': 'Jeremiah Moon', 'highSchool': 'Hoover', 'city': 'Hoover', 'state': 'AL', 'position': 'OLB', 'height': 76.0, 'weight': '205', 'compRating': '0.8963', 'compStars': 4, 'nationalRank': '307', 'positionRank': '20', 'stateRank': '8', '247Rating': ' 92 ', '247Stars': 4, '247positionRank': '19', '247stateRank': '7'}, {'school': 'florida', 'year': '2016', 'playerName': 'Jordan Smith', 'highSchool': 'Lithonia', 'city': 'Lithonia', 'state': 'GA', 'position': 'WDE', 'height': 77.5, 'weight': '220', 'compRating': '0.8938', 'compStars': 4, 'nationalRank': '319', 'positionRank': '25', 'stateRank': '26', '247Rating': ' 85 ', '247Stars': 3, '247nationalRank': '100', '247positionRank': '10', '247stateRank': '21'}, {'school': 'florida', 'year': '2016', 'playerName': 'Jeawon Taylor', 'highSchool': 'Park Crossing', 'city': 'Montgomery', 'state': 'AL', 'position': 'S', 'height': 74.0, 'weight': '192', 'compRating': '0.8868', 'compStars': 3, 'nationalRank': '353', 'positionRank': '17', 'stateRank': '10', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '17', '247stateRank': '9'}, {'school': 'florida', 'year': '2016', 'playerName': 'Dre Massey', 'highSchool': 'Holmes C.C.', 'city': 'Goodman', 'state': 'MS', 'position': 'WR', 'height': 72.0, 'weight': '185', 'compRating': '0.8835', 'compStars': 3, 'nationalRank': '27', 'positionRank': '5', 'stateRank': '5', '247Rating': ' 84 ', '247Stars': 3, '247nationalRank': '124', '247positionRank': '21', '247stateRank': '21'}, {'school': 'florida', 'year': '2016', 'playerName': 'David Reese', 'highSchool': 'Farmington', 'city': 'Farmington', 'state': 'MI', 'position': 'ILB', 'height': 73.0, 'weight': '235', 'compRating': '0.8791', 'compStars': 3, 'nationalRank': '414', 'positionRank': '15', 'stateRank': '11', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '22', '247stateRank': '20'}, {'school': 'florida', 'year': '2016', 'playerName': 'Rick Wells', 'highSchool': 'Raines', 'city': 'Jacksonville', 'state': 'FL', 'position': 'WR', 'height': 72.0, 'weight': '185', 'compRating': '0.8727', 'compStars': 3, 'nationalRank': '467', 'positionRank': '82', 'stateRank': '63', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '106', '247stateRank': '83'}, {'school': 'florida', 'year': '2016', 'playerName': 'McArthur Burnett', 'highSchool': 'Pahokee', 'city': 'Pahokee', 'state': 'FL', 'position': 'APB', 'height': 70.0, 'weight': '175', 'compRating': '0.8709', 'compStars': 3, 'nationalRank': '482', 'positionRank': '13', 'stateRank': '64', '247Rating': ' 84 ', '247Stars': 3, '247nationalRank': '135', '247positionRank': '14', '247stateRank': '34'}, {'school': 'florida', 'year': '2016', 'playerName': 'Lamical Perine', 'highSchool': 'Theodore', 'city': 'Theodore', 'state': 'AL', 'position': 'RB', 'height': 71.0, 'weight': '210', 'compRating': '0.8699', 'compStars': 3, 'nationalRank': '493', 'positionRank': '28', 'stateRank': '17', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '14', '247stateRank': '10'}, {'school': 'florida', 'year': '2016', 'playerName': 'Brett Heggie', 'highSchool': 'Mt. Dora', 'city': 'Mount Dora', 'state': 'FL', 'position': 'OC', 'height': 76.5, 'weight': '300', 'compRating': '0.8656', 'compStars': 3, 'nationalRank': '547', 'positionRank': '6', 'stateRank': '79', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '6', '247stateRank': '79'}, {'school': 'florida', 'year': '2016', 'playerName': 'Quincy Lenton', 'highSchool': 'Meridian', 'city': 'Meridian', 'state': 'MS', 'position': 'S', 'height': 72.0, 'weight': '190', 'compRating': '0.8616', 'compStars': 3, 'nationalRank': '594', 'positionRank': '39', 'stateRank': '21', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '42', '247stateRank': '19'}, {'school': 'florida', 'year': '2016', 'playerName': 'Vosean Joseph', 'highSchool': 'Norland', 'city': 'Miami', 'state': 'FL', 'position': 'OLB', 'height': 74.0, 'weight': '210', 'compRating': '0.8590', 'compStars': 3, 'nationalRank': '643', 'positionRank': '42', 'stateRank': '92', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '57', '247stateRank': '104'}, {'school': 'florida', 'year': '2016', 'playerName': 'Jachai Polite', 'highSchool': 'Mainland', 'city': 'Daytona Beach', 'state': 'FL', 'position': 'SDE', 'height': 75.0, 'weight': '250', 'compRating': '0.8538', 'compStars': 3, 'nationalRank': '741', 'positionRank': '33', 'stateRank': '106', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '28', '247stateRank': '71'}, {'school': 'florida', 'year': '2016', 'playerName': 'Jawaan Taylor', 'highSchool': 'Cocoa', 'city': 'Cocoa', 'state': 'FL', 'position': 'OG', 'height': 77.0, 'weight': '330', 'compRating': '0.8453', 'compStars': 3, 'nationalRank': '941', 'positionRank': '46', 'stateRank': '131', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '58', '247stateRank': '152'}, {'school': 'florida', 'year': '2016', 'playerName': 'Stone Forsythe', 'highSchool': 'West Orange', 'city': 'Winter Garden', 'state': 'FL', 'position': 'OT', 'height': 79.5, 'weight': '325', 'compRating': '0.8437', 'compStars': 3, 'nationalRank': '976', 'positionRank': '82', 'stateRank': '135', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '122', '247stateRank': '187'}, {'school': 'florida', 'year': '2016', 'playerName': 'Joseph Putu', 'highSchool': 'North Dakota State College of Science', 'city': 'Wahpeton', 'state': 'ND', 'position': 'CB', 'height': 74.0, 'weight': '195', 'compRating': '0.8356', 'compStars': 3, 'nationalRank': '129', 'positionRank': '14', 'stateRank': '1', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '88', '247positionRank': '9', '247stateRank': '1'}, {'school': 'florida', 'year': '2016', 'playerName': 'Eddy Pineiro', 'highSchool': 'ASA College', 'city': 'None', 'state': 'None', 'position': 'K', 'height': 73.0, 'weight': '180', 'compRating': '0.8323', 'compStars': 3, 'nationalRank': '154', 'positionRank': '1', 'stateRank': '2', '247Rating': ' 80 ', '247Stars': 3, '247nationalRank': '191', '247positionRank': '1', '247stateRank': '2'}, {'school': 'florida', 'year': '2016', 'playerName': 'Christopher McWilliams', 'highSchool': 'Southwest Miami', 'city': 'Miami', 'state': 'FL', 'position': 'CB', 'height': 71.0, 'weight': '164', 'compRating': '0.8276', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '132', 'stateRank': '198', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '164', '247stateRank': '238'}, {'school': 'florida', 'year': '2016', 'playerName': 'Kyle Trask', 'highSchool': 'Manvel', 'city': 'Manvel', 'state': 'TX', 'position': 'PRO', 'height': 77.5, 'weight': '211', 'compRating': '0.7984', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '92', 'stateRank': '262', '247Rating': ' 77 ', '247Stars': 2, '247positionRank': '107', '247stateRank': '330'}, {'school': 'texas-am', 'year': '2003', 'playerName': 'Jorrie Adams', 'highSchool': 'Jasper', 'city': 'Jasper', 'state': 'TX', 'position': 'OT', 'height': 79.0, 'weight': '275', 'compRating': '0.9926', 'compStars': 5, 'nationalRank': '19', 'positionRank': '1', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2003', 'playerName': 'Justin Warren', 'highSchool': 'Tyler Lee', 'city': 'Tyler', 'state': 'TX', 'position': 'OLB', 'height': 75.0, 'weight': '220', 'compRating': '0.9827', 'compStars': 4, 'nationalRank': '34', 'positionRank': '1', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2003', 'playerName': 'Jason Jack', 'highSchool': 'Humble', 'city': 'Humble', 'state': 'TX', 'position': 'SDE', 'height': 75.0, 'weight': '250', 'compRating': '0.9305', 'compStars': 4, 'nationalRank': '121', 'positionRank': '10', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2003', 'playerName': 'Mike Montgomery', 'highSchool': 'Navarro College', 'city': 'Corsicana', 'state': 'TX', 'position': 'SDE', 'height': 78.0, 'weight': '275', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '14', 'positionRank': '2', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2003', 'playerName': 'Stephen Hodge', 'highSchool': 'Lake Highlands', 'city': 'Dallas', 'state': 'TX', 'position': 'CB', 'height': 73.0, 'weight': '190', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '212', 'positionRank': '15', 'stateRank': '27', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2003', 'playerName': 'Lamar Mitchell', 'highSchool': 'Dayton', 'city': 'Dayton', 'state': 'TX', 'position': 'ILB', 'height': 73.0, 'weight': '235', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '246', 'positionRank': '19', 'stateRank': '33', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2003', 'playerName': 'Corey Clark', 'highSchool': 'Smithson Valley', 'city': 'Spring Branch', 'state': 'TX', 'position': 'OT', 'height': 78.0, 'weight': '323', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '317', 'positionRank': '22', 'stateRank': '43', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2003', 'playerName': 'Melvin Bullitt', 'highSchool': 'Naaman Forest', 'city': 'Garland', 'state': 'TX', 'position': 'CB', 'height': 72.0, 'weight': '176', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '322', 'positionRank': '22', 'stateRank': '44', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2003', 'playerName': 'Ta Ta Thompson', 'highSchool': 'Garland', 'city': 'Garland', 'state': 'TX', 'position': 'OLB', 'height': 76.0, 'weight': '225', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '341', 'positionRank': '23', 'stateRank': '51', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2003', 'playerName': 'Chris Alexander', 'highSchool': 'Humble', 'city': 'Humble', 'state': 'TX', 'position': 'FB', 'height': 71.0, 'weight': '230', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '355', 'positionRank': '6', 'stateRank': '56', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2003', 'playerName': 'Chris Yoder', 'highSchool': 'Kingwood', 'city': 'Humble', 'state': 'TX', 'position': 'OG', 'height': 75.0, 'weight': '280', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '358', 'positionRank': '25', 'stateRank': '58', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2003', 'playerName': 'Cody Wallace', 'highSchool': 'Cuero', 'city': 'Cuero', 'state': 'TX', 'position': 'OG', 'height': 76.0, 'weight': '295', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '372', 'positionRank': '27', 'stateRank': '63', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2003', 'playerName': 'Chris Harrington', 'highSchool': 'St. Pius X', 'city': 'Houston', 'state': 'TX', 'position': 'WDE', 'height': 76.0, 'weight': '245', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '394', 'positionRank': '18', 'stateRank': '65', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2003', 'playerName': 'Kirk Elder', 'highSchool': 'Klein Oak', 'city': 'Spring', 'state': 'TX', 'position': 'OG', 'height': 76.0, 'weight': '295', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '404', 'positionRank': '31', 'stateRank': '67', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2003', 'playerName': 'Eric Mayes', 'highSchool': 'Humble', 'city': 'Humble', 'state': 'TX', 'position': 'S', 'height': 70.0, 'weight': '175', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '411', 'positionRank': '26', 'stateRank': '68', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2003', 'playerName': 'Broderick Newton', 'highSchool': 'Aledo', 'city': 'Aledo', 'state': 'TX', 'position': 'CB', 'height': 71.0, 'weight': '165', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '459', 'positionRank': '31', 'stateRank': '76', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2003', 'playerName': 'Joey Thomas', 'highSchool': 'Westlake', 'city': 'Austin', 'state': 'TX', 'position': 'TE', 'height': 78.0, 'weight': '205', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '498', 'positionRank': '34', 'stateRank': '80', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2003', 'playerName': 'Joseph Bryant', 'highSchool': 'Jasper', 'city': 'Jasper', 'state': 'TX', 'position': 'DT', 'height': 77.0, 'weight': '300', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '530', 'positionRank': '37', 'stateRank': '90', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2003', 'playerName': 'Earvin Taylor', 'highSchool': 'Mission', 'city': 'Mission', 'state': 'TX', 'position': 'WR', 'height': 75.0, 'weight': '190', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '542', 'positionRank': '50', 'stateRank': '91', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2003', 'playerName': 'Tate Pittman', 'highSchool': 'Permian', 'city': 'Odessa', 'state': 'TX', 'position': 'DT', 'height': 78.0, 'weight': '285', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '617', 'positionRank': '46', 'stateRank': '105', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2003', 'playerName': 'Derrick Brown', 'highSchool': 'Klein Oak', 'city': 'Spring', 'state': 'TX', 'position': 'RB', 'height': 71.0, 'weight': '195', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '618', 'positionRank': '36', 'stateRank': '106', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2003', 'playerName': 'John Kelly', 'highSchool': 'Naaman Forest', 'city': 'Garland', 'state': 'TX', 'position': 'CB', 'height': 69.0, 'weight': '180', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '639', 'positionRank': '47', 'stateRank': '112', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2003', 'playerName': 'Charlie Jefferson', 'highSchool': 'Ryan', 'city': 'Denton', 'state': 'TX', 'position': 'S', 'height': 74.0, 'weight': '190', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '75', 'stateRank': '157', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2003', 'playerName': 'Red Bryant', 'highSchool': 'Jasper', 'city': 'Jasper', 'state': 'TX', 'position': 'DT', 'height': 76.0, 'weight': '300', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2003', 'playerName': 'Japhus Brown', 'highSchool': 'Edna', 'city': 'Edna', 'state': 'TX', 'position': 'ATH', 'height': 73.0, 'weight': '175', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2007', 'playerName': 'D.J. Stafford', 'highSchool': 'LaGrange', 'city': 'Lagrange', 'state': 'GA', 'position': 'DT', 'height': 75.0, 'weight': '270', 'compRating': '0.9452', 'compStars': 4, 'nationalRank': '102', 'positionRank': '10', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2007', 'playerName': 'Ryan Tydlacka', 'highSchool': 'Trinity', 'city': 'Louisville', 'state': 'KY', 'position': 'P', 'height': 73.0, 'weight': '201', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2007', 'playerName': 'Taiedo Smith', 'highSchool': 'Dunnellon', 'city': 'Dunnellon', 'state': 'FL', 'position': 'S', 'height': 72.0, 'weight': '188', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2007', 'playerName': 'Moncell Allen', 'highSchool': 'Fork Union Military Academy', 'city': 'Fork Union', 'state': 'VA', 'position': 'FB', 'height': 69.0, 'weight': '215', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2007', 'playerName': 'Jess Beets', 'highSchool': 'Saddleback College', 'city': 'Mission Viejo', 'state': 'CA', 'position': 'OG', 'height': 75.0, 'weight': '280', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2007', 'playerName': 'Randall Burden', 'highSchool': 'LaGrange', 'city': 'Lagrange', 'state': 'GA', 'position': 'CB', 'height': 74.0, 'weight': '170', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2007', 'playerName': 'Chris Drayton', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'S', 'height': 72.0, 'weight': '200', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2007', 'playerName': 'Jacob Dufrene', 'highSchool': 'John Curtis', 'city': 'New Orleans', 'state': 'LA', 'position': 'OLB', 'height': 73.0, 'weight': '210', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2007', 'playerName': 'Brad Durham', 'highSchool': 'Rockcastle County', 'city': 'Mount Vernon', 'state': 'KY', 'position': 'OG', 'height': 76.0, 'weight': '290', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2007', 'playerName': 'Antwane Glenn', 'highSchool': 'Broome', 'city': 'Spartanburg', 'state': 'SC', 'position': 'WDE', 'height': 76.0, 'weight': '235', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2007', 'playerName': 'Phillip Hibbard', 'highSchool': 'South Laurel', 'city': 'London', 'state': 'KY', 'position': 'OT', 'height': 79.0, 'weight': '300', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2007', 'playerName': 'Stuart Hines', 'highSchool': 'Bowling Green', 'city': 'Bowling Green', 'state': 'KY', 'position': 'OT', 'height': 77.0, 'weight': '280', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2007', 'playerName': 'Brandon Jackson', 'highSchool': 'Marist', 'city': 'Eugene', 'state': 'OR', 'position': 'RB', 'height': 71.0, 'weight': '190', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2007', 'playerName': 'Jake Lanefski', 'highSchool': 'McGill Toolen', 'city': 'Mobile', 'state': 'AL', 'position': 'OT', 'height': 77.0, 'weight': '250', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2007', 'playerName': 'Kyrus Lanxter', 'highSchool': 'Alcoa', 'city': 'Alcoa', 'state': 'TN', 'position': 'WR', 'height': 74.0, 'weight': '175', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2007', 'playerName': 'Matt Lentz', 'highSchool': 'Greenville', 'city': 'Greenville', 'state': 'SC', 'position': 'DUAL', 'height': 75.0, 'weight': '205', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2007', 'playerName': 'Shane McCord', 'highSchool': 'Hart County', 'city': 'Hartwell', 'state': 'GA', 'position': 'DT', 'height': 73.0, 'weight': '248', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2007', 'playerName': 'Greg Meisner', 'highSchool': 'Hempfield Area', 'city': 'Greensburg', 'state': 'PA', 'position': 'SDE', 'height': 74.0, 'weight': '230', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2007', 'playerName': 'Anthony Mosley', 'highSchool': 'Tucker', 'city': 'Tucker', 'state': 'GA', 'position': 'WR', 'height': 71.0, 'weight': '165', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2007', 'playerName': 'Billy Joe Murphy', 'highSchool': 'Monroe County', 'city': 'Tompkinsville', 'state': 'KY', 'position': 'OT', 'height': 79.0, 'weight': '280', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2007', 'playerName': 'Charles Mustafaa', 'highSchool': 'Westlake', 'city': 'Atlanta', 'state': 'GA', 'position': 'WDE', 'height': 75.0, 'weight': '230', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2007', 'playerName': 'Ronnie Sneed', 'highSchool': 'Florida State Univ. School', 'city': 'Tallahassee', 'state': 'FL', 'position': 'ILB', 'height': 74.0, 'weight': '235', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2007', 'playerName': 'Antonio Thomas', 'highSchool': 'Broome', 'city': 'Spartanburg', 'state': 'SC', 'position': 'S', 'height': 75.0, 'weight': '200', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2007', 'playerName': 'Greg Wilson', 'highSchool': 'North Clayton', 'city': 'Atlanta', 'state': 'GA', 'position': 'S', 'height': 74.0, 'weight': '180', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2007', 'playerName': 'Josh Winchell', 'highSchool': 'Northwest Mississippi C.C.', 'city': 'Senatobia', 'state': 'MS', 'position': 'OT', 'height': 77.0, 'weight': '325', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2007', 'playerName': 'Duran Jefferson', 'highSchool': 'Holmes Junior Senior', 'city': 'Covington', 'state': 'KY', 'position': 'ATH', 'height': 73.0, 'weight': '180', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2007', 'playerName': 'Mychal Bailey', 'highSchool': 'LaGrange', 'city': 'Lagrange', 'state': 'GA', 'position': 'S', 'height': 72.0, 'weight': '190', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2019', 'playerName': 'Charles Cross', 'highSchool': 'Laurel', 'city': 'Laurel', 'state': 'MS', 'position': 'OT', 'height': 77.0, 'weight': '270', 'compRating': '0.9877', 'compStars': 5, 'nationalRank': '27', 'positionRank': '5', 'stateRank': '2', '247Rating': ' 99 ', '247Stars': 5, '247nationalRank': '8', '247positionRank': '2', '247stateRank': '1'}, {'school': 'mississippi-state', 'year': '2019', 'playerName': 'Nathan Pickering', 'highSchool': 'Seminary', 'city': 'Seminary', 'state': 'MS', 'position': 'DT', 'height': 75.5, 'weight': '305', 'compRating': '0.9675', 'compStars': 4, 'nationalRank': '73', 'positionRank': '6', 'stateRank': '5', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '64', '247positionRank': '6', '247stateRank': '4'}, {'school': 'mississippi-state', 'year': '2019', 'playerName': "De'Monte Russell", 'highSchool': 'Provine', 'city': 'Jackson', 'state': 'MS', 'position': 'WDE', 'height': 76.0, 'weight': '216', 'compRating': '0.9255', 'compStars': 4, 'nationalRank': '182', 'positionRank': '10', 'stateRank': '11', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '142', '247positionRank': '7', '247stateRank': '10'}, {'school': 'mississippi-state', 'year': '2019', 'playerName': 'Jarrian Jones', 'highSchool': 'Northwest Rankin', 'city': 'Flowood', 'state': 'MS', 'position': 'S', 'height': 73.0, 'weight': '185', 'compRating': '0.9147', 'compStars': 4, 'nationalRank': '217', 'positionRank': '18', 'stateRank': '13', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '22', '247stateRank': '13'}, {'school': 'mississippi-state', 'year': '2019', 'playerName': 'Garrett Shrader', 'highSchool': 'Charlotte Christian', 'city': 'Charlotte', 'state': 'NC', 'position': 'DUAL', 'height': 76.5, 'weight': '215', 'compRating': '0.9106', 'compStars': 4, 'nationalRank': '238', 'positionRank': '7', 'stateRank': '9', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '13', '247stateRank': '28'}, {'school': 'mississippi-state', 'year': '2019', 'playerName': 'Ani Izuchukwu', 'highSchool': 'Davidson Academy', 'city': 'Nashville', 'state': 'TN', 'position': 'WDE', 'height': 76.0, 'weight': '230', 'compRating': '0.8906', 'compStars': 4, 'nationalRank': '379', 'positionRank': '24', 'stateRank': '12', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '35', '247stateRank': '17'}, {'school': 'mississippi-state', 'year': '2019', 'playerName': 'Brandon Cunningham', 'highSchool': 'St. Martin', 'city': 'Ocean Springs', 'state': 'MS', 'position': 'OT', 'height': 77.0, 'weight': '325', 'compRating': '0.8884', 'compStars': 3, 'nationalRank': '406', 'positionRank': '34', 'stateRank': '17', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '34', '247stateRank': '15'}, {'school': 'mississippi-state', 'year': '2019', 'playerName': 'Fred Peters', 'highSchool': 'Jones College', 'city': 'Ellisville', 'state': 'MS', 'position': 'S', 'height': 70.5, 'weight': '200', 'compRating': '0.8859', 'compStars': 3, 'nationalRank': '21', 'positionRank': '3', 'stateRank': '2', '247Rating': ' 87 ', '247Stars': 3, '247nationalRank': '33', '247positionRank': '4', '247stateRank': '5'}, {'school': 'mississippi-state', 'year': '2019', 'playerName': 'LaQuinston Sharp', 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'OG', 'height': 75.0, 'weight': '285', 'compRating': '0.8797', 'compStars': 3, 'nationalRank': '27', 'positionRank': '2', 'stateRank': '3', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '26', '247positionRank': '2', '247stateRank': '3'}, {'school': 'mississippi-state', 'year': '2019', 'playerName': 'Collin Duncan', 'highSchool': 'St James School', 'city': 'Montgomery', 'state': 'AL', 'position': 'CB', 'height': 72.0, 'weight': '190', 'compRating': '0.8788', 'compStars': 3, 'nationalRank': '533', 'positionRank': '53', 'stateRank': '18', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '44', '247stateRank': '16'}, {'school': 'mississippi-state', 'year': '2019', 'playerName': 'JaVonta Payton', 'highSchool': 'Northwest Mississippi C.C.', 'city': 'Senatobia', 'state': 'MS', 'position': 'WR', 'height': 74.0, 'weight': '182', 'compRating': '0.8785', 'compStars': 3, 'nationalRank': '28', 'positionRank': '3', 'stateRank': '4', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '24', '247positionRank': '2', '247stateRank': '2'}, {'school': 'mississippi-state', 'year': '2019', 'playerName': 'Kareem Walker', 'highSchool': 'Fort Scott C.C.', 'city': 'Fort Scott', 'state': 'KS', 'position': 'RB', 'height': 73.0, 'weight': '220', 'compRating': '0.8750', 'compStars': 3, 'nationalRank': '32', 'positionRank': '3', 'stateRank': '10', '247Rating': ' 85 ', '247Stars': 3, '247nationalRank': '104', '247positionRank': '5', '247stateRank': '23'}, {'school': 'mississippi-state', 'year': '2019', 'playerName': 'Quinton Torbor', 'highSchool': 'Destrehan', 'city': 'Destrehan', 'state': 'LA', 'position': 'WR', 'height': 74.0, 'weight': '190', 'compRating': '0.8710', 'compStars': 3, 'nationalRank': '648', 'positionRank': '82', 'stateRank': '22', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '104', '247stateRank': '27'}, {'school': 'mississippi-state', 'year': '2019', 'playerName': 'J.P. Purvis', 'highSchool': 'Pelahatchie Attendance Center', 'city': 'Pelahatchie', 'state': 'MS', 'position': 'S', 'height': 74.0, 'weight': '195', 'compRating': '0.8688', 'compStars': 3, 'nationalRank': '698', 'positionRank': '52', 'stateRank': '23', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '78', '247stateRank': '27'}, {'school': 'mississippi-state', 'year': '2019', 'playerName': 'Nick Pendley', 'highSchool': 'Creekview', 'city': 'Canton', 'state': 'GA', 'position': 'OG', 'height': 77.0, 'weight': '290', 'compRating': '0.8675', 'compStars': 3, 'nationalRank': '726', 'positionRank': '42', 'stateRank': '73', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '59', '247stateRank': '108'}, {'school': 'mississippi-state', 'year': '2019', 'playerName': 'Lee Witherspoon', 'highSchool': 'North Jackson', 'city': 'Stevenson', 'state': 'AL', 'position': 'ATH', 'height': 71.0, 'weight': '180', 'compRating': '0.8668', 'compStars': 3, 'nationalRank': '747', 'positionRank': '45', 'stateRank': '27', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '45', '247stateRank': '21'}, {'school': 'mississippi-state', 'year': '2019', 'playerName': 'Kyziah Pruitt', 'highSchool': 'Noxubee County', 'city': 'Macon', 'state': 'MS', 'position': 'WR', 'height': 71.0, 'weight': '185', 'compRating': '0.8668', 'compStars': 3, 'nationalRank': '751', 'positionRank': '96', 'stateRank': '24', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '101', '247stateRank': '24'}, {'school': 'mississippi-state', 'year': '2019', 'playerName': 'Martin Emerson Jr.', 'highSchool': 'Pine Forest', 'city': 'Pensacola', 'state': 'FL', 'position': 'S', 'height': 74.0, 'weight': '185', 'compRating': '0.8614', 'compStars': 3, 'nationalRank': '848', 'positionRank': '67', 'stateRank': '112', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '77', '247stateRank': '115'}, {'school': 'mississippi-state', 'year': '2019', 'playerName': 'Jack Harris', 'highSchool': 'Oak Grove', 'city': 'Hattiesburg', 'state': 'MS', 'position': 'SDE', 'height': 74.0, 'weight': '227', 'compRating': '0.8614', 'compStars': 3, 'nationalRank': '849', 'positionRank': '58', 'stateRank': '27', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '66', '247stateRank': '28'}, {'school': 'mississippi-state', 'year': '2019', 'playerName': 'Dylan Lawrence', 'highSchool': 'George County', 'city': 'Lucedale', 'state': 'MS', 'position': 'ATH', 'height': 76.5, 'weight': '193', 'compRating': '0.8365', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '120', 'stateRank': '43', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '128', '247stateRank': '40'}, {'school': 'mississippi-state', 'year': '2019', 'playerName': 'Brevyn Jones', 'highSchool': 'Huffman', 'city': 'Birmingham', 'state': 'AL', 'position': 'OT', 'height': 76.0, 'weight': '261', 'compRating': '0.8317', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '140', 'stateRank': '61', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '189', '247stateRank': '74'}, {'school': 'missouri', 'year': '2015', 'playerName': 'Terry Beckner Jr.', 'highSchool': 'East St. Louis', 'city': 'East Saint Louis', 'state': 'IL', 'position': 'DT', 'height': 76.0, 'weight': '293', 'compRating': '0.9918', 'compStars': 5, 'nationalRank': '13', 'positionRank': '3', 'stateRank': '1', '247Rating': ' 99 ', '247Stars': 5, '247nationalRank': '8', '247positionRank': '3', '247stateRank': '1'}, {'school': 'missouri', 'year': '2015', 'playerName': 'Drew Lock', 'highSchool': "Lee's Summit", 'city': 'Lees Summit', 'state': 'MO', 'position': 'PRO', 'height': 75.5, 'weight': '205', 'compRating': '0.9553', 'compStars': 4, 'nationalRank': '98', 'positionRank': '7', 'stateRank': '1', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '103', '247positionRank': '5', '247stateRank': '1'}, {'school': 'missouri', 'year': '2015', 'playerName': 'AJ Harris', 'highSchool': 'Blue Valley', 'city': 'Stilwell', 'state': 'KS', 'position': 'OG', 'height': 76.0, 'weight': '297', 'compRating': '0.8940', 'compStars': 4, 'nationalRank': '319', 'positionRank': '21', 'stateRank': '1', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '44', '247stateRank': '4'}, {'school': 'missouri', 'year': '2015', 'playerName': 'Chase Abbington', 'highSchool': 'Hutchinson C.C.', 'city': 'Hutchinson', 'state': 'KS', 'position': 'RB', 'height': 74.0, 'weight': '210', 'compRating': '0.8903', 'compStars': 4, 'nationalRank': '20', 'positionRank': '3', 'stateRank': '5', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '37', '247positionRank': '3', '247stateRank': '6'}, {'school': 'missouri', 'year': '2015', 'playerName': 'Marquise Doherty', 'highSchool': 'Winnetonka', 'city': 'Kansas City', 'state': 'MO', 'position': 'ATH', 'height': 73.0, 'weight': '190', 'compRating': '0.8786', 'compStars': 3, 'nationalRank': '410', 'positionRank': '29', 'stateRank': '5', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '22', '247stateRank': '4'}, {'school': 'missouri', 'year': '2015', 'playerName': 'Marcell Frazier', 'highSchool': 'College of Siskiyous', 'city': 'Weed', 'state': 'CA', 'position': 'SDE', 'height': 76.0, 'weight': '250', 'compRating': '0.8744', 'compStars': 3, 'nationalRank': '31', 'positionRank': '2', 'stateRank': '5', '247Rating': ' 70 ', '247Stars': 2, '247positionRank': '341', '247stateRank': '12'}, {'school': 'missouri', 'year': '2015', 'playerName': 'Malik Cuellar', 'highSchool': 'City College of San Francisco', 'city': 'San Francisco', 'state': 'CA', 'position': 'OT', 'height': 77.0, 'weight': '290', 'compRating': '0.8648', 'compStars': 3, 'nationalRank': '52', 'positionRank': '11', 'stateRank': '11', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '11', '247positionRank': '2', '247stateRank': '2'}, {'school': 'missouri', 'year': '2015', 'playerName': 'Terez Hall', 'highSchool': 'Martin Luther King Jr.', 'city': 'Lithonia', 'state': 'GA', 'position': 'OLB', 'height': 75.0, 'weight': '205', 'compRating': '0.8637', 'compStars': 3, 'nationalRank': '585', 'positionRank': '40', 'stateRank': '57', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '36', '247stateRank': '58'}, {'school': 'missouri', 'year': '2015', 'playerName': 'Johnathon Johnson', 'highSchool': 'Melrose', 'city': 'Memphis', 'state': 'TN', 'position': 'ATH', 'height': 68.5, 'weight': '165', 'compRating': '0.8615', 'compStars': 3, 'nationalRank': '616', 'positionRank': '49', 'stateRank': '18', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '66', '247stateRank': '22'}, {'school': 'missouri', 'year': '2015', 'playerName': 'Nate Howard', 'highSchool': 'Ladue Horton Watkins', 'city': 'Saint Louis', 'state': 'MO', 'position': 'WDE', 'height': 77.0, 'weight': '225', 'compRating': '0.8603', 'compStars': 3, 'nationalRank': '637', 'positionRank': '30', 'stateRank': '7', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '21', '247stateRank': '7'}, {'school': 'missouri', 'year': '2015', 'playerName': 'Ryan Williams', 'highSchool': "Lee's Summit West", 'city': 'Lees Summit', 'state': 'MO', 'position': 'RB', 'height': 71.0, 'weight': '185', 'compRating': '0.8578', 'compStars': 3, 'nationalRank': '700', 'positionRank': '54', 'stateRank': '10', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '39', '247stateRank': '9'}, {'school': 'missouri', 'year': '2015', 'playerName': 'Cam Hilton', 'highSchool': 'Webster Groves', 'city': 'Saint Louis', 'state': 'MO', 'position': 'S', 'height': 73.0, 'weight': '175', 'compRating': '0.8569', 'compStars': 3, 'nationalRank': '725', 'positionRank': '52', 'stateRank': '11', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '51', '247stateRank': '11'}, {'school': 'missouri', 'year': '2015', 'playerName': 'Ronnell Perkins', 'highSchool': 'University City Sr.', 'city': 'Saint Louis', 'state': 'MO', 'position': 'ATH', 'height': 74.0, 'weight': '190', 'compRating': '0.8565', 'compStars': 3, 'nationalRank': '732', 'positionRank': '57', 'stateRank': '12', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '90', '247stateRank': '13'}, {'school': 'missouri', 'year': '2015', 'playerName': 'Anthony Hines', 'highSchool': 'College of San Mateo', 'city': 'San Mateo', 'state': 'CA', 'position': 'CB', 'height': 74.0, 'weight': '180', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '74', 'positionRank': '6', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2015', 'playerName': 'Josh Moore', 'highSchool': 'Olathe North', 'city': 'Olathe', 'state': 'KS', 'position': 'TE', 'height': 77.0, 'weight': '250', 'compRating': '0.8550', 'compStars': 3, 'nationalRank': '761', 'positionRank': '27', 'stateRank': '5', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '30', '247stateRank': '9'}, {'school': 'missouri', 'year': '2015', 'playerName': 'Emanuel Hall', 'highSchool': 'Centennial', 'city': 'Franklin', 'state': 'TN', 'position': 'WR', 'height': 74.0, 'weight': '190', 'compRating': '0.8498', 'compStars': 3, 'nationalRank': '882', 'positionRank': '110', 'stateRank': '28', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '64', '247stateRank': '19'}, {'school': 'missouri', 'year': '2015', 'playerName': 'Justin Smith', 'highSchool': 'West Laurens', 'city': 'Dublin', 'state': 'GA', 'position': 'WR', 'height': 79.0, 'weight': '220', 'compRating': '0.8431', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '128', 'stateRank': '106', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '34', '247stateRank': '26'}, {'school': 'missouri', 'year': '2015', 'playerName': 'Richaud Floyd', 'highSchool': 'Gulfport', 'city': 'Gulfport', 'state': 'MS', 'position': 'WR', 'height': 70.0, 'weight': '165', 'compRating': '0.8419', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '134', 'stateRank': '28', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '50', '247stateRank': '14'}, {'school': 'missouri', 'year': '2015', 'playerName': 'Tyrell Jacobs', 'highSchool': 'Archbishop Rummel', 'city': 'Metairie', 'state': 'LA', 'position': 'DT', 'height': 76.0, 'weight': '260', 'compRating': '0.8398', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '76', 'stateRank': '55', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '69', '247stateRank': '62'}, {'school': 'missouri', 'year': '2015', 'playerName': 'T.J. Warren', 'highSchool': 'Rockdale County', 'city': 'Conyers', 'state': 'GA', 'position': 'CB', 'height': 72.0, 'weight': '190', 'compRating': '0.8393', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '101', 'stateRank': '118', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '73', '247stateRank': '84'}, {'school': 'missouri', 'year': '2015', 'playerName': 'Franklin Agbasimere', 'highSchool': 'Montverde Academy', 'city': 'Montverde', 'state': 'FL', 'position': 'OLB', 'height': 74.0, 'weight': '220', 'compRating': '0.8271', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '95', 'stateRank': '221', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '81', '247stateRank': '151'}, {'school': 'missouri', 'year': '2015', 'playerName': 'Tanner Owen', 'highSchool': 'Kearney', 'city': 'Kearney', 'state': 'MO', 'position': 'OT', 'height': 77.0, 'weight': '265', 'compRating': '0.8189', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '166', 'stateRank': '18', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '163', '247stateRank': '21'}, {'school': 'missouri', 'year': '2015', 'playerName': 'Corey Fatony', 'highSchool': 'Franklin', 'city': 'Franklin', 'state': 'TN', 'position': 'P', 'height': 71.0, 'weight': '190', 'compRating': '0.7939', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '10', 'stateRank': '53', '247Rating': ' 76 ', '247Stars': 2, '247positionRank': '8', '247stateRank': '76'}, {'school': 'missouri', 'year': '2015', 'playerName': 'Tyler Howell', 'highSchool': 'Butler C.C.', 'city': 'El Dorado', 'state': 'KS', 'position': 'OT', 'height': 81.0, 'weight': '302', 'compRating': '0.8808', 'compStars': 3, 'nationalRank': '27', 'positionRank': '5', 'stateRank': '7', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '41', '247positionRank': '8', '247stateRank': '7'}, {'school': 'kentucky', 'year': '2011', 'playerName': 'Glenn Faulkner', 'highSchool': 'East St. Louis', 'city': 'East Saint Louis', 'state': 'IL', 'position': 'S', 'height': 74.0, 'weight': '194', 'compRating': '0.9095', 'compStars': 4, 'nationalRank': '207', 'positionRank': '14', 'stateRank': '6', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '231', '247positionRank': '16', '247stateRank': '4'}, {'school': 'kentucky', 'year': '2011', 'playerName': 'Darrian Miller', 'highSchool': 'Bryan Station', 'city': 'Lexington', 'state': 'KY', 'position': 'OT', 'height': 77.0, 'weight': '297', 'compRating': '0.8999', 'compStars': 4, 'nationalRank': '241', 'positionRank': '23', 'stateRank': '3', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '39', '247stateRank': '3'}, {'school': 'kentucky', 'year': '2011', 'playerName': 'Zach West', 'highSchool': 'Lexington Christian Academy', 'city': 'Lexington', 'state': 'KY', 'position': 'OT', 'height': 76.0, 'weight': '296', 'compRating': '0.8681', 'compStars': 3, 'nationalRank': '428', 'positionRank': '44', 'stateRank': '6', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '45', '247stateRank': '4'}, {'school': 'kentucky', 'year': '2011', 'playerName': 'Marcus Caffey', 'highSchool': 'Grady', 'city': 'Atlanta', 'state': 'GA', 'position': 'RB', 'height': 71.0, 'weight': '189', 'compRating': '0.8624', 'compStars': 3, 'nationalRank': '504', 'positionRank': '32', 'stateRank': '39', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '109', '247positionRank': '14', '247stateRank': '6'}, {'school': 'kentucky', 'year': '2011', 'playerName': 'Daryl Collins', 'highSchool': 'Gadsden City', 'city': 'Gadsden', 'state': 'AL', 'position': 'WR', 'height': 71.0, 'weight': '203', 'compRating': '0.8600', 'compStars': 3, 'nationalRank': '543', 'positionRank': '69', 'stateRank': '18', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '61', '247stateRank': '15'}, {'school': 'kentucky', 'year': '2011', 'playerName': 'Demarco Robinson', 'highSchool': 'Martin Luther King Jr.', 'city': 'Lithonia', 'state': 'GA', 'position': 'WR', 'height': 70.0, 'weight': '160', 'compRating': '0.8544', 'compStars': 3, 'nationalRank': '648', 'positionRank': '77', 'stateRank': '51', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '72', '247stateRank': '44'}, {'school': 'kentucky', 'year': '2011', 'playerName': 'Ashely Lowery', 'highSchool': 'White County', 'city': 'Cleveland', 'state': 'GA', 'position': 'S', 'height': 73.0, 'weight': '200', 'compRating': '0.8512', 'compStars': 3, 'nationalRank': '707', 'positionRank': '51', 'stateRank': '56', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '42', '247stateRank': '39'}, {'school': 'kentucky', 'year': '2011', 'playerName': 'Demarius Rancifer', 'highSchool': 'Pensacola Catholic', 'city': 'Pensacola', 'state': 'FL', 'position': 'OLB', 'height': 74.0, 'weight': '206', 'compRating': '0.8475', 'compStars': 3, 'nationalRank': '766', 'positionRank': '63', 'stateRank': '106', '247Rating': ' 70 ', '247Stars': 2, '247positionRank': '21', '247stateRank': '50'}, {'school': 'kentucky', 'year': '2011', 'playerName': 'Bud Dupree', 'highSchool': 'Wilkinson County', 'city': 'Irwinton', 'state': 'GA', 'position': 'TE', 'height': 76.0, 'weight': '229', 'compRating': '0.8468', 'compStars': 3, 'nationalRank': '774', 'positionRank': '37', 'stateRank': '58', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '39', '247stateRank': '52'}, {'school': 'kentucky', 'year': '2011', 'playerName': 'Josh Clemons', 'highSchool': 'Whitewater', 'city': 'Fayetteville', 'state': 'GA', 'position': 'RB', 'height': 70.0, 'weight': '201', 'compRating': '0.8453', 'compStars': 3, 'nationalRank': '814', 'positionRank': '49', 'stateRank': '63', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '61', '247stateRank': '56'}, {'school': 'kentucky', 'year': '2011', 'playerName': 'Christian Coleman', 'highSchool': 'Milan', 'city': 'Milan', 'state': 'TN', 'position': 'WDE', 'height': 75.0, 'weight': '268', 'compRating': '0.8397', 'compStars': 3, 'nationalRank': '902', 'positionRank': '45', 'stateRank': '14', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '42', '247stateRank': '12'}, {'school': 'kentucky', 'year': '2011', 'playerName': 'Eric Dixon', 'highSchool': 'Vigor', 'city': 'Mobile', 'state': 'AL', 'position': 'CB', 'height': 71.0, 'weight': '171', 'compRating': '0.8384', 'compStars': 3, 'nationalRank': '925', 'positionRank': '70', 'stateRank': '29', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '97', '247stateRank': '32'}, {'school': 'kentucky', 'year': '2011', 'playerName': 'Shaq Love', 'highSchool': 'Harriman', 'city': 'Harriman', 'state': 'TN', 'position': 'DT', 'height': 76.0, 'weight': '293', 'compRating': '0.8357', 'compStars': 3, 'nationalRank': '979', 'positionRank': '72', 'stateRank': '15', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '67', '247stateRank': '15'}, {'school': 'kentucky', 'year': '2011', 'playerName': 'Josh Forrest', 'highSchool': 'Paducah Tilghman', 'city': 'Paducah', 'state': 'KY', 'position': 'WR', 'height': 75.0, 'weight': '213', 'compRating': '0.8346', 'compStars': 3, 'nationalRank': '996', 'positionRank': '118', 'stateRank': '12', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '74', '247stateRank': '9'}, {'school': 'kentucky', 'year': '2011', 'playerName': 'Maxwell Smith', 'highSchool': 'Birmingham', 'city': 'Van Nuys', 'state': 'CA', 'position': 'PRO', 'height': 76.0, 'weight': '225', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '34', 'stateRank': '99', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2011', 'playerName': 'James Elliott', 'highSchool': 'Pensacola Catholic', 'city': 'Pensacola', 'state': 'FL', 'position': 'OG', 'height': 75.0, 'weight': '301', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '60', 'stateRank': '132', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2011', 'playerName': 'Daylen Hall', 'highSchool': 'St. Xavier', 'city': 'Louisville', 'state': 'KY', 'position': 'CB', 'height': 70.0, 'weight': '180', 'compRating': '0.8294', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '80', 'stateRank': '13', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '74', '247stateRank': '12'}, {'school': 'kentucky', 'year': '2011', 'playerName': 'Rashad Cunningham', 'highSchool': 'WP Davidson', 'city': 'Mobile', 'state': 'AL', 'position': 'WR', 'height': 76.0, 'weight': '200', 'compRating': '0.8266', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '141', 'stateRank': '37', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '152', '247stateRank': '31'}, {'school': 'kentucky', 'year': '2011', 'playerName': 'Farrington Huguenin', 'highSchool': 'Dreher', 'city': 'Columbia', 'state': 'SC', 'position': 'WDE', 'height': 76.0, 'weight': '238', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '75', 'stateRank': '41', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2011', 'playerName': 'D.J. Warren', 'highSchool': 'Alcoa', 'city': 'Alcoa', 'state': 'TN', 'position': 'WDE', 'height': 72.0, 'weight': '230', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '89', 'stateRank': '31', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2011', 'playerName': 'Bookie Cobbins', 'highSchool': 'McDonogh 35', 'city': 'New Orleans', 'state': 'LA', 'position': 'WR', 'height': 74.0, 'weight': '190', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2011', 'playerName': 'TraVaughn Paschal', 'highSchool': 'Fork Union Military Academy', 'city': 'Fork Union', 'state': 'VA', 'position': 'SDE', 'height': 76.0, 'weight': '246', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2011', 'playerName': 'Bubba Tandy', 'highSchool': 'Christian County', 'city': 'Hopkinsville', 'state': 'KY', 'position': 'ATH', 'height': 73.0, 'weight': '185', 'compRating': '0.8444', 'compStars': 3, 'nationalRank': '828', 'positionRank': '55', 'stateRank': '9'}, {'school': 'kentucky', 'year': '2011', 'playerName': 'Nile Daniel', 'highSchool': 'Griffin', 'city': 'Griffin', 'state': 'GA', 'position': 'WR', 'height': 73.0, 'weight': '185', 'compRating': '0.8396', 'compStars': 3, 'nationalRank': '906', 'positionRank': '105', 'stateRank': '70'}, {'school': 'kentucky', 'year': '2011', 'playerName': 'Justin Bean', 'highSchool': 'Itawamba C.C.', 'city': 'Fulton', 'state': 'MS', 'position': 'WR', 'height': 74.0, 'weight': '190', 'compRating': '0.8115', 'compStars': 3, 'nationalRank': '79', 'positionRank': '6', 'stateRank': '9'}, {'school': 'kentucky', 'year': '2011', 'playerName': 'David Washington', 'highSchool': 'Lovejoy', 'city': 'Hampton', 'state': 'GA', 'position': 'SDE', 'height': 75.0, 'weight': '285', 'compRating': '0.8066', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '89', 'stateRank': '102'}, {'school': 'alabama', 'year': '2019', 'playerName': 'Antonio Alfano', 'highSchool': 'Colonia', 'city': 'Colonia', 'state': 'NJ', 'position': 'SDE', 'height': 76.0, 'weight': '285', 'compRating': '0.9965', 'compStars': 5, 'nationalRank': '5', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 100 ', '247Stars': 5, '247nationalRank': '1', '247positionRank': '1', '247stateRank': '1'}, {'school': 'alabama', 'year': '2019', 'playerName': 'Trey Sanders', 'highSchool': 'IMG Academy', 'city': 'Bradenton', 'state': 'FL', 'position': 'RB', 'height': 72.0, 'weight': '214', 'compRating': '0.9963', 'compStars': 5, 'nationalRank': '6', 'positionRank': '1', 'stateRank': '2', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '14', '247positionRank': '2', '247stateRank': '2'}, {'school': 'alabama', 'year': '2019', 'playerName': 'Evan Neal', 'highSchool': 'IMG Academy', 'city': 'Bradenton', 'state': 'FL', 'position': 'OT', 'height': 79.5, 'weight': '360', 'compRating': '0.9946', 'compStars': 5, 'nationalRank': '7', 'positionRank': '1', 'stateRank': '3', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '32', '247positionRank': '4', '247stateRank': '4'}, {'school': 'alabama', 'year': '2019', 'playerName': 'Pierce Quick', 'highSchool': 'Hewitt-Trussville', 'city': 'Trussville', 'state': 'AL', 'position': 'OT', 'height': 77.0, 'weight': '287', 'compRating': '0.9789', 'compStars': 4, 'nationalRank': '40', 'positionRank': '7', 'stateRank': '4', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '73', '247positionRank': '8', '247stateRank': '4'}, {'school': 'alabama', 'year': '2019', 'playerName': 'Jordan Battle', 'highSchool': 'St. Thomas Aquinas', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'S', 'height': 73.0, 'weight': '187', 'compRating': '0.9780', 'compStars': 4, 'nationalRank': '43', 'positionRank': '2', 'stateRank': '6', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '54', '247positionRank': '5', '247stateRank': '7'}, {'school': 'alabama', 'year': '2019', 'playerName': 'Ishmael Sopsher', 'highSchool': 'Amite', 'city': 'Amite', 'state': 'LA', 'position': 'DT', 'height': 75.5, 'weight': '334', 'compRating': '0.9757', 'compStars': 4, 'nationalRank': '47', 'positionRank': '5', 'stateRank': '3', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '80', '247positionRank': '8', '247stateRank': '4'}, {'school': 'alabama', 'year': '2019', 'playerName': 'Justin Eboigbe', 'highSchool': 'Forest Park', 'city': 'Forest Park', 'state': 'GA', 'position': 'SDE', 'height': 76.5, 'weight': '263', 'compRating': '0.9698', 'compStars': 4, 'nationalRank': '62', 'positionRank': '5', 'stateRank': '10', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '70', '247positionRank': '5', '247stateRank': '10'}, {'school': 'alabama', 'year': '2019', 'playerName': 'Amari Kight', 'highSchool': 'Thompson', 'city': 'Alabaster', 'state': 'AL', 'position': 'OT', 'height': 78.5, 'weight': '315', 'compRating': '0.9648', 'compStars': 4, 'nationalRank': '76', 'positionRank': '10', 'stateRank': '5', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '101', '247positionRank': '10', '247stateRank': '5'}, {'school': 'alabama', 'year': '2019', 'playerName': 'Byron Young', 'highSchool': 'West Jones', 'city': 'Laurel', 'state': 'MS', 'position': 'DT', 'height': 74.5, 'weight': '290', 'compRating': '0.9647', 'compStars': 4, 'nationalRank': '77', 'positionRank': '8', 'stateRank': '6', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '76', '247positionRank': '7', '247stateRank': '5'}, {'school': 'alabama', 'year': '2019', 'playerName': 'Shane Lee', 'highSchool': 'St. Frances Academy', 'city': 'Baltimore', 'state': 'MD', 'position': 'ILB', 'height': 72.0, 'weight': '243', 'compRating': '0.9647', 'compStars': 4, 'nationalRank': '78', 'positionRank': '5', 'stateRank': '2', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '156', '247positionRank': '10', '247stateRank': '4'}, {'school': 'alabama', 'year': '2019', 'playerName': 'DeMarcco Hellams', 'highSchool': 'DeMatha Catholic', 'city': 'Hyattsville', 'state': 'MD', 'position': 'S', 'height': 73.0, 'weight': '203', 'compRating': '0.9603', 'compStars': 4, 'nationalRank': '84', 'positionRank': '8', 'stateRank': '3', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '107', '247positionRank': '8', '247stateRank': '2'}, {'school': 'alabama', 'year': '2019', 'playerName': 'Scooby Carter', 'highSchool': 'Mansfield Legacy', 'city': 'Mansfield', 'state': 'TX', 'position': 'CB', 'height': 72.0, 'weight': '186', 'compRating': '0.9588', 'compStars': 4, 'nationalRank': '91', 'positionRank': '9', 'stateRank': '15'}, {'school': 'alabama', 'year': '2019', 'playerName': 'Brandon Turnage', 'highSchool': 'Lafayette', 'city': 'Oxford', 'state': 'MS', 'position': 'CB', 'height': 73.0, 'weight': '185', 'compRating': '0.9548', 'compStars': 4, 'nationalRank': '102', 'positionRank': '11', 'stateRank': '8', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '102', '247positionRank': '13', '247stateRank': '8'}, {'school': 'alabama', 'year': '2019', 'playerName': 'Christian Harris', 'highSchool': 'University Lab', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'ILB', 'height': 73.5, 'weight': '235', 'compRating': '0.9506', 'compStars': 4, 'nationalRank': '110', 'positionRank': '6', 'stateRank': '5', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '71', '247positionRank': '4', '247stateRank': '3'}, {'school': 'alabama', 'year': '2019', 'playerName': 'Kevin Harris', 'highSchool': 'Grayson', 'city': 'Loganville', 'state': 'GA', 'position': 'WDE', 'height': 76.0, 'weight': '228', 'compRating': '0.9463', 'compStars': 4, 'nationalRank': '123', 'positionRank': '5', 'stateRank': '15', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '117', '247positionRank': '6', '247stateRank': '14'}, {'school': 'alabama', 'year': '2019', 'playerName': 'Marcus Banks', 'highSchool': 'Dekaney', 'city': 'Houston', 'state': 'TX', 'position': 'CB', 'height': 72.0, 'weight': '166', 'compRating': '0.9441', 'compStars': 4, 'nationalRank': '127', 'positionRank': '13', 'stateRank': '21', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '136', '247positionRank': '16', '247stateRank': '21'}, {'school': 'alabama', 'year': '2019', 'playerName': 'King Mwikuta', 'highSchool': 'Troup County', 'city': 'Lagrange', 'state': 'GA', 'position': 'WDE', 'height': 77.0, 'weight': '240', 'compRating': '0.9330', 'compStars': 4, 'nationalRank': '158', 'positionRank': '9', 'stateRank': '21', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '143', '247positionRank': '8', '247stateRank': '16'}, {'school': 'alabama', 'year': '2019', 'playerName': 'Braylen Ingraham', 'highSchool': 'St. Thomas Aquinas', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'SDE', 'height': 76.0, 'weight': '260', 'compRating': '0.9321', 'compStars': 4, 'nationalRank': '164', 'positionRank': '10', 'stateRank': '22', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '165', '247positionRank': '11', '247stateRank': '19'}, {'school': 'alabama', 'year': '2019', 'playerName': 'Darrian Dalcourt', 'highSchool': 'St. Frances Academy', 'city': 'Baltimore', 'state': 'MD', 'position': 'OG', 'height': 75.0, 'weight': '290', 'compRating': '0.9285', 'compStars': 4, 'nationalRank': '177', 'positionRank': '11', 'stateRank': '4', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '199', '247positionRank': '11', '247stateRank': '5'}, {'school': 'alabama', 'year': '2019', 'playerName': 'Taulia Tagovailoa', 'highSchool': 'Thompson', 'city': 'Alabaster', 'state': 'AL', 'position': 'PRO', 'height': 71.0, 'weight': '214', 'compRating': '0.9269', 'compStars': 4, 'nationalRank': '180', 'positionRank': '5', 'stateRank': '8', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '180', '247positionRank': '4', '247stateRank': '7'}, {'school': 'alabama', 'year': '2019', 'playerName': 'Keilan Robinson', 'highSchool': "St. John's", 'city': 'Washington', 'state': 'DC', 'position': 'RB', 'height': 69.0, 'weight': '184', 'compRating': '0.9094', 'compStars': 4, 'nationalRank': '244', 'positionRank': '15', 'stateRank': '2', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '32', '247stateRank': '2'}, {'school': 'alabama', 'year': '2019', 'playerName': 'DJ Dale', 'highSchool': 'Clay-Chalkville', 'city': 'Pinson', 'state': 'AL', 'position': 'DT', 'height': 75.0, 'weight': '323', 'compRating': '0.9076', 'compStars': 4, 'nationalRank': '254', 'positionRank': '18', 'stateRank': '9', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '239', '247positionRank': '18', '247stateRank': '11'}, {'school': 'alabama', 'year': '2019', 'playerName': 'John Metchie', 'highSchool': 'The Peddie School', 'city': 'Hightstown', 'state': 'NJ', 'position': 'WR', 'height': 72.0, 'weight': '195', 'compRating': '0.9043', 'compStars': 4, 'nationalRank': '275', 'positionRank': '40', 'stateRank': '6', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '42', '247stateRank': '5'}, {'school': 'alabama', 'year': '2019', 'playerName': 'Tanner Bowles', 'highSchool': 'Glasgow', 'city': 'Glasgow', 'state': 'KY', 'position': 'OG', 'height': 77.0, 'weight': '280', 'compRating': '0.9025', 'compStars': 4, 'nationalRank': '290', 'positionRank': '19', 'stateRank': '6', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '186', '247positionRank': '10', '247stateRank': '6'}, {'school': 'alabama', 'year': '2019', 'playerName': 'Jahleel Billingsley', 'highSchool': 'Phillips Academy', 'city': 'Chicago', 'state': 'IL', 'position': 'TE', 'height': 76.0, 'weight': '216', 'compRating': '0.8998', 'compStars': 4, 'nationalRank': '308', 'positionRank': '11', 'stateRank': '3', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '15', '247stateRank': '6'}, {'school': 'alabama', 'year': '2019', 'playerName': 'Paul Tyson', 'highSchool': 'Hewitt-Trussville', 'city': 'Trussville', 'state': 'AL', 'position': 'PRO', 'height': 76.5, 'weight': '217', 'compRating': '0.8972', 'compStars': 4, 'nationalRank': '321', 'positionRank': '12', 'stateRank': '12', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '9', '247stateRank': '17'}, {'school': 'alabama', 'year': '2019', 'playerName': 'Will Reichard', 'highSchool': 'Hoover', 'city': 'Hoover', 'state': 'AL', 'position': 'K', 'height': 73.0, 'weight': '185', 'compRating': '0.8414', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '1', 'stateRank': '49', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '2', '247stateRank': '68'}, {'school': 'vanderbilt', 'year': '2019', 'playerName': 'Anfernee Orji', 'highSchool': 'Rockwall', 'city': 'Rockwall', 'state': 'TX', 'position': 'S', 'height': 73.0, 'weight': '200', 'compRating': '0.8837', 'compStars': 3, 'nationalRank': '468', 'positionRank': '38', 'stateRank': '59', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '51', '247stateRank': '84'}, {'school': 'vanderbilt', 'year': '2019', 'playerName': 'Dontye Carriere-Williams', 'highSchool': 'Independence C.C.', 'city': 'Independence', 'state': 'KS', 'position': 'CB', 'height': 71.0, 'weight': '185', 'compRating': '0.8701', 'compStars': 3, 'nationalRank': '40', 'positionRank': '5', 'stateRank': '13', '247Rating': ' 87 ', '247Stars': 3, '247nationalRank': '48', '247positionRank': '5', '247stateRank': '11'}, {'school': 'vanderbilt', 'year': '2019', 'playerName': 'Daevion Davis', 'highSchool': 'James Clemens', 'city': 'Madison', 'state': 'AL', 'position': 'DT', 'height': 73.0, 'weight': '315', 'compRating': '0.8688', 'compStars': 3, 'nationalRank': '696', 'positionRank': '56', 'stateRank': '25', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '63', '247stateRank': '32'}, {'school': 'vanderbilt', 'year': '2019', 'playerName': 'Justin Harris', 'highSchool': 'Etowah', 'city': 'Attalla', 'state': 'AL', 'position': 'S', 'height': 74.0, 'weight': '175', 'compRating': '0.8605', 'compStars': 3, 'nationalRank': '865', 'positionRank': '70', 'stateRank': '33', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '65', '247stateRank': '29'}, {'school': 'vanderbilt', 'year': '2019', 'playerName': 'Devin Boddie', 'highSchool': 'Whitehaven', 'city': 'Memphis', 'state': 'TN', 'position': 'ATH', 'height': 71.0, 'weight': '165', 'compRating': '0.8593', 'compStars': 3, 'nationalRank': '892', 'positionRank': '61', 'stateRank': '27', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '70', '247stateRank': '28'}, {'school': 'vanderbilt', 'year': '2019', 'playerName': 'Jayden Harrison', 'highSchool': 'Pearl-Cohn', 'city': 'Nashville', 'state': 'TN', 'position': 'WR', 'height': 70.0, 'weight': '187', 'compRating': '0.8573', 'compStars': 3, 'nationalRank': '930', 'positionRank': '110', 'stateRank': '28', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '92', '247stateRank': '23'}, {'school': 'vanderbilt', 'year': '2019', 'playerName': 'Keyon Brooks', 'highSchool': 'Kennesaw Mountain', 'city': 'Acworth', 'state': 'GA', 'position': 'RB', 'height': 73.0, 'weight': '195', 'compRating': '0.8552', 'compStars': 3, 'nationalRank': '982', 'positionRank': '61', 'stateRank': '99', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '43', '247stateRank': '60'}, {'school': 'vanderbilt', 'year': '2019', 'playerName': 'Brayden Bapst', 'highSchool': "St. John's", 'city': 'Washington', 'state': 'DC', 'position': 'OT', 'height': 80.0, 'weight': '246', 'compRating': '0.8552', 'compStars': 3, 'nationalRank': '985', 'positionRank': '82', 'stateRank': '8', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '58', '247stateRank': '6'}, {'school': 'vanderbilt', 'year': '2019', 'playerName': 'Christian James', 'highSchool': 'Christian Brothers', 'city': 'Memphis', 'state': 'TN', 'position': 'WDE', 'height': 76.0, 'weight': '245', 'compRating': '0.8540', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '63', 'stateRank': '29', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '53', '247stateRank': '26'}, {'school': 'vanderbilt', 'year': '2019', 'playerName': 'Jamil Muhammad', 'highSchool': 'James Clemens', 'city': 'Madison', 'state': 'AL', 'position': 'ATH', 'height': 73.0, 'weight': '217', 'compRating': '0.8526', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '80', 'stateRank': '40', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '116', '247stateRank': '54'}, {'school': 'vanderbilt', 'year': '2019', 'playerName': 'Joel DeCoursey', 'highSchool': 'Zionsville', 'city': 'Zionsville', 'state': 'IN', 'position': 'TE', 'height': 77.0, 'weight': '220', 'compRating': '0.8505', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '52', 'stateRank': '14', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '58', '247stateRank': '14'}, {'school': 'vanderbilt', 'year': '2019', 'playerName': 'Jaylen Mahoney', 'highSchool': 'South Pointe', 'city': 'Rock Hill', 'state': 'SC', 'position': 'CB', 'height': 71.0, 'weight': '180', 'compRating': '0.8397', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '141', 'stateRank': '27', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '160', '247stateRank': '32'}, {'school': 'vanderbilt', 'year': '2019', 'playerName': 'Donald Fitzgerald', 'highSchool': 'Hillsboro', 'city': 'Nashville', 'state': 'TN', 'position': 'OT', 'height': 80.0, 'weight': '280', 'compRating': '0.8384', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '119', 'stateRank': '41', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '159', '247stateRank': '55'}, {'school': 'vanderbilt', 'year': '2019', 'playerName': 'Julian Hernandez', 'highSchool': 'St. Thomas Aquinas', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'OG', 'height': 74.5, 'weight': '294', 'compRating': '0.8369', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '78', 'stateRank': '199', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '58', '247stateRank': '151'}, {'school': 'vanderbilt', 'year': '2019', 'playerName': 'Lashawn Paulino-Bell', 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'WDE', 'height': 76.0, 'weight': '235', 'compRating': '0.8317', 'compStars': 3, 'nationalRank': '157', 'positionRank': '13', 'stateRank': '27', '247Rating': ' 83 ', '247Stars': 3, '247nationalRank': '168', '247positionRank': '13', '247stateRank': '29'}, {'school': 'vanderbilt', 'year': '2019', 'playerName': 'Nate Clifton', 'highSchool': 'Brentwood Academy', 'city': 'Brentwood', 'state': 'TN', 'position': 'OT', 'height': 77.0, 'weight': '250', 'compRating': '0.8307', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '142', 'stateRank': '49', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '89', '247stateRank': '34'}, {'school': 'vanderbilt', 'year': '2019', 'playerName': 'JR Tran-Reno', 'highSchool': 'Briarwood Christian', 'city': 'Birmingham', 'state': 'AL', 'position': 'ATH', 'height': 73.0, 'weight': '205', 'compRating': '0.8276', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '149', 'stateRank': '64', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '184', '247stateRank': '72'}, {'school': 'vanderbilt', 'year': '2019', 'playerName': 'Justin Ball', 'highSchool': 'Gonzaga', 'city': 'Washington', 'state': 'DC', 'position': 'TE', 'height': 78.0, 'weight': '230', 'compRating': '0.8248', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '77', 'stateRank': '13', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '76', '247stateRank': '13'}, {'school': 'vanderbilt', 'year': '2019', 'playerName': 'Gabriel Jeudy', 'highSchool': 'Ardrey Kell', 'city': 'Charlotte', 'state': 'NC', 'position': 'CB', 'height': 73.0, 'weight': '172', 'compRating': '0.8221', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '185', 'stateRank': '82', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '251', '247stateRank': '98'}, {'school': 'vanderbilt', 'year': '2019', 'playerName': 'Brandon Maddox', 'highSchool': 'Pima C.C.', 'city': 'Tucson', 'state': 'AZ', 'position': 'DT', 'height': 76.0, 'weight': '270', 'compRating': '0.8216', 'compStars': 3, 'nationalRank': '206', 'positionRank': '24', 'stateRank': '25', '247Rating': ' 81 ', '247Stars': 3, '247nationalRank': '241', '247positionRank': '25', '247stateRank': '22'}, {'school': 'vanderbilt', 'year': '2019', 'playerName': 'Jared Wheatley', 'highSchool': 'Porter Ridge', 'city': 'Indian Trail', 'state': 'NC', 'position': 'P', 'height': 74.0, 'weight': '195', 'compRating': '0.7831', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '19', 'stateRank': '117', '247Rating': ' 74 ', '247Stars': 2, '247positionRank': '21', '247stateRank': '127'}, {'school': 'missouri', 'year': '2003', 'playerName': 'Damien Nash', 'highSchool': 'Coffeyville C.C.', 'city': 'Coffeyville', 'state': 'KS', 'position': 'APB', 'height': 71.0, 'weight': '205', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '19', 'positionRank': '2', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2003', 'playerName': 'Josh Barbo', 'highSchool': 'Conway Springs', 'city': 'Conway Springs', 'state': 'KS', 'position': 'TE', 'height': 78.0, 'weight': '252', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '199', 'positionRank': '11', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2003', 'playerName': 'Tyler Luellen', 'highSchool': 'South Harrison', 'city': 'Bethany', 'state': 'MO', 'position': 'OT', 'height': 79.0, 'weight': '275', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '204', 'positionRank': '18', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2003', 'playerName': 'Darnell Terrell', 'highSchool': 'Eureka', 'city': 'Eureka', 'state': 'MO', 'position': 'CB', 'height': 75.0, 'weight': '200', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '249', 'positionRank': '17', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2003', 'playerName': 'Victor Sesay', 'highSchool': 'Ventura', 'city': 'Ventura', 'state': 'CA', 'position': 'TE', 'height': 79.0, 'weight': '260', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '268', 'positionRank': '12', 'stateRank': '41', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2003', 'playerName': 'Xzavie Jackson', 'highSchool': 'Heights', 'city': 'Wichita', 'state': 'KS', 'position': 'TE', 'height': 76.0, 'weight': '230', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '342', 'positionRank': '17', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2003', 'playerName': 'Gartrell Cooper', 'highSchool': 'Lamar', 'city': 'Arlington', 'state': 'TX', 'position': 'SDE', 'height': 77.0, 'weight': '220', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '345', 'positionRank': '19', 'stateRank': '52', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2003', 'playerName': 'Martin Rucker', 'highSchool': 'Benton', 'city': 'Saint Joseph', 'state': 'MO', 'position': 'TE', 'height': 77.0, 'weight': '205', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '353', 'positionRank': '18', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2003', 'playerName': 'Greg Bracey', 'highSchool': 'Vincent', 'city': 'Milwaukee', 'state': 'WI', 'position': 'WR', 'height': 75.0, 'weight': '190', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '357', 'positionRank': '30', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2003', 'playerName': 'Zane Tomlin', 'highSchool': 'Clark', 'city': 'San Antonio', 'state': 'TX', 'position': 'DT', 'height': 76.0, 'weight': '276', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '513', 'positionRank': '36', 'stateRank': '84', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2003', 'playerName': 'Nino Williams', 'highSchool': 'Tyler J.C.', 'city': 'Tyler', 'state': 'TX', 'position': 'S', 'height': 74.0, 'weight': '190', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '108', 'positionRank': '9', 'stateRank': '4'}, {'school': 'missouri', 'year': '2003', 'playerName': 'Jason Ray', 'highSchool': 'Broken Arrow', 'city': 'Broken Arrow', 'state': 'OK', 'position': 'WR', 'height': 74.0, 'weight': '190', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '687', 'positionRank': '69', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2003', 'playerName': 'Marty Raab', 'highSchool': 'Eureka', 'city': 'Eureka', 'state': 'MO', 'position': 'OG', 'height': 78.0, 'weight': '280', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '689', 'positionRank': '53', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2003', 'playerName': 'Lorenzo Williams', 'highSchool': 'Midwest City', 'city': 'Oklahoma City', 'state': 'OK', 'position': 'ILB', 'height': 74.0, 'weight': '235', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '728', 'positionRank': '50', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2003', 'playerName': 'Emmanuel Phillips', 'highSchool': 'Cy Springs', 'city': 'Cypress', 'state': 'TX', 'position': 'WDE', 'height': 77.0, 'weight': '250', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '812', 'positionRank': '32', 'stateRank': '130', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2003', 'playerName': 'Marcus Woods', 'highSchool': 'Harrison', 'city': 'Farmington', 'state': 'MI', 'position': 'APB', 'height': 68.0, 'weight': '180', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '826', 'positionRank': '16', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2003', 'playerName': 'Adam Spieker', 'highSchool': 'Webb City', 'city': 'Webb City', 'state': 'MO', 'position': 'OG', 'height': 75.0, 'weight': '275', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '845', 'positionRank': '66', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2003', 'playerName': 'M.J. Norman', 'highSchool': 'Eureka', 'city': 'Eureka', 'state': 'MO', 'position': 'OT', 'height': 77.0, 'weight': '280', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '884', 'positionRank': '66', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2003', 'playerName': 'Brad Ekwerekwu', 'highSchool': 'Arlington', 'city': 'Arlington', 'state': 'TX', 'position': 'S', 'height': 75.0, 'weight': '190', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '963', 'positionRank': '65', 'stateRank': '139', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2003', 'playerName': 'Alex Woodley', 'highSchool': 'Mesquite', 'city': 'Mesquite', 'state': 'TX', 'position': 'RB', 'height': 71.0, 'weight': '185', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '56', 'stateRank': '159', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2003', 'playerName': 'Phinney Troy', 'highSchool': 'St. Louis University', 'city': 'Saint Louis', 'state': 'MO', 'position': 'DT', 'height': 77.0, 'weight': '245', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '119', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2003', 'playerName': 'Monte Wyrick', 'highSchool': 'Arkansas', 'city': 'Texarkana', 'state': 'AR', 'position': 'OT', 'height': 77.0, 'weight': '308', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '200', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2003', 'playerName': 'Lareno Seymour', 'highSchool': 'Hazelwood East', 'city': 'Saint Louis', 'state': 'MO', 'position': 'CB', 'height': 72.0, 'weight': '180', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '164', 'stateRank': '28', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2019', 'playerName': 'Kenyon Green', 'highSchool': 'Atascocita', 'city': 'Humble', 'state': 'TX', 'position': 'OT', 'height': 76.5, 'weight': '322', 'compRating': '0.9926', 'compStars': 5, 'nationalRank': '15', 'positionRank': '3', 'stateRank': '1', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '34', '247positionRank': '5', '247stateRank': '7'}, {'school': 'texas-am', 'year': '2019', 'playerName': 'DeMarvin Leal', 'highSchool': 'Judson', 'city': 'Converse', 'state': 'TX', 'position': 'DT', 'height': 76.0, 'weight': '289', 'compRating': '0.9920', 'compStars': 5, 'nationalRank': '16', 'positionRank': '2', 'stateRank': '2', '247Rating': ' 100 ', '247Stars': 5, '247nationalRank': '3', '247positionRank': '1', '247stateRank': '1'}, {'school': 'texas-am', 'year': '2019', 'playerName': 'Baylor Cupp', 'highSchool': 'Brock', 'city': 'Brock', 'state': 'TX', 'position': 'TE', 'height': 78.0, 'weight': '240', 'compRating': '0.9731', 'compStars': 4, 'nationalRank': '53', 'positionRank': '1', 'stateRank': '8', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '16', '247positionRank': '1', '247stateRank': '2'}, {'school': 'texas-am', 'year': '2019', 'playerName': 'Dylan Wright', 'highSchool': 'West Mesquite', 'city': 'Mesquite', 'state': 'TX', 'position': 'WR', 'height': 76.0, 'weight': '215', 'compRating': '0.9678', 'compStars': 4, 'nationalRank': '70', 'positionRank': '12', 'stateRank': '11', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '75', '247positionRank': '10', '247stateRank': '11'}, {'school': 'texas-am', 'year': '2019', 'playerName': 'Brian Williams', 'highSchool': 'Bishop Dunne', 'city': 'Dallas', 'state': 'TX', 'position': 'S', 'height': 73.0, 'weight': '211', 'compRating': '0.9677', 'compStars': 4, 'nationalRank': '72', 'positionRank': '6', 'stateRank': '12', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '126', '247positionRank': '11', '247stateRank': '19'}, {'school': 'texas-am', 'year': '2019', 'playerName': 'Demani Richardson', 'highSchool': 'Waxahachie', 'city': 'Waxahachie', 'state': 'TX', 'position': 'S', 'height': 73.0, 'weight': '209', 'compRating': '0.9629', 'compStars': 4, 'nationalRank': '80', 'positionRank': '7', 'stateRank': '13', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '56', '247positionRank': '6', '247stateRank': '9'}, {'school': 'texas-am', 'year': '2019', 'playerName': 'Erick Young', 'highSchool': 'Fort Bend Bush', 'city': 'Richmond', 'state': 'TX', 'position': 'CB', 'height': 72.0, 'weight': '208', 'compRating': '0.9576', 'compStars': 4, 'nationalRank': '96', 'positionRank': '10', 'stateRank': '16', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '207', '247positionRank': '19', '247stateRank': '24'}, {'school': 'texas-am', 'year': '2019', 'playerName': 'Isaiah Spiller', 'highSchool': 'Klein Collins', 'city': 'Spring', 'state': 'TX', 'position': 'RB', 'height': 72.5, 'weight': '201', 'compRating': '0.9351', 'compStars': 4, 'nationalRank': '152', 'positionRank': '9', 'stateRank': '23', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '232', '247positionRank': '12', '247stateRank': '27'}, {'school': 'texas-am', 'year': '2019', 'playerName': 'Kam Brown', 'highSchool': 'Colleyville Heritage', 'city': 'Colleyville', 'state': 'TX', 'position': 'WR', 'height': 72.0, 'weight': '170', 'compRating': '0.9182', 'compStars': 4, 'nationalRank': '203', 'positionRank': '29', 'stateRank': '26', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '52', '247stateRank': '44'}, {'school': 'texas-am', 'year': '2019', 'playerName': 'Elijah Blades', 'highSchool': 'Arizona Western College', 'city': 'Yuma', 'state': 'AZ', 'position': 'CB', 'height': 74.0, 'weight': '170', 'compRating': '0.9128', 'compStars': 4, 'nationalRank': '4', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '5', '247positionRank': '1', '247stateRank': '1'}, {'school': 'texas-am', 'year': '2019', 'playerName': 'Braedon Mowry', 'highSchool': 'Taylor', 'city': 'Katy', 'state': 'TX', 'position': 'WDE', 'height': 76.0, 'weight': '240', 'compRating': '0.9115', 'compStars': 4, 'nationalRank': '234', 'positionRank': '14', 'stateRank': '28', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '25', '247stateRank': '46'}, {'school': 'texas-am', 'year': '2019', 'playerName': 'Andre White Jr.', 'highSchool': 'Harrisburg', 'city': 'Harrisburg', 'state': 'PA', 'position': 'ILB', 'height': 75.0, 'weight': '217', 'compRating': '0.8990', 'compStars': 4, 'nationalRank': '312', 'positionRank': '18', 'stateRank': '3', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '221', '247positionRank': '14', '247stateRank': '3'}, {'school': 'texas-am', 'year': '2019', 'playerName': 'Derick Hunter', 'highSchool': 'Dunbar', 'city': 'Fort Myers', 'state': 'FL', 'position': 'SDE', 'height': 76.0, 'weight': '285', 'compRating': '0.8974', 'compStars': 4, 'nationalRank': '320', 'positionRank': '21', 'stateRank': '41', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '25', '247stateRank': '33'}, {'school': 'texas-am', 'year': '2019', 'playerName': "Ke'Shun Brown", 'highSchool': 'Carver', 'city': 'Montgomery', 'state': 'AL', 'position': 'ILB', 'height': 73.0, 'weight': '223', 'compRating': '0.8927', 'compStars': 4, 'nationalRank': '355', 'positionRank': '22', 'stateRank': '14', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '22', '247stateRank': '12'}, {'school': 'texas-am', 'year': '2019', 'playerName': 'Jalen Wydermyer', 'highSchool': 'Dickinson', 'city': 'Dickinson', 'state': 'TX', 'position': 'TE', 'height': 77.0, 'weight': '240', 'compRating': '0.8925', 'compStars': 4, 'nationalRank': '359', 'positionRank': '15', 'stateRank': '45', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '19', '247stateRank': '53'}, {'school': 'texas-am', 'year': '2019', 'playerName': 'Kenyon Jackson', 'highSchool': 'Grayson', 'city': 'Loganville', 'state': 'GA', 'position': 'WR', 'height': 77.5, 'weight': '195', 'compRating': '0.8875', 'compStars': 3, 'nationalRank': '420', 'positionRank': '51', 'stateRank': '44', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '110', '247stateRank': '83'}, {'school': 'texas-am', 'year': '2019', 'playerName': 'Layden Robinson', 'highSchool': 'Manvel', 'city': 'Manvel', 'state': 'TX', 'position': 'OC', 'height': 76.0, 'weight': '324', 'compRating': '0.8850', 'compStars': 3, 'nationalRank': '453', 'positionRank': '5', 'stateRank': '55', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '6', '247stateRank': '57'}, {'school': 'texas-am', 'year': '2019', 'playerName': 'Zach Calzada', 'highSchool': 'Lanier', 'city': 'Buford', 'state': 'GA', 'position': 'PRO', 'height': 75.0, 'weight': '195', 'compRating': '0.8817', 'compStars': 3, 'nationalRank': '487', 'positionRank': '20', 'stateRank': '48', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '17', '247stateRank': '46'}, {'school': 'texas-am', 'year': '2019', 'playerName': 'Adarious Jones', 'highSchool': 'Catholic', 'city': 'Virginia Beach', 'state': 'VA', 'position': 'DT', 'height': 76.0, 'weight': '285', 'compRating': '0.8816', 'compStars': 3, 'nationalRank': '499', 'positionRank': '35', 'stateRank': '12', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '57', '247stateRank': '16'}, {'school': 'texas-am', 'year': '2019', 'playerName': 'Chase Lane', 'highSchool': 'St Pius X', 'city': 'Houston', 'state': 'TX', 'position': 'WR', 'height': 72.0, 'weight': '185', 'compRating': '0.8785', 'compStars': 3, 'nationalRank': '535', 'positionRank': '63', 'stateRank': '67', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '126', '247stateRank': '141'}, {'school': 'texas-am', 'year': '2019', 'playerName': 'Tarian Lee Jr.', 'highSchool': 'Amos P. Godby', 'city': 'Tallahassee', 'state': 'FL', 'position': 'OLB', 'height': 74.0, 'weight': '216', 'compRating': '0.8669', 'compStars': 3, 'nationalRank': '736', 'positionRank': '51', 'stateRank': '93', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '44', '247stateRank': '65'}, {'school': 'texas-am', 'year': '2019', 'playerName': 'Ainias Smith', 'highSchool': 'Dulles', 'city': 'Sugar Land', 'state': 'TX', 'position': 'ATH', 'height': 70.0, 'weight': '187', 'compRating': '0.8647', 'compStars': 3, 'nationalRank': '783', 'positionRank': '48', 'stateRank': '98', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '38', '247stateRank': '68'}, {'school': 'texas-am', 'year': '2019', 'playerName': 'Blake Trainor', 'highSchool': 'Hallsville', 'city': 'Hallsville', 'state': 'TX', 'position': 'OT', 'height': 79.0, 'weight': '315', 'compRating': '0.8642', 'compStars': 3, 'nationalRank': '799', 'positionRank': '64', 'stateRank': '102', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '106', '247stateRank': '165'}, {'school': 'texas-am', 'year': '2019', 'playerName': 'Chris Russell', 'highSchool': 'Dyersburg', 'city': 'Dyersburg', 'state': 'TN', 'position': 'ILB', 'height': 73.0, 'weight': '228', 'compRating': '0.8593', 'compStars': 3, 'nationalRank': '891', 'positionRank': '39', 'stateRank': '26', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '39', '247stateRank': '27'}, {'school': 'texas-am', 'year': '2019', 'playerName': 'RJ Orebo', 'highSchool': 'Dayton', 'city': 'Dayton', 'state': 'TX', 'position': 'OLB', 'height': 78.0, 'weight': '248', 'compRating': '0.8473', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '82', 'stateRank': '154', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '94', '247stateRank': '169'}, {'school': 'texas-am', 'year': '2019', 'playerName': 'Caden Davis', 'highSchool': 'Coppell', 'city': 'Coppell', 'state': 'TX', 'position': 'K', 'height': 74.0, 'weight': '186', 'compRating': '0.8317', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '2', 'stateRank': '214', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '4', '247stateRank': '291'}, {'school': 'texas-am', 'year': '2019', 'playerName': 'Nik Constantinou', 'highSchool': 'ProKick Australia', 'city': 'Australia', 'state': 'AUST', 'position': 'P', 'height': 72.0, 'weight': '190', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2019', 'playerName': 'Darnell Wright', 'highSchool': 'Huntington', 'city': 'Huntington', 'state': 'WV', 'position': 'OT', 'height': 78.0, 'weight': '320', 'compRating': '0.9944', 'compStars': 5, 'nationalRank': '10', 'positionRank': '2', 'stateRank': '1', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '25', '247positionRank': '3', '247stateRank': '1'}, {'school': 'tennessee', 'year': '2019', 'playerName': 'Wanya Morris', 'highSchool': 'Grayson', 'city': 'Loganville', 'state': 'GA', 'position': 'OT', 'height': 78.0, 'weight': '312', 'compRating': '0.9871', 'compStars': 5, 'nationalRank': '28', 'positionRank': '6', 'stateRank': '5', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '51', '247positionRank': '6', '247stateRank': '9'}, {'school': 'tennessee', 'year': '2019', 'playerName': "Henry To'o To'o", 'highSchool': 'De La Salle', 'city': 'Concord', 'state': 'CA', 'position': 'OLB', 'height': 74.0, 'weight': '230', 'compRating': '0.9779', 'compStars': 4, 'nationalRank': '44', 'positionRank': '3', 'stateRank': '7', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '46', '247positionRank': '4', '247stateRank': '8'}, {'school': 'tennessee', 'year': '2019', 'playerName': 'Quavaris Crouch', 'highSchool': 'Harding University High', 'city': 'Charlotte', 'state': 'NC', 'position': 'ATH', 'height': 72.5, 'weight': '237', 'compRating': '0.9699', 'compStars': 4, 'nationalRank': '61', 'positionRank': '3', 'stateRank': '1', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '123', '247positionRank': '5', '247stateRank': '2'}, {'school': 'tennessee', 'year': '2019', 'playerName': 'Ramel Keyton', 'highSchool': 'Marietta', 'city': 'Marietta', 'state': 'GA', 'position': 'WR', 'height': 75.0, 'weight': '185', 'compRating': '0.9503', 'compStars': 4, 'nationalRank': '111', 'positionRank': '17', 'stateRank': '13', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '115', '247positionRank': '19', '247stateRank': '13'}, {'school': 'tennessee', 'year': '2019', 'playerName': 'Jaylen McCollough', 'highSchool': 'Hillgrove', 'city': 'Powder Springs', 'state': 'GA', 'position': 'S', 'height': 72.0, 'weight': '194', 'compRating': '0.9331', 'compStars': 4, 'nationalRank': '156', 'positionRank': '14', 'stateRank': '20', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '163', '247positionRank': '15', '247stateRank': '19'}, {'school': 'tennessee', 'year': '2019', 'playerName': 'Eric Gray', 'highSchool': 'Lausanne Collegiate School', 'city': 'Memphis', 'state': 'TN', 'position': 'APB', 'height': 69.5, 'weight': '194', 'compRating': '0.9244', 'compStars': 4, 'nationalRank': '184', 'positionRank': '3', 'stateRank': '5', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '99', '247positionRank': '2', '247stateRank': '2'}, {'school': 'tennessee', 'year': '2019', 'playerName': 'Tyus Fields', 'highSchool': 'William Amos Hough', 'city': 'Cornelius', 'state': 'NC', 'position': 'CB', 'height': 70.0, 'weight': '191', 'compRating': '0.9131', 'compStars': 4, 'nationalRank': '226', 'positionRank': '26', 'stateRank': '7', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '241', '247positionRank': '25', '247stateRank': '9'}, {'school': 'tennessee', 'year': '2019', 'playerName': 'Jackson Lampley', 'highSchool': 'Montgomery Bell Academy', 'city': 'Nashville', 'state': 'TN', 'position': 'OG', 'height': 76.0, 'weight': '300', 'compRating': '0.9124', 'compStars': 4, 'nationalRank': '232', 'positionRank': '14', 'stateRank': '8', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '18', '247stateRank': '7'}, {'school': 'tennessee', 'year': '2019', 'playerName': 'Roman Harrison', 'highSchool': 'Bainbridge', 'city': 'Bainbridge', 'state': 'GA', 'position': 'WDE', 'height': 74.0, 'weight': '235', 'compRating': '0.8996', 'compStars': 4, 'nationalRank': '309', 'positionRank': '18', 'stateRank': '32', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '175', '247positionRank': '12', '247stateRank': '20'}, {'school': 'tennessee', 'year': '2019', 'playerName': 'Jackson Lowe', 'highSchool': 'Cartersville', 'city': 'Cartersville', 'state': 'GA', 'position': 'TE', 'height': 77.0, 'weight': '235', 'compRating': '0.8947', 'compStars': 4, 'nationalRank': '341', 'positionRank': '12', 'stateRank': '37', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '25', '247stateRank': '49'}, {'school': 'tennessee', 'year': '2019', 'playerName': 'Savion Williams', 'highSchool': 'Lackawanna C.C.', 'city': 'Scranton', 'state': 'PA', 'position': 'DT', 'height': 76.0, 'weight': '288', 'compRating': '0.8913', 'compStars': 4, 'nationalRank': '14', 'positionRank': '1', 'stateRank': '3', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '21', '247positionRank': '1', '247stateRank': '3'}, {'school': 'tennessee', 'year': '2019', 'playerName': 'Melvin McBride', 'highSchool': 'Whitehaven', 'city': 'Memphis', 'state': 'TN', 'position': 'OG', 'height': 75.0, 'weight': '312', 'compRating': '0.8830', 'compStars': 3, 'nationalRank': '475', 'positionRank': '26', 'stateRank': '16', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '29', '247stateRank': '9'}, {'school': 'tennessee', 'year': '2019', 'playerName': 'Brian Maurer', 'highSchool': 'West Port', 'city': 'Ocala', 'state': 'FL', 'position': 'PRO', 'height': 75.0, 'weight': '199', 'compRating': '0.8817', 'compStars': 3, 'nationalRank': '482', 'positionRank': '19', 'stateRank': '58', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '12', '247stateRank': '49'}, {'school': 'tennessee', 'year': '2019', 'playerName': 'Aaron Beasley', 'highSchool': 'Heard County', 'city': 'Franklin', 'state': 'GA', 'position': 'ATH', 'height': 73.0, 'weight': '210', 'compRating': '0.8796', 'compStars': 3, 'nationalRank': '525', 'positionRank': '30', 'stateRank': '56', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '36', '247stateRank': '56'}, {'school': 'tennessee', 'year': '2019', 'playerName': 'Warren Burrell', 'highSchool': 'North Gwinnett', 'city': 'Suwanee', 'state': 'GA', 'position': 'CB', 'height': 72.0, 'weight': '175', 'compRating': '0.8795', 'compStars': 3, 'nationalRank': '527', 'positionRank': '51', 'stateRank': '57', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '66', '247stateRank': '70'}, {'school': 'tennessee', 'year': '2019', 'playerName': 'Elijah Simmons', 'highSchool': 'Pearl-Cohn', 'city': 'Nashville', 'state': 'TN', 'position': 'DT', 'height': 73.0, 'weight': '335', 'compRating': '0.8734', 'compStars': 3, 'nationalRank': '613', 'positionRank': '47', 'stateRank': '21', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '41', '247stateRank': '16'}, {'school': 'tennessee', 'year': '2019', 'playerName': 'Darel Middleton', 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'DT', 'height': 78.0, 'weight': '285', 'compRating': '0.8702', 'compStars': 3, 'nationalRank': '39', 'positionRank': '4', 'stateRank': '6', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '27', '247positionRank': '3', '247stateRank': '4'}, {'school': 'tennessee', 'year': '2019', 'playerName': 'Sean Brown', 'highSchool': 'Coosa', 'city': 'Rome', 'state': 'GA', 'position': 'TE', 'height': 77.0, 'weight': '250', 'compRating': '0.8635', 'compStars': 3, 'nationalRank': '809', 'positionRank': '40', 'stateRank': '83', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '45', '247stateRank': '79'}, {'school': 'tennessee', 'year': '2019', 'playerName': 'Chris Akporoghene', 'highSchool': 'IMG Academy', 'city': 'Bradenton', 'state': 'FL', 'position': 'OT', 'height': 76.0, 'weight': '294', 'compRating': '0.8602', 'compStars': 3, 'nationalRank': '867', 'positionRank': '69', 'stateRank': '117', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '184', '247stateRank': '290'}, {'school': 'tennessee', 'year': '2019', 'playerName': 'Kenney Solomon', 'highSchool': 'Socastee Hi', 'city': 'Myrtle Beach', 'state': 'SC', 'position': 'CB', 'height': 72.0, 'weight': '170', 'compRating': '0.8397', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '140', 'stateRank': '26', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '145', '247stateRank': '30'}, {'school': 'tennessee', 'year': '2019', 'playerName': 'Jerrod Means', 'highSchool': 'Lovejoy', 'city': 'Hampton', 'state': 'GA', 'position': 'WR', 'height': 74.0, 'weight': '212', 'compRating': '0.8221', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '223', 'stateRank': '185', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '331', '247stateRank': '213'}, {'school': 'ole-miss', 'year': '2011', 'playerName': 'Ethan Hutson', 'highSchool': 'Destrehan', 'city': 'Destrehan', 'state': 'LA', 'position': 'OC', 'height': 76.0, 'weight': '295', 'compRating': '0.8690', 'compStars': 3, 'nationalRank': '415', 'positionRank': '6', 'stateRank': '16', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '6', '247stateRank': '17'}, {'school': 'ole-miss', 'year': '2011', 'playerName': 'Philander Moore', 'highSchool': 'Blinn College', 'city': 'Brenham', 'state': 'TX', 'position': 'ATH', 'height': 70.0, 'weight': '180', 'compRating': '0.8200', 'compStars': 3, 'nationalRank': '70', 'positionRank': '4', 'stateRank': '8', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2011', 'playerName': 'C.J. Johnson', 'highSchool': 'Philadelphia', 'city': 'Philadelphia', 'state': 'MS', 'position': 'ILB', 'height': 75.0, 'weight': '220', 'compRating': '0.9609', 'compStars': 4, 'nationalRank': '79', 'positionRank': '5', 'stateRank': '1', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '34', '247positionRank': '3', '247stateRank': '1'}, {'school': 'ole-miss', 'year': '2011', 'playerName': 'Nickolas Brassell', 'highSchool': 'South Panola', 'city': 'Batesville', 'state': 'MS', 'position': 'WR', 'height': 72.0, 'weight': '169', 'compRating': '0.9579', 'compStars': 4, 'nationalRank': '89', 'positionRank': '11', 'stateRank': '2'}, {'school': 'ole-miss', 'year': '2011', 'playerName': 'Donte Moncrief', 'highSchool': 'Raleigh', 'city': 'Raleigh', 'state': 'MS', 'position': 'WR', 'height': 75.0, 'weight': '208', 'compRating': '0.9349', 'compStars': 4, 'nationalRank': '133', 'positionRank': '18', 'stateRank': '3', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '46', '247positionRank': '8', '247stateRank': '3'}, {'school': 'ole-miss', 'year': '2011', 'playerName': 'Tobias Singleton', 'highSchool': 'Madison Central', 'city': 'Madison', 'state': 'MS', 'position': 'WR', 'height': 72.0, 'weight': '190', 'compRating': '0.9282', 'compStars': 4, 'nationalRank': '154', 'positionRank': '21', 'stateRank': '4', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '52', '247stateRank': '15'}, {'school': 'ole-miss', 'year': '2011', 'playerName': 'Aaron Morris', 'highSchool': 'Callaway', 'city': 'Jackson', 'state': 'MS', 'position': 'OT', 'height': 77.0, 'weight': '318', 'compRating': '0.8900', 'compStars': 4, 'nationalRank': '283', 'positionRank': '28', 'stateRank': '8', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '24', '247stateRank': '7'}, {'school': 'ole-miss', 'year': '2011', 'playerName': 'Senquez Golson', 'highSchool': 'Pascagoula', 'city': 'Pascagoula', 'state': 'MS', 'position': 'CB', 'height': 70.0, 'weight': '180', 'compRating': '0.8876', 'compStars': 3, 'nationalRank': '295', 'positionRank': '24', 'stateRank': '9', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '24', '247stateRank': '6'}, {'school': 'ole-miss', 'year': '2011', 'playerName': 'Gilbert Pena', 'highSchool': 'ASA College', 'city': 'None', 'state': 'None', 'position': 'DT', 'height': 76.0, 'weight': '310', 'compRating': '0.8737', 'compStars': 3, 'nationalRank': '25', 'positionRank': '8', 'stateRank': '1', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2011', 'playerName': 'Cody Prewitt', 'highSchool': 'Sylva Bay Academy Inc', 'city': 'Bay Springs', 'state': 'MS', 'position': 'ATH', 'height': 75.0, 'weight': '205', 'compRating': '0.8730', 'compStars': 3, 'nationalRank': '386', 'positionRank': '25', 'stateRank': '12', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '25', '247stateRank': '12'}, {'school': 'ole-miss', 'year': '2011', 'playerName': 'Collins Moore', 'highSchool': 'Bob Jones', 'city': 'Madison', 'state': 'AL', 'position': 'WR', 'height': 74.0, 'weight': '185', 'compRating': '0.8618', 'compStars': 3, 'nationalRank': '509', 'positionRank': '65', 'stateRank': '15', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '51', '247stateRank': '12'}, {'school': 'ole-miss', 'year': '2011', 'playerName': 'Marcus Mayers', 'highSchool': 'Taylorsville', 'city': 'Taylorsville', 'state': 'MS', 'position': 'OLB', 'height': 72.0, 'weight': '220', 'compRating': '0.8565', 'compStars': 3, 'nationalRank': '617', 'positionRank': '49', 'stateRank': '17'}, {'school': 'ole-miss', 'year': '2011', 'playerName': 'Denzel Nkemdiche', 'highSchool': 'Grayson', 'city': 'Loganville', 'state': 'GA', 'position': 'S', 'height': 71.0, 'weight': '200', 'compRating': '0.8563', 'compStars': 3, 'nationalRank': '621', 'positionRank': '43', 'stateRank': '47', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2011', 'playerName': 'Kameron Wood', 'highSchool': 'John Carroll Catholic', 'city': 'Birmingham', 'state': 'AL', 'position': 'WDE', 'height': 76.0, 'weight': '220', 'compRating': '0.8544', 'compStars': 3, 'nationalRank': '645', 'positionRank': '29', 'stateRank': '22', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '24', '247stateRank': '16'}, {'school': 'ole-miss', 'year': '2011', 'playerName': 'Jamal Mosley', 'highSchool': 'Northwest Mississippi C.C.', 'city': 'Senatobia', 'state': 'MS', 'position': 'TE', 'height': 76.0, 'weight': '255', 'compRating': '0.8537', 'compStars': 3, 'nationalRank': '37', 'positionRank': '2', 'stateRank': '6', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2011', 'playerName': 'Keith Lewis', 'highSchool': 'Freedom', 'city': 'Tampa', 'state': 'FL', 'position': 'OLB', 'height': 72.0, 'weight': '200', 'compRating': '0.8534', 'compStars': 3, 'nationalRank': '659', 'positionRank': '53', 'stateRank': '91', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '56', '247stateRank': '101'}, {'school': 'ole-miss', 'year': '2011', 'playerName': 'Mitch Hall', 'highSchool': 'Russellville', 'city': 'Russellville', 'state': 'AR', 'position': 'OG', 'height': 78.0, 'weight': '320', 'compRating': '0.8534', 'compStars': 3, 'nationalRank': '663', 'positionRank': '38', 'stateRank': '7', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '44', '247stateRank': '9'}, {'school': 'ole-miss', 'year': '2011', 'playerName': 'Woodrow Hamilton', 'highSchool': 'Raleigh', 'city': 'Raleigh', 'state': 'MS', 'position': 'DT', 'height': 75.0, 'weight': '270', 'compRating': '0.8528', 'compStars': 3, 'nationalRank': '670', 'positionRank': '53', 'stateRank': '18', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '47', '247stateRank': '18'}, {'school': 'ole-miss', 'year': '2011', 'playerName': 'Wesley Pendleton', 'highSchool': 'Copiah-Lincoln C.C.', 'city': 'Wesson', 'state': 'MS', 'position': 'CB', 'height': 70.0, 'weight': '175', 'compRating': '0.8496', 'compStars': 3, 'nationalRank': '43', 'positionRank': '4', 'stateRank': '7', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2011', 'playerName': 'Maikhail Miller', 'highSchool': 'Itawamba Agricultural', 'city': 'Fulton', 'state': 'MS', 'position': 'PRO', 'height': 74.0, 'weight': '225', 'compRating': '0.8475', 'compStars': 3, 'nationalRank': '768', 'positionRank': '28', 'stateRank': '19', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '36', '247stateRank': '29'}, {'school': 'ole-miss', 'year': '2011', 'playerName': 'T.J. Worthy', 'highSchool': 'Gadsden City', 'city': 'Gadsden', 'state': 'AL', 'position': 'WR', 'height': 74.0, 'weight': '180', 'compRating': '0.8472', 'compStars': 3, 'nationalRank': '772', 'positionRank': '91', 'stateRank': '25', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '83', '247stateRank': '25'}, {'school': 'ole-miss', 'year': '2011', 'playerName': 'Chelarvez Brown', 'highSchool': 'Winona Secondary School', 'city': 'Winona', 'state': 'MS', 'position': 'S', 'height': 73.0, 'weight': '185', 'compRating': '0.8462', 'compStars': 3, 'nationalRank': '806', 'positionRank': '60', 'stateRank': '21'}, {'school': 'ole-miss', 'year': '2011', 'playerName': 'Justin Bell', 'highSchool': 'Callaway', 'city': 'Jackson', 'state': 'MS', 'position': 'OG', 'height': 74.0, 'weight': '295', 'compRating': '0.8437', 'compStars': 3, 'nationalRank': '839', 'positionRank': '48', 'stateRank': '22', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '57', '247stateRank': '27'}, {'school': 'ole-miss', 'year': '2011', 'playerName': 'Serderius Bryant', 'highSchool': 'Seminole', 'city': 'Sanford', 'state': 'FL', 'position': 'ILB', 'height': 70.0, 'weight': '220', 'compRating': '0.8344', 'compStars': 3, 'nationalRank': '997', 'positionRank': '40', 'stateRank': '128', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '51', '247stateRank': '174'}, {'school': 'ole-miss', 'year': '2011', 'playerName': 'Zack Stoudt', 'highSchool': 'Iowa Western C.C.', 'city': 'Council Bluffs', 'state': 'IA', 'position': 'PRO', 'height': 77.0, 'weight': '220', 'compRating': '0.8307', 'compStars': 3, 'nationalRank': '56', 'positionRank': '3', 'stateRank': '3'}, {'school': 'ole-miss', 'year': '2011', 'playerName': 'Aaron Garbutt', 'highSchool': 'Fullerton College', 'city': 'Fullerton', 'state': 'CA', 'position': 'S', 'height': 74.0, 'weight': '215', 'compRating': '0.8307', 'compStars': 3, 'nationalRank': '57', 'positionRank': '4', 'stateRank': '24', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2008', 'playerName': 'Neiko Thorpe', 'highSchool': 'Tucker', 'city': 'Tucker', 'state': 'GA', 'position': 'S', 'height': 74.0, 'weight': '185', 'compRating': '0.9548', 'compStars': 4, 'nationalRank': '93', 'positionRank': '4', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2008', 'playerName': 'Raven Gray', 'highSchool': 'Copiah-Lincoln C.C.', 'city': 'Wesson', 'state': 'MS', 'position': 'SDE', 'height': 76.0, 'weight': '248', 'compRating': '0.9333', 'compStars': 4, 'nationalRank': '5', 'positionRank': '2', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2008', 'playerName': 'Eric Smith', 'highSchool': 'Armwood', 'city': 'Seffner', 'state': 'FL', 'position': 'FB', 'height': 70.0, 'weight': '239', 'compRating': '0.9145', 'compStars': 4, 'nationalRank': '198', 'positionRank': '1', 'stateRank': '34', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2008', 'playerName': 'Onterio McCalebb', 'highSchool': 'Fort Meade', 'city': 'Fort Meade', 'state': 'FL', 'position': 'APB', 'height': 70.0, 'weight': '175', 'compRating': '0.8938', 'compStars': 4, 'nationalRank': '304', 'positionRank': '3', 'stateRank': '43', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2008', 'playerName': 'Onterrio McCalebb', 'highSchool': 'Fort Meade', 'city': 'Fort Meade', 'state': 'FL', 'position': 'APB', 'height': 70.0, 'weight': '154', 'compRating': '0.8938', 'compStars': 4, 'nationalRank': '305', 'positionRank': '4', 'stateRank': '44', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2008', 'playerName': 'Cameron Henderson', 'highSchool': 'Shades Valley', 'city': 'Birmingham', 'state': 'AL', 'position': 'WDE', 'height': 77.0, 'weight': '240', 'compRating': '0.8906', 'compStars': 4, 'nationalRank': '330', 'positionRank': '9', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2008', 'playerName': 'DeRon Furr', 'highSchool': 'Carver', 'city': 'Columbus', 'state': 'GA', 'position': 'ATH', 'height': 75.0, 'weight': '212', 'compRating': '0.8875', 'compStars': 3, 'nationalRank': '349', 'positionRank': '19', 'stateRank': '26', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2008', 'playerName': 'Harry Adams', 'highSchool': 'Dillard', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'WR', 'height': 72.0, 'weight': '175', 'compRating': '0.8863', 'compStars': 3, 'nationalRank': '355', 'positionRank': '50', 'stateRank': '52', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2008', 'playerName': 'Reggie Hunt', 'highSchool': 'Daphne', 'city': 'Daphne', 'state': 'AL', 'position': 'APB', 'height': 70.0, 'weight': '180', 'compRating': '0.8826', 'compStars': 3, 'nationalRank': '371', 'positionRank': '6', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2008', 'playerName': 'Marcus Jemison', 'highSchool': 'McAdory', 'city': 'McCalla', 'state': 'AL', 'position': 'ATH', 'height': 74.0, 'weight': '190', 'compRating': '0.8795', 'compStars': 3, 'nationalRank': '408', 'positionRank': '22', 'stateRank': '22', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2008', 'playerName': 'Freddie Smooth', 'highSchool': 'Desire Street Academy', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'OT', 'height': 77.0, 'weight': '300', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '421', 'positionRank': '39', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2008', 'playerName': 'Andre Wadley', 'highSchool': 'Hernando', 'city': 'Hernando', 'state': 'MS', 'position': 'SDE', 'height': 74.0, 'weight': '250', 'compRating': '0.8713', 'compStars': 3, 'nationalRank': '493', 'positionRank': '26', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2008', 'playerName': 'Christian Thompson', 'highSchool': 'St. Thomas Aquinas', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'S', 'height': 73.0, 'weight': '195', 'compRating': '0.8684', 'compStars': 3, 'nationalRank': '524', 'positionRank': '45', 'stateRank': '75', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2008', 'playerName': 'Neiko Lipscomb', 'highSchool': 'Tucker', 'city': 'Tucker', 'state': 'GA', 'position': 'S', 'height': 74.0, 'weight': '175', 'compRating': '0.8683', 'compStars': 3, 'nationalRank': '532', 'positionRank': '46', 'stateRank': '42', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2008', 'playerName': 'Philip Pierre-Louis', 'highSchool': 'St. Thomas Aquinas', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'ATH', 'height': 70.0, 'weight': '175', 'compRating': '0.8670', 'compStars': 3, 'nationalRank': '539', 'positionRank': '28', 'stateRank': '77', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2008', 'playerName': "D'Antoine Hood", 'highSchool': 'Central', 'city': 'Phenix City', 'state': 'AL', 'position': 'CB', 'height': 69.0, 'weight': '185', 'compRating': '0.8510', 'compStars': 3, 'nationalRank': '762', 'positionRank': '59', 'stateRank': '34', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2008', 'playerName': 'Jomarcus Savage', 'highSchool': 'J.O. Johnson', 'city': 'Huntsville', 'state': 'AL', 'position': 'DT', 'height': 74.0, 'weight': '260', 'compRating': '0.8497', 'compStars': 3, 'nationalRank': '764', 'positionRank': '53', 'stateRank': '35', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2008', 'playerName': 'Barrett Trotter', 'highSchool': 'Briarwood Christian', 'city': 'Birmingham', 'state': 'AL', 'position': 'PRO', 'height': 74.0, 'weight': '206', 'compRating': '0.8385', 'compStars': 3, 'nationalRank': '886', 'positionRank': '34', 'stateRank': '39', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2008', 'playerName': 'Spencer Pybus', 'highSchool': 'Northview', 'city': 'Dothan', 'state': 'AL', 'position': 'OLB', 'height': 73.0, 'weight': '200', 'compRating': '0.8368', 'compStars': 3, 'nationalRank': '910', 'positionRank': '65', 'stateRank': '40', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2008', 'playerName': 'Vance Smith', 'highSchool': 'Pace', 'city': 'Milton', 'state': 'FL', 'position': 'TE', 'height': 76.0, 'weight': '245', 'compRating': '0.8354', 'compStars': 3, 'nationalRank': '921', 'positionRank': '44', 'stateRank': '112', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2008', 'playerName': 'Chris Todd', 'highSchool': 'Hutchinson C.C.', 'city': 'Hutchinson', 'state': 'KS', 'position': 'PRO', 'height': 74.0, 'weight': '220', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '112', 'positionRank': '7', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2008', 'playerName': 'Drew Cole', 'highSchool': 'Picayune Memorial', 'city': 'Picayune', 'state': 'MS', 'position': 'S', 'height': 71.0, 'weight': '190', 'compRating': '0.8260', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '82', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2008', 'playerName': 'Ken Adams', 'highSchool': 'Enterprise', 'city': 'Enterprise', 'state': 'AL', 'position': 'TE', 'height': 77.0, 'weight': '217', 'compRating': '0.8176', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '59', 'stateRank': '43', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2008', 'playerName': 'Derrick Lykes', 'highSchool': 'Chilton Co Sch', 'city': 'Clanton', 'state': 'AL', 'position': 'SDE', 'height': 76.0, 'weight': '274', 'compRating': '0.8146', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '65', 'stateRank': '44', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2008', 'playerName': 'Derek Winter', 'highSchool': 'Plant', 'city': 'Tampa', 'state': 'FL', 'position': 'WR', 'height': 72.0, 'weight': '178', 'compRating': '0.8118', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '139', 'stateRank': '144', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2008', 'playerName': "Da'Shaun Barnes", 'highSchool': 'Lincoln', 'city': 'Tallahassee', 'state': 'FL', 'position': 'OLB', 'height': 74.0, 'weight': '230', 'compRating': '0.7906', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '101', 'stateRank': '165', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2008', 'playerName': 'Brandon Smith', 'highSchool': 'Williamson', 'city': 'Mobile', 'state': 'AL', 'position': 'ATH', 'height': 73.0, 'weight': '185', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '113', 'stateRank': '54', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2008', 'playerName': 'Tori Childers', 'highSchool': 'New Hampton School', 'city': 'New Hampton', 'state': 'NH', 'position': 'WR', 'height': 77.0, 'weight': '220', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '188', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2008', 'playerName': "T'Sharvan Bell", 'highSchool': 'Osceola', 'city': 'Kissimmee', 'state': 'FL', 'position': 'CB', 'height': 72.0, 'weight': '180', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2008', 'playerName': 'Chandler Brooks', 'highSchool': 'Grissom', 'city': 'Huntsville', 'state': 'AL', 'position': 'K', 'height': 72.0, 'weight': '180', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2008', 'playerName': 'Sam Brown', 'highSchool': 'Hewitt-Trussville', 'city': 'Trussville', 'state': 'AL', 'position': 'WR', 'height': 73.0, 'weight': '221', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2008', 'playerName': 'Jake Drum', 'highSchool': 'Spain Park', 'city': 'Birmingham', 'state': 'AL', 'position': 'WR', 'height': 77.0, 'weight': '253', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2008', 'playerName': 'Ikeem Means', 'highSchool': 'Wetumpka', 'city': 'Wetumpka', 'state': 'AL', 'position': 'S', 'height': 72.0, 'weight': '209', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2008', 'playerName': 'Donnie Riggins', 'highSchool': 'Holtville', 'city': 'Deatsville', 'state': 'AL', 'position': 'OT', 'height': 80.0, 'weight': '307', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2008', 'playerName': 'Dax Dellenbach', 'highSchool': 'North Broward Prep', 'city': 'Pompano Beach', 'state': 'FL', 'position': 'LS', 'height': 73.0, 'weight': '235', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '2', 'stateRank': '210', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2009', 'playerName': 'Branden Smith', 'highSchool': 'Washington', 'city': 'Atlanta', 'state': 'GA', 'position': 'CB', 'height': 71.0, 'weight': '171', 'compRating': '0.9901', 'compStars': 5, 'nationalRank': '18', 'positionRank': '2', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2009', 'playerName': 'Aaron Murray', 'highSchool': 'Plant', 'city': 'Tampa', 'state': 'FL', 'position': 'DUAL', 'height': 73.0, 'weight': '198', 'compRating': '0.9900', 'compStars': 5, 'nationalRank': '19', 'positionRank': '2', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2009', 'playerName': 'Marlon Brown', 'highSchool': 'Harding Academy of Memphis', 'city': 'Memphis', 'state': 'TN', 'position': 'WR', 'height': 77.0, 'weight': '200', 'compRating': '0.9869', 'compStars': 5, 'nationalRank': '27', 'positionRank': '3', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2009', 'playerName': 'Chris Burnette', 'highSchool': 'Troup County', 'city': 'Lagrange', 'state': 'GA', 'position': 'OG', 'height': 74.0, 'weight': '300', 'compRating': '0.9746', 'compStars': 4, 'nationalRank': '48', 'positionRank': '3', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2009', 'playerName': 'Austin Long', 'highSchool': 'Briarcrest Christian', 'city': 'Memphis', 'state': 'TN', 'position': 'OT', 'height': 77.0, 'weight': '268', 'compRating': '0.9678', 'compStars': 4, 'nationalRank': '67', 'positionRank': '7', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2009', 'playerName': 'Washaun Ealey', 'highSchool': 'Emanuel County Institute', 'city': 'Twin City', 'state': 'GA', 'position': 'RB', 'height': 71.0, 'weight': '205', 'compRating': '0.9582', 'compStars': 4, 'nationalRank': '91', 'positionRank': '10', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2009', 'playerName': 'Orson Charles', 'highSchool': 'Plant', 'city': 'Tampa', 'state': 'FL', 'position': 'WR', 'height': 75.0, 'weight': '230', 'compRating': '0.9464', 'compStars': 4, 'nationalRank': '115', 'positionRank': '14', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2009', 'playerName': 'Zach Mettenberger', 'highSchool': 'Oconee County', 'city': 'Watkinsville', 'state': 'GA', 'position': 'PRO', 'height': 77.0, 'weight': '229', 'compRating': '0.9426', 'compStars': 4, 'nationalRank': '122', 'positionRank': '9', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2009', 'playerName': 'Abry Jones', 'highSchool': 'Northside', 'city': 'Warner Robins', 'state': 'GA', 'position': 'WDE', 'height': 75.0, 'weight': '273', 'compRating': '0.9416', 'compStars': 4, 'nationalRank': '125', 'positionRank': '6', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2009', 'playerName': 'Arthur Lynch', 'highSchool': 'Dartmouth', 'city': 'South Dartmouth', 'state': 'MA', 'position': 'TE', 'height': 77.0, 'weight': '240', 'compRating': '0.9300', 'compStars': 4, 'nationalRank': '148', 'positionRank': '2', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2009', 'playerName': 'Montez Robinson', 'highSchool': 'Avon', 'city': 'Avon', 'state': 'IN', 'position': 'SDE', 'height': 77.0, 'weight': '235', 'compRating': '0.9261', 'compStars': 4, 'nationalRank': '156', 'positionRank': '7', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2009', 'playerName': 'Rantavious Wooten', 'highSchool': 'Glades Central', 'city': 'Belle Glade', 'state': 'FL', 'position': 'WR', 'height': 70.0, 'weight': '158', 'compRating': '0.9065', 'compStars': 4, 'nationalRank': '232', 'positionRank': '30', 'stateRank': '40', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2009', 'playerName': 'Chase Vasser', 'highSchool': 'Chestatee', 'city': 'Gainesville', 'state': 'GA', 'position': 'OLB', 'height': 75.0, 'weight': '208', 'compRating': '0.8955', 'compStars': 4, 'nationalRank': '285', 'positionRank': '16', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2009', 'playerName': 'Michael Gilliard', 'highSchool': 'Valdosta', 'city': 'Valdosta', 'state': 'GA', 'position': 'OLB', 'height': 74.0, 'weight': '200', 'compRating': '0.8906', 'compStars': 4, 'nationalRank': '319', 'positionRank': '20', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2009', 'playerName': 'Jordan Love', 'highSchool': 'Deep Run', 'city': 'Glen Allen', 'state': 'VA', 'position': 'CB', 'height': 72.0, 'weight': '185', 'compRating': '0.8863', 'compStars': 3, 'nationalRank': '363', 'positionRank': '40', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2009', 'playerName': 'Derrick Lott', 'highSchool': 'North Cobb', 'city': 'Kennesaw', 'state': 'GA', 'position': 'SDE', 'height': 76.0, 'weight': '272', 'compRating': '0.8844', 'compStars': 3, 'nationalRank': '369', 'positionRank': '15', 'stateRank': '27', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2009', 'playerName': 'Kwame Geathers', 'highSchool': 'Carvers Bay', 'city': 'Hemingway', 'state': 'SC', 'position': 'DT', 'height': 78.0, 'weight': '320', 'compRating': '0.8818', 'compStars': 3, 'nationalRank': '407', 'positionRank': '39', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2009', 'playerName': 'Shawn Williams', 'highSchool': 'Early County', 'city': 'Blakely', 'state': 'GA', 'position': 'S', 'height': 73.0, 'weight': '195', 'compRating': '0.8795', 'compStars': 3, 'nationalRank': '433', 'positionRank': '30', 'stateRank': '34', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2009', 'playerName': 'Dallas Lee', 'highSchool': 'Buford', 'city': 'Buford', 'state': 'GA', 'position': 'OG', 'height': 76.0, 'weight': '290', 'compRating': '0.8715', 'compStars': 3, 'nationalRank': '535', 'positionRank': '33', 'stateRank': '39', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2009', 'playerName': 'Brandon Bogotay', 'highSchool': 'Grossmont College', 'city': 'El Cajon', 'state': 'CA', 'position': 'K', 'height': 75.0, 'weight': '200', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': '234', 'positionRank': '9', 'stateRank': '105', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2009', 'playerName': 'Mike Gilliard', 'highSchool': 'Valdosta', 'city': 'Valdosta', 'state': 'GA', 'position': 'OLB', 'height': 74.0, 'weight': '200', 'compRating': '0.8715', 'compStars': 3, 'nationalRank': '534', 'positionRank': '40', 'stateRank': '38', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2007', 'playerName': 'Chris Strong', 'highSchool': 'South Panola', 'city': 'Batesville', 'state': 'MS', 'position': 'SDE', 'height': 75.0, 'weight': '250', 'compRating': '0.9730', 'compStars': 4, 'nationalRank': '60', 'positionRank': '6', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2007', 'playerName': 'A.J. Jackson', 'highSchool': 'College of the Sequoias', 'city': 'Visalia', 'state': 'CA', 'position': 'WR', 'height': 78.0, 'weight': '220', 'compRating': '0.9667', 'compStars': 4, 'nationalRank': '1', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2007', 'playerName': 'Ted Laurent', 'highSchool': 'McEachern', 'city': 'Powder Springs', 'state': 'GA', 'position': 'DT', 'height': 72.0, 'weight': '285', 'compRating': '0.9371', 'compStars': 4, 'nationalRank': '121', 'positionRank': '14', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2007', 'playerName': 'Roderick Davis', 'highSchool': 'Wooddale', 'city': 'Memphis', 'state': 'TN', 'position': 'WR', 'height': 72.0, 'weight': '190', 'compRating': '0.9353', 'compStars': 4, 'nationalRank': '126', 'positionRank': '17', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2007', 'playerName': 'Anthony Fein', 'highSchool': 'Scottsdale C.C.', 'city': 'Scottsdale', 'state': 'AZ', 'position': 'ILB', 'height': 75.0, 'weight': '245', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '26', 'positionRank': '3', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2007', 'playerName': 'Rishaw Johnson', 'highSchool': 'Hammond', 'city': 'Hammond', 'state': 'LA', 'position': 'OG', 'height': 76.0, 'weight': '315', 'compRating': '0.8813', 'compStars': 3, 'nationalRank': '297', 'positionRank': '18', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2007', 'playerName': 'Johnny Brown', 'highSchool': 'Charleston', 'city': 'Charleston', 'state': 'MS', 'position': 'ATH', 'height': 72.0, 'weight': '190', 'compRating': '0.8795', 'compStars': 3, 'nationalRank': '301', 'positionRank': '21', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2007', 'playerName': 'Lionel Breaux', 'highSchool': 'McDonogh 35', 'city': 'New Orleans', 'state': 'LA', 'position': 'WR', 'height': 71.0, 'weight': '183', 'compRating': '0.8795', 'compStars': 3, 'nationalRank': '305', 'positionRank': '42', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2007', 'playerName': 'Ashlee Palmer', 'highSchool': 'Compton C.C.', 'city': 'Compton', 'state': 'CA', 'position': 'S', 'height': 75.0, 'weight': '225', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '53', 'positionRank': '7', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2007', 'playerName': 'Jamison Hughes', 'highSchool': 'Oxford', 'city': 'Oxford', 'state': 'MS', 'position': 'CB', 'height': 73.0, 'weight': '190', 'compRating': '0.8465', 'compStars': 3, 'nationalRank': '678', 'positionRank': '43', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2007', 'playerName': 'Fonterrian Ingram', 'highSchool': 'McNair', 'city': 'Atlanta', 'state': 'GA', 'position': 'S', 'height': 70.0, 'weight': '185', 'compRating': '0.8448', 'compStars': 3, 'nationalRank': '694', 'positionRank': '54', 'stateRank': '38', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2007', 'playerName': 'Marshall Williams', 'highSchool': 'Southwest DeKalb', 'city': 'Decatur', 'state': 'GA', 'position': 'OLB', 'height': 74.0, 'weight': '198', 'compRating': '0.8444', 'compStars': 3, 'nationalRank': '703', 'positionRank': '42', 'stateRank': '40', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2007', 'playerName': 'Bradley Sowell', 'highSchool': 'Hernando', 'city': 'Hernando', 'state': 'MS', 'position': 'OT', 'height': 80.0, 'weight': '320', 'compRating': '0.8417', 'compStars': 3, 'nationalRank': '737', 'positionRank': '68', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2007', 'playerName': 'Alex Washington', 'highSchool': 'Carroll', 'city': 'Monroe', 'state': 'LA', 'position': 'OG', 'height': 76.0, 'weight': '315', 'compRating': '0.8385', 'compStars': 3, 'nationalRank': '791', 'positionRank': '64', 'stateRank': '28', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2007', 'playerName': 'Jamariey Atterberry', 'highSchool': 'Kosciusko', 'city': 'Kosciusko', 'state': 'MS', 'position': 'CB', 'height': 71.0, 'weight': '166', 'compRating': '0.8354', 'compStars': 3, 'nationalRank': '817', 'positionRank': '55', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2007', 'playerName': 'David Rue', 'highSchool': 'Richwood', 'city': 'Monroe', 'state': 'LA', 'position': 'TE', 'height': 78.0, 'weight': '250', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '837', 'positionRank': '44', 'stateRank': '32', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2007', 'playerName': 'Lamar Brumfield', 'highSchool': 'Compton C.C.', 'city': 'Compton', 'state': 'CA', 'position': 'OLB', 'height': 74.0, 'weight': '240', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '100', 'positionRank': '7', 'stateRank': '47', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2007', 'playerName': 'Mark Jean-Lewis', 'highSchool': 'Cerritos', 'city': 'Cerritos', 'state': 'CA', 'position': 'OG', 'height': 74.0, 'weight': '325', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '949', 'positionRank': '80', 'stateRank': '108', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2007', 'playerName': 'Justin Sanders', 'highSchool': 'Buckhorn', 'city': 'New Market', 'state': 'AL', 'position': 'DT', 'height': 77.0, 'weight': '275', 'compRating': '0.8118', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '75', 'stateRank': '31', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2007', 'playerName': 'Colby Arceneaux', 'highSchool': 'John Curtis', 'city': 'New Orleans', 'state': 'LA', 'position': 'CB', 'height': 70.0, 'weight': '195', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '101', 'stateRank': '46', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2007', 'playerName': 'Isaiah Smith', 'highSchool': 'Columbia Central', 'city': 'Columbia', 'state': 'TN', 'position': 'OLB', 'height': 73.0, 'weight': '220', 'compRating': '0.7865', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '101', 'stateRank': '38', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2007', 'playerName': 'Lawon Scott', 'highSchool': 'St. Petersburg', 'city': 'Saint Petersburg', 'state': 'FL', 'position': 'DT', 'height': 73.0, 'weight': '304', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '116', 'stateRank': '192', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2003', 'playerName': 'Marcus Dixon', 'highSchool': 'Pepperell', 'city': 'Lindale', 'state': 'GA', 'position': 'SDE', 'height': 78.0, 'weight': '260', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '186', 'positionRank': '13', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2003', 'playerName': 'Jonathan Loyte', 'highSchool': "St. John's Prep", 'city': 'Danvers', 'state': 'MA', 'position': 'TE', 'height': 78.0, 'weight': '245', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '300', 'positionRank': '13', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2003', 'playerName': 'Jonathan Goff', 'highSchool': "St. John's Prep", 'city': 'Danvers', 'state': 'MA', 'position': 'OLB', 'height': 74.0, 'weight': '215', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '541', 'positionRank': '40', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2003', 'playerName': 'Greg Jacobs', 'highSchool': 'Fork Union Military Academy', 'city': 'Fork Union', 'state': 'VA', 'position': 'SDE', 'height': 75.0, 'weight': '255', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '18', 'positionRank': '1', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2003', 'playerName': 'Antron Dillon', 'highSchool': 'Independence', 'city': 'Independence', 'state': 'LA', 'position': 'OLB', 'height': 77.0, 'weight': '210', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '65', 'stateRank': '45', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2003', 'playerName': 'Elliot Hood', 'highSchool': 'Franklin Central', 'city': 'Indianapolis', 'state': 'IN', 'position': 'OT', 'height': 78.0, 'weight': '240', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '81', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2003', 'playerName': 'Bill Alford', 'highSchool': 'Brunswick', 'city': 'Brunswick', 'state': 'GA', 'position': 'CB', 'height': 69.0, 'weight': '185', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '104', 'stateRank': '72', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2003', 'playerName': 'Tom Sorensen', 'highSchool': 'Brighton', 'city': 'Salt Lake City', 'state': 'UT', 'position': 'OG', 'height': 76.0, 'weight': '280', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '106', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2003', 'playerName': 'Marlon White', 'highSchool': 'Westside', 'city': 'Macon', 'state': 'GA', 'position': 'WR', 'height': 76.0, 'weight': '180', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '155', 'stateRank': '83', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2003', 'playerName': 'Darnell Martemus', 'highSchool': 'St. Ignatius', 'city': 'Cleveland', 'state': 'OH', 'position': 'CB', 'height': 71.0, 'weight': '195', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '126', 'stateRank': '66', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2003', 'playerName': 'Marcus Buggs', 'highSchool': 'Goodpasture Christian School', 'city': 'Madison', 'state': 'TN', 'position': 'S', 'height': 71.0, 'weight': '185', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '117', 'stateRank': '29', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2003', 'playerName': 'Brian Stamper', 'highSchool': 'Lake Highland Prep', 'city': 'Orlando', 'state': 'FL', 'position': 'OG', 'height': 78.0, 'weight': '270', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '128', 'stateRank': '207', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2003', 'playerName': 'Merritt Kirchoffer', 'highSchool': 'Roswell', 'city': 'Roswell', 'state': 'GA', 'position': 'OG', 'height': 77.0, 'weight': '285', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '129', 'stateRank': '92', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2003', 'playerName': 'Stephon Johnson', 'highSchool': 'Marshall County', 'city': 'Lewisburg', 'state': 'TN', 'position': 'WR', 'height': 75.0, 'weight': '190', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '193', 'stateRank': '32', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2003', 'playerName': 'Josh Eames', 'highSchool': 'Lower Cape May Reg', 'city': 'Cape May', 'state': 'NJ', 'position': 'OT', 'height': 77.0, 'weight': '275', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '161', 'stateRank': '48', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2003', 'playerName': 'George Smith', 'highSchool': 'Hollywood Hills', 'city': 'Hollywood', 'state': 'FL', 'position': 'WR', 'height': 75.0, 'weight': '195', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '195', 'stateRank': '214', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2003', 'playerName': 'Lance Parker', 'highSchool': 'Bryant', 'city': 'Bryant', 'state': 'AR', 'position': 'PRO', 'height': 74.0, 'weight': '178', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '67', 'stateRank': '22', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2003', 'playerName': 'Khalil Sutton', 'highSchool': 'Westlake', 'city': 'Atlanta', 'state': 'GA', 'position': 'CB', 'height': 70.0, 'weight': '188', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '154', 'stateRank': '109', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2003', 'playerName': 'Sean Dixon', 'highSchool': 'Chamberlain', 'city': 'Tampa', 'state': 'FL', 'position': 'CB', 'height': 72.0, 'weight': '180', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '159', 'stateRank': '252', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2003', 'playerName': 'Curtis Gatewood', 'highSchool': 'White Station', 'city': 'Memphis', 'state': 'TN', 'position': 'ILB', 'height': 75.0, 'weight': '215', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '122', 'stateRank': '40', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2003', 'playerName': 'Nick Brigham', 'highSchool': 'Batesburg-Leesville', 'city': 'Batesburg', 'state': 'SC', 'position': 'TE', 'height': 76.0, 'weight': '238', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '119', 'stateRank': '29', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2003', 'playerName': 'Chris Williams', 'highSchool': 'Catholic', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'OT', 'height': 78.0, 'weight': '260', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '209', 'stateRank': '87', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2019', 'playerName': 'Jalani Williams', 'highSchool': 'Parkway North', 'city': 'Saint Louis', 'state': 'MO', 'position': 'S', 'height': 74.0, 'weight': '170', 'compRating': '0.9026', 'compStars': 4, 'nationalRank': '288', 'positionRank': '25', 'stateRank': '5', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '25', '247stateRank': '6'}, {'school': 'missouri', 'year': '2019', 'playerName': 'Jack Buford', 'highSchool': 'Lutheran North', 'city': 'Saint Louis', 'state': 'MO', 'position': 'OG', 'height': 75.0, 'weight': '326', 'compRating': '0.8918', 'compStars': 4, 'nationalRank': '368', 'positionRank': '21', 'stateRank': '7', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '19', '247stateRank': '3'}, {'school': 'missouri', 'year': '2019', 'playerName': 'Connor Bazelak', 'highSchool': 'Archbishop Alter', 'city': 'Dayton', 'state': 'OH', 'position': 'PRO', 'height': 75.0, 'weight': '207', 'compRating': '0.8913', 'compStars': 4, 'nationalRank': '373', 'positionRank': '13', 'stateRank': '12', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '25', '247stateRank': '44'}, {'school': 'missouri', 'year': '2019', 'playerName': 'Jamie Pettway', 'highSchool': 'Westover', 'city': 'Albany', 'state': 'GA', 'position': 'ILB', 'height': 75.0, 'weight': '230', 'compRating': '0.8822', 'compStars': 3, 'nationalRank': '480', 'positionRank': '25', 'stateRank': '47', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '18', '247stateRank': '30'}, {'school': 'missouri', 'year': '2019', 'playerName': 'Ishmael Burdine', 'highSchool': 'Slidell', 'city': 'Slidell', 'state': 'LA', 'position': 'S', 'height': 73.0, 'weight': '175', 'compRating': '0.8817', 'compStars': 3, 'nationalRank': '491', 'positionRank': '40', 'stateRank': '20', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '46', '247stateRank': '24'}, {'school': 'missouri', 'year': '2019', 'playerName': 'CJ Boone', 'highSchool': 'Parkway North', 'city': 'Saint Louis', 'state': 'MO', 'position': 'WR', 'height': 75.0, 'weight': '170', 'compRating': '0.8784', 'compStars': 3, 'nationalRank': '536', 'positionRank': '64', 'stateRank': '9', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '82', '247stateRank': '13'}, {'school': 'missouri', 'year': '2019', 'playerName': 'Luke Griffin', 'highSchool': 'North Murray', 'city': 'Chatsworth', 'state': 'GA', 'position': 'OT', 'height': 77.0, 'weight': '275', 'compRating': '0.8742', 'compStars': 3, 'nationalRank': '600', 'positionRank': '45', 'stateRank': '64', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '56', '247stateRank': '64'}, {'school': 'missouri', 'year': '2019', 'playerName': 'Maurice Massey', 'highSchool': 'Kirkwood', 'city': 'Saint Louis', 'state': 'MO', 'position': 'WR', 'height': 76.0, 'weight': '185', 'compRating': '0.8742', 'compStars': 3, 'nationalRank': '602', 'positionRank': '75', 'stateRank': '12', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '96', '247stateRank': '14'}, {'school': 'missouri', 'year': '2019', 'playerName': 'Darius Robinson', 'highSchool': 'Canton', 'city': 'Canton', 'state': 'MI', 'position': 'SDE', 'height': 78.0, 'weight': '250', 'compRating': '0.8688', 'compStars': 3, 'nationalRank': '694', 'positionRank': '46', 'stateRank': '17', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '58', '247stateRank': '21'}, {'school': 'missouri', 'year': '2019', 'playerName': 'Martez Manuel', 'highSchool': 'Rock Bridge', 'city': 'Columbia', 'state': 'MO', 'position': 'S', 'height': 73.0, 'weight': '185', 'compRating': '0.8668', 'compStars': 3, 'nationalRank': '749', 'positionRank': '58', 'stateRank': '15', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '58', '247stateRank': '17'}, {'school': 'missouri', 'year': '2019', 'playerName': 'Anthony Watkins', 'highSchool': 'South Hills', 'city': 'Fort Worth', 'state': 'TX', 'position': 'S', 'height': 72.0, 'weight': '180', 'compRating': '0.8535', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '87', 'stateRank': '133', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '108', '247stateRank': '170'}, {'school': 'missouri', 'year': '2019', 'playerName': 'Niko Hea', 'highSchool': 'Christian Brothers College', 'city': 'Saint Louis', 'state': 'MO', 'position': 'TE', 'height': 77.0, 'weight': '220', 'compRating': '0.8523', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '48', 'stateRank': '24', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '24', '247stateRank': '9'}, {'school': 'missouri', 'year': '2019', 'playerName': 'Stacy Brown', 'highSchool': 'Duncanville', 'city': 'Duncanville', 'state': 'TX', 'position': 'S', 'height': 74.0, 'weight': '194', 'compRating': '0.8505', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '96', 'stateRank': '141', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '105', '247stateRank': '159'}, {'school': 'missouri', 'year': '2019', 'playerName': "Z'Core Brooks", 'highSchool': 'Woodrow Wilson', 'city': 'Dallas', 'state': 'TX', 'position': 'WDE', 'height': 78.0, 'weight': '220', 'compRating': '0.8477', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '72', 'stateRank': '153', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '84', '247stateRank': '183'}, {'school': 'missouri', 'year': '2019', 'playerName': 'Isaiah McGuire', 'highSchool': 'Union', 'city': 'Tulsa', 'state': 'OK', 'position': 'SDE', 'height': 77.0, 'weight': '260', 'compRating': '0.8460', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '81', 'stateRank': '15', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '98', '247stateRank': '18'}, {'school': 'missouri', 'year': '2019', 'playerName': 'Devin Nicholson', 'highSchool': 'Cass Technical', 'city': 'Detroit', 'state': 'MI', 'position': 'OLB', 'height': 75.0, 'weight': '203', 'compRating': '0.8417', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '98', 'stateRank': '34', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '126', '247stateRank': '46'}, {'school': 'missouri', 'year': '2019', 'playerName': 'Thalen Robinson', 'highSchool': 'Bowie', 'city': 'Arlington', 'state': 'TX', 'position': 'OT', 'height': 78.0, 'weight': '315', 'compRating': '0.8417', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '108', 'stateRank': '179', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '145', '247stateRank': '227'}, {'school': 'missouri', 'year': '2019', 'playerName': 'Aidan Harrison', 'highSchool': 'New Lothrop', 'city': 'New Lothrop', 'state': 'MI', 'position': 'S', 'height': 75.0, 'weight': '175', 'compRating': '0.8397', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '118', 'stateRank': '36', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '124', '247stateRank': '38'}, {'school': 'missouri', 'year': '2019', 'playerName': 'Chris Shearin', 'highSchool': 'IMG Academy', 'city': 'Bradenton', 'state': 'FL', 'position': 'CB', 'height': 71.0, 'weight': '177', 'compRating': '0.8343', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '147', 'stateRank': '207', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '175', '247stateRank': '233'}, {'school': 'missouri', 'year': '2019', 'playerName': 'Angel Matute', 'highSchool': 'Mt. San Antonio College', 'city': 'Walnut', 'state': 'CA', 'position': 'OT', 'height': 76.0, 'weight': '270', 'compRating': '0.8332', 'compStars': 3, 'nationalRank': '151', 'positionRank': '26', 'stateRank': '34', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '33', '247stateRank': '60'}, {'school': 'missouri', 'year': '2019', 'playerName': 'Sci Martin', 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'WDE', 'height': 76.0, 'weight': '230', 'compRating': '0.8639', 'compStars': 3, 'nationalRank': '53', 'positionRank': '6', 'stateRank': '10', '247Rating': ' 85 ', '247Stars': 3, '247nationalRank': '95', '247positionRank': '8', '247stateRank': '19'}, {'school': 'missouri', 'year': '2019', 'playerName': 'Chris Daniels', 'highSchool': 'Copiah-Lincoln C.C.', 'city': 'Wesson', 'state': 'MS', 'position': 'DT', 'height': 75.5, 'weight': '315', 'compRating': '0.8549', 'compStars': 3, 'nationalRank': '73', 'positionRank': '9', 'stateRank': '16'}, {'school': 'mississippi-state', 'year': '2015', 'playerName': 'Jamal Peters', 'highSchool': 'Bassfield', 'city': 'Bassfield', 'state': 'MS', 'position': 'S', 'height': 73.5, 'weight': '206', 'compRating': '0.9727', 'compStars': 4, 'nationalRank': '58', 'positionRank': '3', 'stateRank': '2', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '100', '247positionRank': '5', '247stateRank': '3'}, {'school': 'mississippi-state', 'year': '2015', 'playerName': 'Leo Lewis', 'highSchool': 'Brookhaven', 'city': 'Brookhaven', 'state': 'MS', 'position': 'ILB', 'height': 75.0, 'weight': '225', 'compRating': '0.9684', 'compStars': 4, 'nationalRank': '64', 'positionRank': '1', 'stateRank': '3', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '66', '247positionRank': '1', '247stateRank': '2'}, {'school': 'mississippi-state', 'year': '2015', 'playerName': 'Fletcher Adams', 'highSchool': 'Brandon', 'city': 'Brandon', 'state': 'MS', 'position': 'SDE', 'height': 75.0, 'weight': '260', 'compRating': '0.9269', 'compStars': 4, 'nationalRank': '169', 'positionRank': '12', 'stateRank': '4', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '147', '247positionRank': '12', '247stateRank': '5'}, {'school': 'mississippi-state', 'year': '2015', 'playerName': 'Malik Dear', 'highSchool': 'Murrah', 'city': 'Jackson', 'state': 'MS', 'position': 'ATH', 'height': 69.5, 'weight': '226', 'compRating': '0.9135', 'compStars': 4, 'nationalRank': '216', 'positionRank': '13', 'stateRank': '5', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '225', '247positionRank': '14', '247stateRank': '7'}, {'school': 'mississippi-state', 'year': '2015', 'playerName': 'Donald Gray', 'highSchool': 'Copiah-Lincoln C.C.', 'city': 'Wesson', 'state': 'MS', 'position': 'WR', 'height': 69.0, 'weight': '185', 'compRating': '0.9131', 'compStars': 4, 'nationalRank': '7', 'positionRank': '1', 'stateRank': '2', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '10', '247positionRank': '2', '247stateRank': '5'}, {'school': 'mississippi-state', 'year': '2015', 'playerName': 'Martinas Rankin', 'highSchool': 'Mississippi Gulf Coast C.C.', 'city': 'Perkinston', 'state': 'MS', 'position': 'OT', 'height': 77.0, 'weight': '300', 'compRating': '0.9125', 'compStars': 4, 'nationalRank': '9', 'positionRank': '1', 'stateRank': '4', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '5', '247positionRank': '1', '247stateRank': '2'}, {'school': 'mississippi-state', 'year': '2015', 'playerName': 'Nick Gibson', 'highSchool': 'Pinson Valley', 'city': 'Pinson', 'state': 'AL', 'position': 'RB', 'height': 71.0, 'weight': '197', 'compRating': '0.8913', 'compStars': 4, 'nationalRank': '330', 'positionRank': '28', 'stateRank': '12', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '27', '247stateRank': '10'}, {'school': 'mississippi-state', 'year': '2015', 'playerName': 'Tim Washington', 'highSchool': 'Yazoo City', 'city': 'Yazoo City', 'state': 'MS', 'position': 'OLB', 'height': 75.0, 'weight': '200', 'compRating': '0.8871', 'compStars': 3, 'nationalRank': '357', 'positionRank': '27', 'stateRank': '8', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '47', '247stateRank': '23'}, {'school': 'mississippi-state', 'year': '2015', 'playerName': 'Darryl Williams', 'highSchool': 'Bessemer City', 'city': 'Bessemer', 'state': 'AL', 'position': 'OC', 'height': 76.0, 'weight': '304', 'compRating': '0.8799', 'compStars': 3, 'nationalRank': '401', 'positionRank': '8', 'stateRank': '14', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '7', '247stateRank': '13'}, {'school': 'mississippi-state', 'year': '2015', 'playerName': 'Traver Jung', 'highSchool': 'Holmes C.C.', 'city': 'Goodman', 'state': 'MS', 'position': 'OLB', 'height': 76.0, 'weight': '215', 'compRating': '0.8762', 'compStars': 3, 'nationalRank': '30', 'positionRank': '2', 'stateRank': '12', '247Rating': ' 90 ', '247Stars': 4, '247nationalRank': '25', '247positionRank': '2', '247stateRank': '12'}, {'school': 'mississippi-state', 'year': '2015', 'playerName': 'Deddrick Thomas', 'highSchool': 'Memphis Central', 'city': 'Memphis', 'state': 'TN', 'position': 'ATH', 'height': 69.0, 'weight': '170', 'compRating': '0.8706', 'compStars': 3, 'nationalRank': '499', 'positionRank': '36', 'stateRank': '14', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '33', '247stateRank': '12'}, {'school': 'mississippi-state', 'year': '2015', 'playerName': 'Chris Stamps', 'highSchool': 'Warren Central', 'city': 'Vicksburg', 'state': 'MS', 'position': 'CB', 'height': 73.0, 'weight': '170', 'compRating': '0.8670', 'compStars': 3, 'nationalRank': '540', 'positionRank': '53', 'stateRank': '11', '247Rating': ' 90 ', '247Stars': 4, '247nationalRank': '13', '247positionRank': '4', '247stateRank': '6'}, {'school': 'mississippi-state', 'year': '2015', 'playerName': 'Johnathan Calvin', 'highSchool': 'Copiah-Lincoln C.C.', 'city': 'Wesson', 'state': 'MS', 'position': 'SDE', 'height': 76.0, 'weight': '250', 'compRating': '0.8656', 'compStars': 3, 'nationalRank': '49', 'positionRank': '5', 'stateRank': '19', '247Rating': ' 87 ', '247Stars': 3, '247nationalRank': '48', '247positionRank': '5', '247stateRank': '18'}, {'school': 'mississippi-state', 'year': '2015', 'playerName': 'Maurice Smitherman', 'highSchool': 'Minor', 'city': 'Adamsville', 'state': 'AL', 'position': 'CB', 'height': 69.0, 'weight': '178', 'compRating': '0.8640', 'compStars': 3, 'nationalRank': '576', 'positionRank': '57', 'stateRank': '20', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '59', '247stateRank': '21'}, {'school': 'mississippi-state', 'year': '2015', 'playerName': 'Keith Joseph', 'highSchool': 'Pascagoula', 'city': 'Pascagoula', 'state': 'MS', 'position': 'WDE', 'height': 75.0, 'weight': '240', 'compRating': '0.8634', 'compStars': 3, 'nationalRank': '590', 'positionRank': '26', 'stateRank': '13', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '23', '247stateRank': '13'}, {'school': 'mississippi-state', 'year': '2015', 'playerName': 'Mark McLaurin', 'highSchool': 'Collins', 'city': 'Collins', 'state': 'MS', 'position': 'S', 'height': 75.0, 'weight': '200', 'compRating': '0.8598', 'compStars': 3, 'nationalRank': '652', 'positionRank': '45', 'stateRank': '17', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '14', '247stateRank': '8'}, {'school': 'mississippi-state', 'year': '2015', 'playerName': 'Kendell Jones', 'highSchool': 'Clay-Chalkville', 'city': 'Pinson', 'state': 'AL', 'position': 'SDE', 'height': 76.0, 'weight': '255', 'compRating': '0.8595', 'compStars': 3, 'nationalRank': '655', 'positionRank': '36', 'stateRank': '25', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '26', '247stateRank': '16'}, {'school': 'mississippi-state', 'year': '2015', 'playerName': 'Keith Mixon', 'highSchool': 'Shades Valley', 'city': 'Birmingham', 'state': 'AL', 'position': 'APB', 'height': 68.0, 'weight': '176', 'compRating': '0.8593', 'compStars': 3, 'nationalRank': '661', 'positionRank': '12', 'stateRank': '26', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '13', '247stateRank': '24'}, {'school': 'mississippi-state', 'year': '2015', 'playerName': 'Alec Murphy', 'highSchool': 'Nixa', 'city': 'Nixa', 'state': 'MO', 'position': 'RB', 'height': 73.0, 'weight': '222', 'compRating': '0.8580', 'compStars': 3, 'nationalRank': '694', 'positionRank': '53', 'stateRank': '9', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '83', '247stateRank': '14'}, {'school': 'mississippi-state', 'year': '2015', 'playerName': 'Justin Johnson', 'highSchool': 'Hoover', 'city': 'Hoover', 'state': 'AL', 'position': 'WR', 'height': 76.0, 'weight': '205', 'compRating': '0.8549', 'compStars': 3, 'nationalRank': '766', 'positionRank': '87', 'stateRank': '29', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '142', '247stateRank': '42'}, {'school': 'mississippi-state', 'year': '2015', 'playerName': 'Harrison Moon', 'highSchool': 'Signal Mountain', 'city': 'Signal Mountain', 'state': 'TN', 'position': 'OT', 'height': 77.5, 'weight': '280', 'compRating': '0.8534', 'compStars': 3, 'nationalRank': '804', 'positionRank': '85', 'stateRank': '24', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '109', '247stateRank': '26'}, {'school': 'mississippi-state', 'year': '2015', 'playerName': 'Nick Tiano', 'highSchool': 'Baylor School', 'city': 'Chattanooga', 'state': 'TN', 'position': 'PRO', 'height': 77.0, 'weight': '230', 'compRating': '0.8524', 'compStars': 3, 'nationalRank': '825', 'positionRank': '32', 'stateRank': '25', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '50', '247stateRank': '33'}, {'school': 'mississippi-state', 'year': '2015', 'playerName': 'Jonnas Spivey', 'highSchool': 'Bay Springs', 'city': 'Bay Springs', 'state': 'MS', 'position': 'ATH', 'height': 72.5, 'weight': '180', 'compRating': '0.8488', 'compStars': 3, 'nationalRank': '908', 'positionRank': '75', 'stateRank': '22', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '72', '247stateRank': '25'}, {'school': 'mississippi-state', 'year': '2015', 'playerName': 'Anfernee Mullins', 'highSchool': 'Aliceville', 'city': 'Aliceville', 'state': 'AL', 'position': 'WDE', 'height': 76.0, 'weight': '245', 'compRating': '0.8425', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '51', 'stateRank': '35', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '45', '247stateRank': '33'}, {'school': 'mississippi-state', 'year': '2015', 'playerName': 'Farrod Green', 'highSchool': 'Wesson Attendance Center', 'city': 'Wesson', 'state': 'MS', 'position': 'WR', 'height': 76.0, 'weight': '223', 'compRating': '0.8341', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '154', 'stateRank': '32', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '172', '247stateRank': '39'}, {'school': 'mississippi-state', 'year': '2015', 'playerName': 'Michael Story', 'highSchool': 'Ripley', 'city': 'Ripley', 'state': 'MS', 'position': 'OT', 'height': 76.0, 'weight': '290', 'compRating': '0.8323', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '145', 'stateRank': '33', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '100', '247stateRank': '27'}, {'school': 'mississippi-state', 'year': '2015', 'playerName': 'Dontea Jones', 'highSchool': 'Louisville', 'city': 'Louisville', 'state': 'MS', 'position': 'WR', 'height': 76.0, 'weight': '250', 'compRating': '0.8640', 'compStars': 3, 'nationalRank': '577', 'positionRank': '69', 'stateRank': '12', '247Rating': ' 87 ', '247Stars': 3, '247nationalRank': '2', '247positionRank': '1', '247stateRank': '1'}, {'school': 'alabama', 'year': '2003', 'playerName': 'Tim Castille', 'highSchool': 'Briarwood Christian', 'city': 'Birmingham', 'state': 'AL', 'position': 'ATH', 'height': 71.0, 'weight': '220', 'compRating': '0.9663', 'compStars': 4, 'nationalRank': '65', 'positionRank': '3', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2003', 'playerName': 'Matt Caddell', 'highSchool': 'McAdory', 'city': 'McCalla', 'state': 'AL', 'position': 'WR', 'height': 72.0, 'weight': '180', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '144', 'positionRank': '17', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2003', 'playerName': 'LeRon McClain', 'highSchool': 'Tuscaloosa County', 'city': 'Northport', 'state': 'AL', 'position': 'FB', 'height': 73.0, 'weight': '245', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '171', 'positionRank': '2', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2003', 'playerName': 'Wallace Gilberry', 'highSchool': 'Baker', 'city': 'Mobile', 'state': 'AL', 'position': 'WDE', 'height': 75.0, 'weight': '238', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '316', 'positionRank': '15', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2003', 'playerName': 'William Roach', 'highSchool': 'Brooks', 'city': 'Killen', 'state': 'AL', 'position': 'S', 'height': 73.0, 'weight': '196', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '329', 'positionRank': '23', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2003', 'playerName': 'Eric Gray', 'highSchool': 'West Morgan Sch', 'city': 'Trinity', 'state': 'AL', 'position': 'CB', 'height': 71.0, 'weight': '175', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '333', 'positionRank': '23', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2003', 'playerName': 'Ernest Nance', 'highSchool': 'R A Hubbard Sch', 'city': 'Courtland', 'state': 'AL', 'position': 'OLB', 'height': 75.0, 'weight': '210', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '346', 'positionRank': '25', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2003', 'playerName': 'Justin Moon', 'highSchool': 'Guntersville Sch', 'city': 'Guntersville', 'state': 'AL', 'position': 'OT', 'height': 77.0, 'weight': '290', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '445', 'positionRank': '33', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2003', 'playerName': 'Cliff Davis', 'highSchool': 'Eupora', 'city': 'Eupora', 'state': 'MS', 'position': 'PRO', 'height': 77.0, 'weight': '205', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '472', 'positionRank': '25', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2003', 'playerName': 'D.J. Chambers', 'highSchool': 'Highland Home', 'city': 'Highland Home', 'state': 'AL', 'position': 'ATH', 'height': 72.0, 'weight': '180', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '691', 'positionRank': '41', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2003', 'playerName': 'Tyrone Prothro', 'highSchool': 'Cleburne Co Sch', 'city': 'Heflin', 'state': 'AL', 'position': 'ATH', 'height': 70.0, 'weight': '175', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '691', 'positionRank': '41', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2003', 'playerName': 'Eric Packer', 'highSchool': 'Wilcox Central Sch', 'city': 'Camden', 'state': 'AL', 'position': 'APB', 'height': 69.0, 'weight': '185', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '711', 'positionRank': '12', 'stateRank': '26', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2003', 'playerName': 'Keith Saunders', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'WDE', 'height': 76.0, 'weight': '235', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': '24', 'positionRank': '2', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2003', 'playerName': 'Chris Capps', 'highSchool': 'Landmark Christian School', 'city': 'Fairburn', 'state': 'GA', 'position': 'OT', 'height': 78.0, 'weight': '270', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '140', 'stateRank': '81', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2003', 'playerName': 'Travis West', 'highSchool': 'Northeast Jones', 'city': 'Laurel', 'state': 'MS', 'position': 'OG', 'height': 76.0, 'weight': '280', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '111', 'stateRank': '38', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2003', 'playerName': 'DeMarcus Waldrop', 'highSchool': 'Pinson Valley', 'city': 'Pinson', 'state': 'AL', 'position': 'S', 'height': 72.0, 'weight': '195', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '147', 'stateRank': '73', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2020', 'playerName': 'Gervon Dexter', 'highSchool': 'Lake Wales', 'city': 'Lake Wales', 'state': 'FL', 'position': 'DT', 'height': 78.5, 'weight': '286', 'compRating': '0.9946', 'compStars': 5, 'nationalRank': '12', 'positionRank': '3', 'stateRank': '1', '247Rating': ' 100 ', '247Stars': 5, '247nationalRank': '6', '247positionRank': '2', '247stateRank': '1'}, {'school': 'florida', 'year': '2020', 'playerName': 'Derek Wingo', 'highSchool': 'St. Thomas Aquinas', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'OLB', 'height': 74.0, 'weight': '210', 'compRating': '0.9706', 'compStars': 4, 'nationalRank': '64', 'positionRank': '5', 'stateRank': '13', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '36', '247positionRank': '3', '247stateRank': '7'}, {'school': 'florida', 'year': '2020', 'playerName': 'Xzavier Henderson', 'highSchool': 'Columbus', 'city': 'Miami', 'state': 'FL', 'position': 'WR', 'height': 75.5, 'weight': '180', 'compRating': '0.9702', 'compStars': 4, 'nationalRank': '68', 'positionRank': '12', 'stateRank': '14', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '60', '247positionRank': '10', '247stateRank': '11'}, {'school': 'florida', 'year': '2020', 'playerName': 'Jahari Rogers', 'highSchool': 'Arlington', 'city': 'Arlington', 'state': 'TX', 'position': 'CB', 'height': 72.0, 'weight': '170', 'compRating': '0.9632', 'compStars': 4, 'nationalRank': '87', 'positionRank': '8', 'stateRank': '11', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '118', '247positionRank': '9', '247stateRank': '18'}, {'school': 'florida', 'year': '2020', 'playerName': 'Jaquavion Fraziars', 'highSchool': 'Dunnellon', 'city': 'Dunnellon', 'state': 'FL', 'position': 'WR', 'height': 75.5, 'weight': '194', 'compRating': '0.9320', 'compStars': 4, 'nationalRank': '155', 'positionRank': '26', 'stateRank': '23', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '237', '247positionRank': '41', '247stateRank': '35'}, {'school': 'florida', 'year': '2020', 'playerName': 'Issiah Walker Jr.', 'highSchool': 'Norland', 'city': 'Miami', 'state': 'FL', 'position': 'OT', 'height': 76.0, 'weight': '309', 'compRating': '0.9309', 'compStars': 4, 'nationalRank': '157', 'positionRank': '15', 'stateRank': '24', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '169', '247positionRank': '13', '247stateRank': '24'}, {'school': 'florida', 'year': '2020', 'playerName': 'Ethan Pouncey', 'highSchool': 'Winter Park', 'city': 'Winter Park', 'state': 'FL', 'position': 'CB', 'height': 73.0, 'weight': '160', 'compRating': '0.9279', 'compStars': 4, 'nationalRank': '176', 'positionRank': '12', 'stateRank': '26', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '195', '247positionRank': '14', '247stateRank': '28'}, {'school': 'florida', 'year': '2020', 'playerName': 'Antwaun Powell', 'highSchool': 'Indian River', 'city': 'Chesapeake', 'state': 'VA', 'position': 'WDE', 'height': 75.0, 'weight': '234', 'compRating': '0.9251', 'compStars': 4, 'nationalRank': '183', 'positionRank': '10', 'stateRank': '4', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '14', '247stateRank': '9'}, {'school': 'florida', 'year': '2020', 'playerName': 'Anthony Richardson', 'highSchool': 'Eastside', 'city': 'Gainesville', 'state': 'FL', 'position': 'DUAL', 'height': 76.0, 'weight': '224', 'compRating': '0.9207', 'compStars': 4, 'nationalRank': '202', 'positionRank': '9', 'stateRank': '30', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '245', '247positionRank': '9', '247stateRank': '36'}, {'school': 'florida', 'year': '2020', 'playerName': 'Princely Umanmielen', 'highSchool': 'Manor', 'city': 'Manor', 'state': 'TX', 'position': 'SDE', 'height': 76.0, 'weight': '249', 'compRating': '0.9117', 'compStars': 4, 'nationalRank': '242', 'positionRank': '9', 'stateRank': '38', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '11', '247stateRank': '42'}, {'school': 'florida', 'year': '2020', 'playerName': 'Joshua Braun', 'highSchool': 'Suwannee', 'city': 'Live Oak', 'state': 'FL', 'position': 'OT', 'height': 78.0, 'weight': '335', 'compRating': '0.9049', 'compStars': 4, 'nationalRank': '270', 'positionRank': '21', 'stateRank': '45', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '20', '247stateRank': '38'}, {'school': 'florida', 'year': '2020', 'playerName': 'Rashad Torrence II', 'highSchool': 'Marietta', 'city': 'Marietta', 'state': 'GA', 'position': 'S', 'height': 72.0, 'weight': '195', 'compRating': '0.8952', 'compStars': 4, 'nationalRank': '334', 'positionRank': '32', 'stateRank': '32', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '56', '247stateRank': '63'}, {'school': 'florida', 'year': '2020', 'playerName': 'Avery Helm', 'highSchool': 'Fort Bend Marshall', 'city': 'Missouri City', 'state': 'TX', 'position': 'CB', 'height': 74.0, 'weight': '170', 'compRating': '0.8937', 'compStars': 4, 'nationalRank': '343', 'positionRank': '24', 'stateRank': '48', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '30', '247stateRank': '45'}, {'school': 'florida', 'year': '2020', 'playerName': 'Mordecai McDaniel', 'highSchool': "St. John's", 'city': 'Washington', 'state': 'DC', 'position': 'CB', 'height': 73.0, 'weight': '195', 'compRating': '0.8923', 'compStars': 4, 'nationalRank': '359', 'positionRank': '28', 'stateRank': '5', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '222', '247positionRank': '17', '247stateRank': '4'}, {'school': 'florida', 'year': '2020', 'playerName': 'Lamar Goods', 'highSchool': 'St. Thomas More', 'city': 'Oakdale', 'state': 'CT', 'position': 'DT', 'height': 75.0, 'weight': '310', 'compRating': '0.8922', 'compStars': 4, 'nationalRank': '361', 'positionRank': '36', 'stateRank': '4', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '36', '247stateRank': '3'}, {'school': 'florida', 'year': '2020', 'playerName': 'Jalen Lee', 'highSchool': 'Live Oak', 'city': 'Watson', 'state': 'LA', 'position': 'DT', 'height': 75.0, 'weight': '294', 'compRating': '0.8917', 'compStars': 4, 'nationalRank': '364', 'positionRank': '37', 'stateRank': '17', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '23', '247stateRank': '11'}, {'school': 'florida', 'year': '2020', 'playerName': 'Fenley Graham', 'highSchool': 'Lakeland', 'city': 'Lakeland', 'state': 'FL', 'position': 'CB', 'height': 68.5, 'weight': '171', 'compRating': '0.8803', 'compStars': 3, 'nationalRank': '473', 'positionRank': '34', 'stateRank': '66', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '83', '247stateRank': '107'}, {'school': 'florida', 'year': '2020', 'playerName': "Tre'Vez Johnson", 'highSchool': 'Bartram Trail', 'city': 'Jacksonville', 'state': 'FL', 'position': 'S', 'height': 71.0, 'weight': '175', 'compRating': '0.8802', 'compStars': 3, 'nationalRank': '477', 'positionRank': '41', 'stateRank': '67', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '235', '247positionRank': '21', '247stateRank': '34'}, {'school': 'florida', 'year': '2020', 'playerName': 'Gerald Mincey', 'highSchool': 'Cardinal Gibbons', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'OT', 'height': 77.0, 'weight': '320', 'compRating': '0.8681', 'compStars': 3, 'nationalRank': '655', 'positionRank': '48', 'stateRank': '86', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '46', '247stateRank': '72'}, {'school': 'florida', 'year': '2020', 'playerName': 'Jonathan Odom', 'highSchool': 'Jesuit', 'city': 'Tampa', 'state': 'FL', 'position': 'TE', 'height': 77.0, 'weight': '250', 'compRating': '0.8633', 'compStars': 3, 'nationalRank': '767', 'positionRank': '32', 'stateRank': '100', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '52', '247stateRank': '124'}, {'school': 'florida', 'year': '2020', 'playerName': 'Richard Leonard', 'highSchool': 'Cocoa', 'city': 'Cocoa', 'state': 'FL', 'position': 'OG', 'height': 74.0, 'weight': '320', 'compRating': '0.8633', 'compStars': 3, 'nationalRank': '768', 'positionRank': '48', 'stateRank': '101', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '64', '247stateRank': '125'}, {'school': 'florida', 'year': '2020', 'playerName': 'Jeremy Crawshaw', 'highSchool': 'ProKick Australia', 'city': 'Australia', 'state': 'AUST', 'position': 'P', 'height': 75.0, 'weight': '190', 'compRating': '0.7940', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '9', 'stateRank': '4', '247Rating': ' 76 ', '247Stars': 2, '247positionRank': '5', '247stateRank': '2'}, {'school': 'florida', 'year': '2020', 'playerName': 'Johnnie Brown', 'highSchool': 'Sebring', 'city': 'Sebring', 'state': 'FL', 'position': 'DT', 'height': 74.0, 'weight': '250', 'compRating': '0.9161', 'compStars': 4, 'nationalRank': '227', 'positionRank': '22', 'stateRank': '34'}, {'school': 'arkansas', 'year': '2016', 'playerName': 'McTelvin Agim', 'highSchool': 'Hope', 'city': 'Hope', 'state': 'AR', 'position': 'SDE', 'height': 74.5, 'weight': '268', 'compRating': '0.9869', 'compStars': 5, 'nationalRank': '20', 'positionRank': '3', 'stateRank': '1', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '31', '247positionRank': '2', '247stateRank': '1'}, {'school': 'arkansas', 'year': '2016', 'playerName': 'Devwah Whaley', 'highSchool': 'Beaumont Central', 'city': 'Beaumont', 'state': 'TX', 'position': 'RB', 'height': 72.0, 'weight': '209', 'compRating': '0.9535', 'compStars': 4, 'nationalRank': '101', 'positionRank': '3', 'stateRank': '15', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '125', '247positionRank': '3', '247stateRank': '21'}, {'school': 'arkansas', 'year': '2016', 'playerName': 'Austin Capps', 'highSchool': 'Star City', 'city': 'Star City', 'state': 'AR', 'position': 'DT', 'height': 75.5, 'weight': '307', 'compRating': '0.9133', 'compStars': 4, 'nationalRank': '230', 'positionRank': '24', 'stateRank': '2', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '108', '247positionRank': '15', '247stateRank': '2'}, {'school': 'arkansas', 'year': '2016', 'playerName': 'T.J. Hammonds', 'highSchool': 'Joe T. Robinson', 'city': 'Little Rock', 'state': 'AR', 'position': 'ATH', 'height': 71.5, 'weight': '195', 'compRating': '0.9109', 'compStars': 4, 'nationalRank': '239', 'positionRank': '13', 'stateRank': '3', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '16', '247stateRank': '3'}, {'school': 'arkansas', 'year': '2016', 'playerName': 'Briston Guidry', 'highSchool': 'Archbishop Rummel', 'city': 'Metairie', 'state': 'LA', 'position': 'DT', 'height': 74.0, 'weight': '290', 'compRating': '0.9007', 'compStars': 4, 'nationalRank': '293', 'positionRank': '31', 'stateRank': '19', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '42', '247stateRank': '34'}, {'school': 'arkansas', 'year': '2016', 'playerName': 'Jake Heinrich', 'highSchool': 'Urbandale', 'city': 'Urbandale', 'state': 'IA', 'position': 'OG', 'height': 76.0, 'weight': '285', 'compRating': '0.8954', 'compStars': 4, 'nationalRank': '309', 'positionRank': '15', 'stateRank': '2', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '237', '247positionRank': '11', '247stateRank': '1'}, {'school': 'arkansas', 'year': '2016', 'playerName': 'Jordan Jones', 'highSchool': 'Smackover', 'city': 'Smackover', 'state': 'AR', 'position': 'WR', 'height': 73.0, 'weight': '175', 'compRating': '0.8666', 'compStars': 3, 'nationalRank': '534', 'positionRank': '86', 'stateRank': '4', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '62', '247stateRank': '4'}, {'school': 'arkansas', 'year': '2016', 'playerName': 'Jonathan Marshall', 'highSchool': 'Shepherd', 'city': 'Shepherd', 'state': 'TX', 'position': 'SDE', 'height': 76.0, 'weight': '275', 'compRating': '0.8595', 'compStars': 3, 'nationalRank': '633', 'positionRank': '30', 'stateRank': '95', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '17', '247stateRank': '50'}, {'school': 'arkansas', 'year': '2016', 'playerName': 'Kofi Boateng', 'highSchool': 'Lamar', 'city': 'Arlington', 'state': 'TX', 'position': 'WR', 'height': 73.0, 'weight': '177', 'compRating': '0.8584', 'compStars': 3, 'nationalRank': '656', 'positionRank': '102', 'stateRank': '97', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '102', '247stateRank': '92'}, {'school': 'arkansas', 'year': '2016', 'playerName': 'Alexy Jean-Baptiste', 'highSchool': 'Coconut Creek', 'city': 'Pompano Beach', 'state': 'FL', 'position': 'OLB', 'height': 75.0, 'weight': '205', 'compRating': '0.8564', 'compStars': 3, 'nationalRank': '693', 'positionRank': '46', 'stateRank': '96', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '91', '247stateRank': '156'}, {'school': 'arkansas', 'year': '2016', 'playerName': "De'Jon Harris", 'highSchool': 'John Ehret', 'city': 'Marrero', 'state': 'LA', 'position': 'ILB', 'height': 72.0, 'weight': '238', 'compRating': '0.8547', 'compStars': 3, 'nationalRank': '723', 'positionRank': '28', 'stateRank': '38', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '16', '247stateRank': '25'}, {'school': 'arkansas', 'year': '2016', 'playerName': 'Paul Ramirez', 'highSchool': 'San Bernardino Valley College', 'city': 'San Bernardino', 'state': 'CA', 'position': 'OT', 'height': 78.0, 'weight': '300', 'compRating': '0.8517', 'compStars': 3, 'nationalRank': '90', 'positionRank': '14', 'stateRank': '18', '247Rating': ' 87 ', '247Stars': 3, '247nationalRank': '60', '247positionRank': '7', '247stateRank': '12'}, {'school': 'arkansas', 'year': '2016', 'playerName': 'Giovanni LaFrance', 'highSchool': 'St. Augustine', 'city': 'New Orleans', 'state': 'LA', 'position': 'ILB', 'height': 73.0, 'weight': '239', 'compRating': '0.8497', 'compStars': 3, 'nationalRank': '840', 'positionRank': '32', 'stateRank': '45', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '23', '247stateRank': '38'}, {'school': 'arkansas', 'year': '2016', 'playerName': 'Deon Edwards', 'highSchool': 'Lake Minneola', 'city': 'Lake Minneola', 'state': 'FL', 'position': 'S', 'height': 73.0, 'weight': '190', 'compRating': '0.8488', 'compStars': 3, 'nationalRank': '862', 'positionRank': '55', 'stateRank': '117', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '61', '247stateRank': '116'}, {'school': 'arkansas', 'year': '2016', 'playerName': 'Cole Kelley', 'highSchool': 'Teurlings Catholic', 'city': 'Lafayette', 'state': 'LA', 'position': 'PRO', 'height': 79.0, 'weight': '230', 'compRating': '0.8485', 'compStars': 3, 'nationalRank': '870', 'positionRank': '39', 'stateRank': '47', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '45', '247stateRank': '52'}, {'school': 'arkansas', 'year': '2016', 'playerName': 'Michael Taylor', 'highSchool': 'Riverside C.C.', 'city': 'Riverside', 'state': 'CA', 'position': 'WDE', 'height': 76.0, 'weight': '240', 'compRating': '0.8467', 'compStars': 3, 'nationalRank': '102', 'positionRank': '7', 'stateRank': '24', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '90', '247positionRank': '11', '247stateRank': '23'}, {'school': 'arkansas', 'year': '2016', 'playerName': 'Hayden Johnson', 'highSchool': 'Rock Bridge', 'city': 'Columbia', 'state': 'MO', 'position': 'SDE', 'height': 75.0, 'weight': '255', 'compRating': '0.8380', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '55', 'stateRank': '12', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '77', '247stateRank': '17'}, {'school': 'arkansas', 'year': '2016', 'playerName': 'Britto Tutt', 'highSchool': 'Ventura College', 'city': 'Ventura', 'state': 'CA', 'position': 'CB', 'height': 74.0, 'weight': '184', 'compRating': '0.8367', 'compStars': 3, 'nationalRank': '126', 'positionRank': '13', 'stateRank': '32', '247Rating': ' 84 ', '247Stars': 3, '247nationalRank': '144', '247positionRank': '15', '247stateRank': '38'}, {'school': 'arkansas', 'year': '2016', 'playerName': 'Deion Malone', 'highSchool': 'Northwest Mississippi C.C.', 'city': 'Senatobia', 'state': 'MS', 'position': 'OG', 'height': 76.0, 'weight': '308', 'compRating': '0.8337', 'compStars': 3, 'nationalRank': '133', 'positionRank': '9', 'stateRank': '25', '247Rating': ' 85 ', '247Stars': 3, '247nationalRank': '113', '247positionRank': '8', '247stateRank': '19'}, {'school': 'arkansas', 'year': '2016', 'playerName': 'Grayson Gunter', 'highSchool': 'Madison Central', 'city': 'Madison', 'state': 'MS', 'position': 'TE', 'height': 77.0, 'weight': '230', 'compRating': '0.8314', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '56', 'stateRank': '31', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '33', '247stateRank': '26'}, {'school': 'arkansas', 'year': '2016', 'playerName': 'Dee Walker', 'highSchool': 'Colquitt County', 'city': 'Moultrie', 'state': 'GA', 'position': 'OLB', 'height': 75.0, 'weight': '210', 'compRating': '0.8288', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '99', 'stateRank': '128', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '112', '247stateRank': '139'}, {'school': 'arkansas', 'year': '2016', 'playerName': 'Micahh Smith', 'highSchool': 'Marshall', 'city': 'Marshall', 'state': 'TX', 'position': 'S', 'height': 72.0, 'weight': '192', 'compRating': '0.8080', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '135', 'stateRank': '228', '247Rating': ' 78 ', '247Stars': 2, '247positionRank': '164', '247stateRank': '295'}, {'school': 'vanderbilt', 'year': '2015', 'playerName': 'Josh Smith', 'highSchool': 'Oakland', 'city': 'Murfreesboro', 'state': 'TN', 'position': 'ILB', 'height': 75.0, 'weight': '228', 'compRating': '0.9378', 'compStars': 4, 'nationalRank': '141', 'positionRank': '3', 'stateRank': '5', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '99', '247positionRank': '2', '247stateRank': '4'}, {'school': 'vanderbilt', 'year': '2015', 'playerName': 'Kyle Shurmur', 'highSchool': 'La Salle College', 'city': 'Glenside', 'state': 'PA', 'position': 'PRO', 'height': 76.0, 'weight': '215', 'compRating': '0.8992', 'compStars': 4, 'nationalRank': '293', 'positionRank': '13', 'stateRank': '8', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '13', '247stateRank': '10'}, {'school': 'vanderbilt', 'year': '2015', 'playerName': 'Donovan Sheffield', 'highSchool': 'Ensworth', 'city': 'Nashville', 'state': 'TN', 'position': 'CB', 'height': 71.0, 'weight': '170', 'compRating': '0.8815', 'compStars': 3, 'nationalRank': '391', 'positionRank': '35', 'stateRank': '11', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '237', '247positionRank': '30', '247stateRank': '10'}, {'school': 'vanderbilt', 'year': '2015', 'playerName': 'Caleb Peart', 'highSchool': 'Hamilton', 'city': 'Chandler', 'state': 'AZ', 'position': 'SDE', 'height': 72.0, 'weight': '240', 'compRating': '0.8625', 'compStars': 3, 'nationalRank': '601', 'positionRank': '32', 'stateRank': '8', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '31', '247stateRank': '5'}, {'school': 'vanderbilt', 'year': '2015', 'playerName': 'Nehemiah Mitchell', 'highSchool': 'City College of San Francisco', 'city': 'San Francisco', 'state': 'CA', 'position': 'SDE', 'height': 77.0, 'weight': '265', 'compRating': '0.8565', 'compStars': 3, 'nationalRank': '71', 'positionRank': '7', 'stateRank': '19', '247Rating': ' 84 ', '247Stars': 3, '247nationalRank': '109', '247positionRank': '8', '247stateRank': '31'}, {'school': 'vanderbilt', 'year': '2015', 'playerName': 'Dare Odeyingbo', 'highSchool': 'Cistercian Prep', 'city': 'Irving', 'state': 'TX', 'position': 'ILB', 'height': 73.0, 'weight': '243', 'compRating': '0.8543', 'compStars': 3, 'nationalRank': '779', 'positionRank': '29', 'stateRank': '104', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '30', '247stateRank': '114'}, {'school': 'vanderbilt', 'year': '2015', 'playerName': 'Jordan Griffin', 'highSchool': 'Armwood', 'city': 'Seffner', 'state': 'FL', 'position': 'ILB', 'height': 72.0, 'weight': '207', 'compRating': '0.8537', 'compStars': 3, 'nationalRank': '794', 'positionRank': '30', 'stateRank': '100', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '21', '247stateRank': '75'}, {'school': 'vanderbilt', 'year': '2015', 'playerName': 'Sam Dobbs', 'highSchool': 'Landmark Christian School', 'city': 'Fairburn', 'state': 'GA', 'position': 'TE', 'height': 76.5, 'weight': '220', 'compRating': '0.8537', 'compStars': 3, 'nationalRank': '795', 'positionRank': '29', 'stateRank': '82', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '24', '247stateRank': '79'}, {'school': 'vanderbilt', 'year': '2015', 'playerName': 'Justin Skule', 'highSchool': 'Centreville', 'city': 'Clifton', 'state': 'VA', 'position': 'OT', 'height': 78.0, 'weight': '280', 'compRating': '0.8456', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '108', 'stateRank': '30', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '101', '247stateRank': '32'}, {'school': 'vanderbilt', 'year': '2015', 'playerName': 'Josh Crawford', 'highSchool': 'Edgewood Academy', 'city': 'Elmore', 'state': 'AL', 'position': 'RB', 'height': 71.0, 'weight': '214', 'compRating': '0.8406', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '84', 'stateRank': '37', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '88', '247stateRank': '44'}, {'school': 'vanderbilt', 'year': '2015', 'playerName': 'Ean Pfeifer', 'highSchool': 'Bentonville', 'city': 'Bentonville', 'state': 'AR', 'position': 'OT', 'height': 77.0, 'weight': '285', 'compRating': '0.8392', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '126', 'stateRank': '15', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '107', '247stateRank': '13'}, {'school': 'vanderbilt', 'year': '2015', 'playerName': 'Andrew Rector', 'highSchool': 'Father Ryan', 'city': 'Nashville', 'state': 'TN', 'position': 'S', 'height': 73.0, 'weight': '190', 'compRating': '0.8386', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '86', 'stateRank': '30', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '62', '247stateRank': '23'}, {'school': 'vanderbilt', 'year': '2015', 'playerName': 'Darion DeBrossard', 'highSchool': 'Shiloh', 'city': 'Snellville', 'state': 'GA', 'position': 'OG', 'height': 77.0, 'weight': '320', 'compRating': '0.8375', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '75', 'stateRank': '120', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '69', '247stateRank': '114'}, {'school': 'vanderbilt', 'year': '2015', 'playerName': 'Jared Southers', 'highSchool': 'Seton Hall Preparatory School', 'city': 'West Orange', 'state': 'NJ', 'position': 'OT', 'height': 77.0, 'weight': '285', 'compRating': '0.8289', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '153', 'stateRank': '32', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '118', '247stateRank': '24'}, {'school': 'vanderbilt', 'year': '2015', 'playerName': 'Jared Pinkney', 'highSchool': 'Norcross', 'city': 'Norcross', 'state': 'GA', 'position': 'WR', 'height': 77.0, 'weight': '224', 'compRating': '0.8286', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '180', 'stateRank': '148', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '178', '247stateRank': '142'}, {'school': 'vanderbilt', 'year': '2015', 'playerName': 'Kyle Anderton', 'highSchool': 'Station Camp', 'city': 'Gallatin', 'state': 'TN', 'position': 'TE', 'height': 76.0, 'weight': '260', 'compRating': '0.8140', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '64', 'stateRank': '36', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '66', '247stateRank': '41'}, {'school': 'vanderbilt', 'year': '2015', 'playerName': 'Jay Hockaday', 'highSchool': 'C.P.A.', 'city': 'Nashville', 'state': 'TN', 'position': 'ILB', 'height': 75.0, 'weight': '215', 'compRating': '0.8092', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '71', 'stateRank': '40', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '36', '247stateRank': '27'}, {'school': 'vanderbilt', 'year': '2015', 'playerName': 'Egidio DellaRipa', 'highSchool': 'College of the Canyons', 'city': 'Valencia', 'state': 'CA', 'position': 'OG', 'height': 76.0, 'weight': '290', 'compRating': '0.7900', 'compStars': 2, 'nationalRank': '243', 'positionRank': '7', 'stateRank': '76', '247Rating': ' 79 ', '247Stars': 2, '247nationalRank': '215', '247positionRank': '8', '247stateRank': '64'}, {'school': 'vanderbilt', 'year': '2015', 'playerName': 'Jaire George', 'highSchool': 'DeMatha Catholic', 'city': 'Hyattsville', 'state': 'MD', 'position': 'ATH', 'height': 74.0, 'weight': '226', 'compRating': '0.7824', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '192', 'stateRank': '49', '247Rating': ' 77 ', '247Stars': 2, '247positionRank': '203', '247stateRank': '49'}, {'school': 'mississippi-state', 'year': '2003', 'playerName': 'Donovan Davis', 'highSchool': 'Callaway', 'city': 'Jackson', 'state': 'MS', 'position': 'OT', 'height': 79.0, 'weight': '330', 'compRating': '0.9629', 'compStars': 4, 'nationalRank': '72', 'positionRank': '3', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2003', 'playerName': 'Omarr Conner', 'highSchool': 'Noxubee County', 'city': 'Macon', 'state': 'MS', 'position': 'DUAL', 'height': 74.0, 'weight': '190', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '174', 'positionRank': '6', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2003', 'playerName': 'Devrick Hampton', 'highSchool': 'Greenville Weston', 'city': 'Greenville', 'state': 'MS', 'position': 'SDE', 'height': 75.0, 'weight': '275', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '264', 'positionRank': '17', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2003', 'playerName': 'Eric Fuller', 'highSchool': 'Independence C.C.', 'city': 'Independence', 'state': 'KS', 'position': 'CB', 'height': 74.0, 'weight': '195', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '39', 'positionRank': '7', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2003', 'playerName': 'Adrian Griffin', 'highSchool': 'LaGrange', 'city': 'Lagrange', 'state': 'GA', 'position': 'CB', 'height': 70.0, 'weight': '160', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '282', 'positionRank': '18', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2003', 'playerName': 'David Price', 'highSchool': 'Mandarin', 'city': 'Jacksonville', 'state': 'FL', 'position': 'OT', 'height': 77.0, 'weight': '315', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '304', 'positionRank': '21', 'stateRank': '42', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2003', 'playerName': 'Jason Jude', 'highSchool': 'Athens', 'city': 'Athens', 'state': 'AL', 'position': 'FB', 'height': 73.0, 'weight': '220', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '405', 'positionRank': '8', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2003', 'playerName': 'Joey Sanders', 'highSchool': 'Noxubee County', 'city': 'Macon', 'state': 'MS', 'position': 'WR', 'height': 74.0, 'weight': '200', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '422', 'positionRank': '37', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2003', 'playerName': 'Rickey Wright', 'highSchool': 'South Panola', 'city': 'Batesville', 'state': 'MS', 'position': 'CB', 'height': 72.0, 'weight': '185', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '446', 'positionRank': '28', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2003', 'playerName': 'Corey Clark', 'highSchool': 'Collins', 'city': 'Collins', 'state': 'MS', 'position': 'DT', 'height': 75.0, 'weight': '298', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '548', 'positionRank': '40', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2003', 'playerName': 'Jason Husband', 'highSchool': 'Jim Hill', 'city': 'Jackson', 'state': 'MS', 'position': 'WR', 'height': 76.0, 'weight': '200', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '615', 'positionRank': '59', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2003', 'playerName': 'Tyler Threadgill', 'highSchool': 'Philadelphia', 'city': 'Philadelphia', 'state': 'MS', 'position': 'ATH', 'height': 71.0, 'weight': '185', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '680', 'positionRank': '39', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2003', 'playerName': 'Michael Heard', 'highSchool': 'Lovejoy', 'city': 'Hampton', 'state': 'GA', 'position': 'OLB', 'height': 76.0, 'weight': '220', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '683', 'positionRank': '48', 'stateRank': '45', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2003', 'playerName': 'Brad Horton', 'highSchool': 'Spencer', 'city': 'Columbus', 'state': 'GA', 'position': 'OLB', 'height': 74.0, 'weight': '230', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '777', 'positionRank': '54', 'stateRank': '55', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2003', 'playerName': 'Jeramie Johnson', 'highSchool': 'Washington', 'city': 'Atlanta', 'state': 'GA', 'position': 'CB', 'height': 72.0, 'weight': '180', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '790', 'positionRank': '57', 'stateRank': '56', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2003', 'playerName': 'Avery Hannibal', 'highSchool': 'Troup County', 'city': 'Lagrange', 'state': 'GA', 'position': 'SDE', 'height': 74.0, 'weight': '255', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '793', 'positionRank': '42', 'stateRank': '57', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2003', 'playerName': 'Akeem Lofton', 'highSchool': 'Wayne County', 'city': 'Waynesboro', 'state': 'MS', 'position': 'WR', 'height': 71.0, 'weight': '175', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '817', 'positionRank': '83', 'stateRank': '22', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2003', 'playerName': 'Phernando Hill', 'highSchool': 'Marathon', 'city': 'Marathon', 'state': 'FL', 'position': 'OG', 'height': 75.0, 'weight': '295', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '839', 'positionRank': '65', 'stateRank': '104', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2003', 'playerName': 'Sandy Quinn', 'highSchool': 'Provine', 'city': 'Jackson', 'state': 'MS', 'position': 'WDE', 'height': 75.0, 'weight': '240', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '907', 'positionRank': '37', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2003', 'playerName': 'Carlton Rice', 'highSchool': 'J.O. Johnson', 'city': 'Huntsville', 'state': 'AL', 'position': 'OLB', 'height': 73.0, 'weight': '215', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '956', 'positionRank': '62', 'stateRank': '30', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2003', 'playerName': 'Dezmond Sherrod', 'highSchool': 'Caledonia', 'city': 'Caledonia', 'state': 'MS', 'position': 'TE', 'height': 75.0, 'weight': '224', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '962', 'positionRank': '56', 'stateRank': '27', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2003', 'playerName': 'Lance Fremin', 'highSchool': 'Starkville', 'city': 'Starkville', 'state': 'MS', 'position': 'OG', 'height': 74.0, 'weight': '270', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '89', 'stateRank': '31', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2003', 'playerName': 'Eric Butler', 'highSchool': 'Moss Point', 'city': 'Moss Point', 'state': 'MS', 'position': 'TE', 'height': 75.0, 'weight': '225', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '83', 'stateRank': '32', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2003', 'playerName': 'Andrew Powell', 'highSchool': 'Clewiston', 'city': 'Clewiston', 'state': 'FL', 'position': 'DT', 'height': 74.0, 'weight': '300', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '100', 'stateRank': '190', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2003', 'playerName': 'Brian Anderson', 'highSchool': 'Patrician Academy', 'city': 'Butler', 'state': 'AL', 'position': 'OT', 'height': 77.0, 'weight': '280', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '153', 'stateRank': '65', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2003', 'playerName': 'Royce Blackledge', 'highSchool': 'Northeast Jones', 'city': 'Laurel', 'state': 'MS', 'position': 'OT', 'height': 76.0, 'weight': '275', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '170', 'stateRank': '40', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2003', 'playerName': 'Deljuan Robinson', 'highSchool': 'Hernando', 'city': 'Hernando', 'state': 'MS', 'position': 'SDE', 'height': 76.0, 'weight': '288', 'compRating': '0.9934', 'compStars': 5, 'nationalRank': '14', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2003', 'playerName': 'Quinton Culberson', 'highSchool': 'Provine', 'city': 'Jackson', 'state': 'MS', 'position': 'S', 'height': 74.0, 'weight': '205', 'compRating': '0.9791', 'compStars': 4, 'nationalRank': '44', 'positionRank': '4', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2015', 'playerName': 'Calvin Ridley', 'highSchool': 'Monarch', 'city': 'Pompano Beach', 'state': 'FL', 'position': 'WR', 'height': 72.0, 'weight': '170', 'compRating': '0.9932', 'compStars': 5, 'nationalRank': '12', 'positionRank': '1', 'stateRank': '6', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '17', '247positionRank': '2', '247stateRank': '7'}, {'school': 'alabama', 'year': '2015', 'playerName': 'Kendall Sheffield', 'highSchool': 'Fort Bend Marshall', 'city': 'Missouri City', 'state': 'TX', 'position': 'CB', 'height': 72.0, 'weight': '181', 'compRating': '0.9901', 'compStars': 5, 'nationalRank': '20', 'positionRank': '4', 'stateRank': '3', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '31', '247positionRank': '4', '247stateRank': '5'}, {'school': 'alabama', 'year': '2015', 'playerName': 'Blake Barnett', 'highSchool': 'Santiago', 'city': 'Corona', 'state': 'CA', 'position': 'PRO', 'height': 76.5, 'weight': '200', 'compRating': '0.9898', 'compStars': 5, 'nationalRank': '22', 'positionRank': '2', 'stateRank': '6', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '8', '247positionRank': '1', '247stateRank': '1'}, {'school': 'alabama', 'year': '2015', 'playerName': 'Daron Payne', 'highSchool': 'Shades Valley', 'city': 'Birmingham', 'state': 'AL', 'position': 'DT', 'height': 74.0, 'weight': '325', 'compRating': '0.9879', 'compStars': 5, 'nationalRank': '29', 'positionRank': '7', 'stateRank': '1', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '52', '247positionRank': '8', '247stateRank': '2'}, {'school': 'alabama', 'year': '2015', 'playerName': 'Minkah Fitzpatrick', 'highSchool': 'St. Peters Prep', 'city': 'Jersey City', 'state': 'NJ', 'position': 'CB', 'height': 73.0, 'weight': '198', 'compRating': '0.9872', 'compStars': 5, 'nationalRank': '30', 'positionRank': '5', 'stateRank': '1', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '49', '247positionRank': '6', '247stateRank': '2'}, {'school': 'alabama', 'year': '2015', 'playerName': 'Damien Harris', 'highSchool': 'Madison Southern', 'city': 'Berea', 'state': 'KY', 'position': 'RB', 'height': 71.0, 'weight': '205', 'compRating': '0.9866', 'compStars': 5, 'nationalRank': '31', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '45', '247positionRank': '3', '247stateRank': '1'}, {'school': 'alabama', 'year': '2015', 'playerName': 'Deionte Thompson', 'highSchool': 'West Orange-Stark', 'city': 'Orange', 'state': 'TX', 'position': 'S', 'height': 74.0, 'weight': '181', 'compRating': '0.9806', 'compStars': 4, 'nationalRank': '44', 'positionRank': '2', 'stateRank': '10', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '40', '247positionRank': '2', '247stateRank': '7'}, {'school': 'alabama', 'year': '2015', 'playerName': 'Lester Cotton', 'highSchool': 'Central', 'city': 'Tuscaloosa', 'state': 'AL', 'position': 'OG', 'height': 76.0, 'weight': '325', 'compRating': '0.9749', 'compStars': 4, 'nationalRank': '54', 'positionRank': '4', 'stateRank': '3', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '59', '247positionRank': '4', '247stateRank': '3'}, {'school': 'alabama', 'year': '2015', 'playerName': 'Richie Petitbon', 'highSchool': 'Gonzaga', 'city': 'Washington', 'state': 'DC', 'position': 'OG', 'height': 76.0, 'weight': '301', 'compRating': '0.9696', 'compStars': 4, 'nationalRank': '62', 'positionRank': '5', 'stateRank': '1', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '63', '247positionRank': '5', '247stateRank': '1'}, {'school': 'alabama', 'year': '2015', 'playerName': 'Daylon Charlot', 'highSchool': 'Patterson', 'city': 'Patterson', 'state': 'LA', 'position': 'WR', 'height': 72.0, 'weight': '193', 'compRating': '0.9570', 'compStars': 4, 'nationalRank': '92', 'positionRank': '9', 'stateRank': '4', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '122', '247positionRank': '13', '247stateRank': '6'}, {'school': 'alabama', 'year': '2015', 'playerName': 'Mekhi Brown', 'highSchool': 'Carver', 'city': 'Columbus', 'state': 'GA', 'position': 'WDE', 'height': 76.5, 'weight': '222', 'compRating': '0.9467', 'compStars': 4, 'nationalRank': '116', 'positionRank': '8', 'stateRank': '13', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '88', '247positionRank': '5', '247stateRank': '10'}, {'school': 'alabama', 'year': '2015', 'playerName': 'Hale Hentges', 'highSchool': 'Helias', 'city': 'Jefferson City', 'state': 'MO', 'position': 'TE', 'height': 77.0, 'weight': '230', 'compRating': '0.9350', 'compStars': 4, 'nationalRank': '145', 'positionRank': '3', 'stateRank': '3', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '157', '247positionRank': '3', '247stateRank': '2'}, {'school': 'alabama', 'year': '2015', 'playerName': 'Desherrius Flowers', 'highSchool': 'Vigor', 'city': 'Mobile', 'state': 'AL', 'position': 'RB', 'height': 72.5, 'weight': '204', 'compRating': '0.9348', 'compStars': 4, 'nationalRank': '146', 'positionRank': '15', 'stateRank': '5'}, {'school': 'alabama', 'year': '2015', 'playerName': 'Shawn Burgess-Becker', 'highSchool': 'Monarch', 'city': 'Pompano Beach', 'state': 'FL', 'position': 'ATH', 'height': 73.0, 'weight': '185', 'compRating': '0.9283', 'compStars': 4, 'nationalRank': '165', 'positionRank': '10', 'stateRank': '24', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '243', '247positionRank': '17', '247stateRank': '31'}, {'school': 'alabama', 'year': '2015', 'playerName': 'Adonis Thomas', 'highSchool': 'Central Gwinnett', 'city': 'Lawrenceville', 'state': 'GA', 'position': 'OLB', 'height': 75.5, 'weight': '229', 'compRating': '0.9251', 'compStars': 4, 'nationalRank': '173', 'positionRank': '12', 'stateRank': '19', '247Rating': ' 87 ', '247Stars': 3, '247nationalRank': '50', '247positionRank': '5', '247stateRank': '19'}, {'school': 'alabama', 'year': '2015', 'playerName': 'Anfernee Jennings', 'highSchool': 'Dadeville', 'city': 'Dadeville', 'state': 'AL', 'position': 'WDE', 'height': 75.0, 'weight': '256', 'compRating': '0.9237', 'compStars': 4, 'nationalRank': '177', 'positionRank': '11', 'stateRank': '7', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '118', '247positionRank': '7', '247stateRank': '6'}, {'school': 'alabama', 'year': '2015', 'playerName': 'Ronnie Harrison', 'highSchool': 'Florida State Univ. School', 'city': 'Tallahassee', 'state': 'FL', 'position': 'S', 'height': 75.0, 'weight': '205', 'compRating': '0.9175', 'compStars': 4, 'nationalRank': '204', 'positionRank': '12', 'stateRank': '28', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '96', '247positionRank': '4', '247stateRank': '14'}, {'school': 'alabama', 'year': '2015', 'playerName': 'Dallas Warmack', 'highSchool': 'Mays', 'city': 'Atlanta', 'state': 'GA', 'position': 'OG', 'height': 73.5, 'weight': '306', 'compRating': '0.9121', 'compStars': 4, 'nationalRank': '219', 'positionRank': '10', 'stateRank': '21', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '16', '247stateRank': '24'}, {'school': 'alabama', 'year': '2015', 'playerName': 'Joshua McMillon', 'highSchool': 'Whitehaven', 'city': 'Memphis', 'state': 'TN', 'position': 'OLB', 'height': 75.0, 'weight': '239', 'compRating': '0.9084', 'compStars': 4, 'nationalRank': '241', 'positionRank': '16', 'stateRank': '9', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '27', '247stateRank': '13'}, {'school': 'alabama', 'year': '2015', 'playerName': 'Brandon Kennedy', 'highSchool': 'Wetumpka', 'city': 'Wetumpka', 'state': 'AL', 'position': 'OG', 'height': 74.5, 'weight': '295', 'compRating': '0.8987', 'compStars': 4, 'nationalRank': '296', 'positionRank': '19', 'stateRank': '10', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '25', '247stateRank': '12'}, {'school': 'alabama', 'year': '2015', 'playerName': 'Christian Bell', 'highSchool': 'Hoover', 'city': 'Hoover', 'state': 'AL', 'position': 'WDE', 'height': 76.0, 'weight': '240', 'compRating': '0.8790', 'compStars': 3, 'nationalRank': '407', 'positionRank': '16', 'stateRank': '15', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '26', '247stateRank': '17'}, {'school': 'alabama', 'year': '2015', 'playerName': 'Jonathan Taylor', 'highSchool': 'Copiah-Lincoln C.C.', 'city': 'Wesson', 'state': 'MS', 'position': 'DT', 'height': 76.0, 'weight': '335', 'compRating': '0.8732', 'compStars': 3, 'nationalRank': '34', 'positionRank': '4', 'stateRank': '13', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '20', '247positionRank': '2', '247stateRank': '8'}, {'school': 'alabama', 'year': '2015', 'playerName': 'Keaton Anderson', 'highSchool': 'Florence', 'city': 'Florence', 'state': 'AL', 'position': 'OLB', 'height': 73.0, 'weight': '215', 'compRating': '0.8630', 'compStars': 3, 'nationalRank': '594', 'positionRank': '42', 'stateRank': '21', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '53', '247stateRank': '30'}, {'school': 'alabama', 'year': '2015', 'playerName': 'Matt Womack', 'highSchool': 'Magnolia Heights School', 'city': 'Senatobia', 'state': 'MS', 'position': 'OT', 'height': 79.0, 'weight': '320', 'compRating': '0.8610', 'compStars': 3, 'nationalRank': '623', 'positionRank': '69', 'stateRank': '15', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '49', '247stateRank': '15'}, {'school': 'south-carolina', 'year': '2020', 'playerName': 'Jordan Burch', 'highSchool': 'Hammond School', 'city': 'Columbia', 'state': 'SC', 'position': 'DT', 'height': 77.0, 'weight': '275', 'compRating': '0.9954', 'compStars': 5, 'nationalRank': '8', 'positionRank': '2', 'stateRank': '1', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '17', '247positionRank': '4', '247stateRank': '1'}, {'school': 'south-carolina', 'year': '2020', 'playerName': 'MarShawn Lloyd', 'highSchool': 'DeMatha Catholic', 'city': 'Hyattsville', 'state': 'MD', 'position': 'RB', 'height': 69.0, 'weight': '211', 'compRating': '0.9780', 'compStars': 4, 'nationalRank': '43', 'positionRank': '5', 'stateRank': '4', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '88', '247positionRank': '8', '247stateRank': '5'}, {'school': 'south-carolina', 'year': '2020', 'playerName': 'Luke Doty', 'highSchool': 'Myrtle Beach', 'city': 'Myrtle Beach', 'state': 'SC', 'position': 'DUAL', 'height': 73.0, 'weight': '185', 'compRating': '0.9633', 'compStars': 4, 'nationalRank': '86', 'positionRank': '4', 'stateRank': '2', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '109', '247positionRank': '6', '247stateRank': '2'}, {'school': 'south-carolina', 'year': '2020', 'playerName': 'Alex Huntley', 'highSchool': 'Hammond School', 'city': 'Columbia', 'state': 'SC', 'position': 'DT', 'height': 75.0, 'weight': '279', 'compRating': '0.9184', 'compStars': 4, 'nationalRank': '215', 'positionRank': '20', 'stateRank': '4', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '214', '247positionRank': '21', '247stateRank': '4'}, {'school': 'south-carolina', 'year': '2020', 'playerName': 'Mohamed Kaba', 'highSchool': 'Clinton', 'city': 'Clinton', 'state': 'NC', 'position': 'ILB', 'height': 74.0, 'weight': '212', 'compRating': '0.9126', 'compStars': 4, 'nationalRank': '238', 'positionRank': '13', 'stateRank': '11', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '106', '247positionRank': '7', '247stateRank': '5'}, {'school': 'south-carolina', 'year': '2020', 'playerName': 'Eric Shaw', 'highSchool': 'Reeltown', 'city': 'Notasulga', 'state': 'AL', 'position': 'ATH', 'height': 76.0, 'weight': '205', 'compRating': '0.9076', 'compStars': 4, 'nationalRank': '257', 'positionRank': '7', 'stateRank': '10', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '107', '247positionRank': '3', '247stateRank': '4'}, {'school': 'south-carolina', 'year': '2020', 'playerName': 'Tonka Hemingway', 'highSchool': 'Conway', 'city': 'Conway', 'state': 'SC', 'position': 'DT', 'height': 74.0, 'weight': '259', 'compRating': '0.8988', 'compStars': 4, 'nationalRank': '302', 'positionRank': '30', 'stateRank': '5', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '48', '247stateRank': '10'}, {'school': 'south-carolina', 'year': '2020', 'playerName': 'Rico Powers Jr.', 'highSchool': 'Hapeville Charter', 'city': 'Atlanta', 'state': 'GA', 'position': 'WR', 'height': 73.0, 'weight': '183', 'compRating': '0.8986', 'compStars': 4, 'nationalRank': '304', 'positionRank': '51', 'stateRank': '30', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '58', '247stateRank': '32'}, {'school': 'south-carolina', 'year': '2020', 'playerName': 'Mike Wyman', 'highSchool': 'Dudley', 'city': 'Greensboro', 'state': 'NC', 'position': 'WR', 'height': 74.0, 'weight': '188', 'compRating': '0.8945', 'compStars': 4, 'nationalRank': '338', 'positionRank': '58', 'stateRank': '13', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2020', 'playerName': 'Jaheim Bell', 'highSchool': 'Valdosta', 'city': 'Valdosta', 'state': 'GA', 'position': 'ATH', 'height': 74.0, 'weight': '207', 'compRating': '0.8884', 'compStars': 3, 'nationalRank': '394', 'positionRank': '17', 'stateRank': '38', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '18', '247stateRank': '37'}, {'school': 'south-carolina', 'year': '2020', 'playerName': 'ZaQuandre White', 'highSchool': 'Iowa Western C.C.', 'city': 'Council Bluffs', 'state': 'IA', 'position': 'RB', 'height': 73.0, 'weight': '200', 'compRating': '0.8884', 'compStars': 3, 'nationalRank': '15', 'positionRank': '1', 'stateRank': '2', '247Rating': ' 89 ', '247Stars': 3, '247nationalRank': '19', '247positionRank': '1', '247stateRank': '2'}, {'school': 'south-carolina', 'year': '2020', 'playerName': 'Tyshawn Wannamaker', 'highSchool': 'Calhoun County', 'city': 'Saint Matthews', 'state': 'SC', 'position': 'OG', 'height': 75.0, 'weight': '347', 'compRating': '0.8825', 'compStars': 3, 'nationalRank': '448', 'positionRank': '21', 'stateRank': '7', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '28', '247stateRank': '11'}, {'school': 'south-carolina', 'year': '2020', 'playerName': 'Ger-Cari Caldwell', 'highSchool': 'Northwestern', 'city': 'Rock Hill', 'state': 'SC', 'position': 'WR', 'height': 76.0, 'weight': '195', 'compRating': '0.8727', 'compStars': 3, 'nationalRank': '580', 'positionRank': '93', 'stateRank': '8', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '52', '247stateRank': '7'}, {'school': 'south-carolina', 'year': '2020', 'playerName': 'Trai Jones', 'highSchool': 'Abbeville', 'city': 'Abbeville', 'state': 'SC', 'position': 'OC', 'height': 74.0, 'weight': '276', 'compRating': '0.8695', 'compStars': 3, 'nationalRank': '625', 'positionRank': '15', 'stateRank': '9', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '244', '247positionRank': '5', '247stateRank': '5'}, {'school': 'south-carolina', 'year': '2020', 'playerName': 'Joey Hunter', 'highSchool': 'Sandy Creek', 'city': 'Tyrone', 'state': 'GA', 'position': 'CB', 'height': 72.0, 'weight': '197', 'compRating': '0.8675', 'compStars': 3, 'nationalRank': '665', 'positionRank': '49', 'stateRank': '68', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '108', '247stateRank': '111'}, {'school': 'south-carolina', 'year': '2020', 'playerName': 'Jazston Turnetine', 'highSchool': 'Hutchinson C.C.', 'city': 'Hutchinson', 'state': 'KS', 'position': 'OT', 'height': 78.0, 'weight': '337', 'compRating': '0.8668', 'compStars': 3, 'nationalRank': '46', 'positionRank': '6', 'stateRank': '11', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '57', '247positionRank': '7', '247stateRank': '13'}, {'school': 'south-carolina', 'year': '2020', 'playerName': 'Vershon Lee', 'highSchool': 'Freedom', 'city': 'Woodbridge', 'state': 'VA', 'position': 'OG', 'height': 75.0, 'weight': '300', 'compRating': '0.8647', 'compStars': 3, 'nationalRank': '715', 'positionRank': '44', 'stateRank': '18', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '33', '247stateRank': '17'}, {'school': 'south-carolina', 'year': '2020', 'playerName': 'Dominick Hill', 'highSchool': 'Jones', 'city': 'Orlando', 'state': 'FL', 'position': 'CB', 'height': 72.0, 'weight': '188', 'compRating': '0.8646', 'compStars': 3, 'nationalRank': '741', 'positionRank': '60', 'stateRank': '95', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '73', '247stateRank': '90'}, {'school': 'south-carolina', 'year': '2020', 'playerName': "O'Donnell Fortune", 'highSchool': 'Sumter', 'city': 'Sumter', 'state': 'SC', 'position': 'S', 'height': 73.0, 'weight': '172', 'compRating': '0.8639', 'compStars': 3, 'nationalRank': '752', 'positionRank': '58', 'stateRank': '11', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '40', '247stateRank': '9'}, {'school': 'south-carolina', 'year': '2020', 'playerName': 'Makius Scott', 'highSchool': 'Gainesville', 'city': 'Gainesville', 'state': 'GA', 'position': 'DT', 'height': 75.0, 'weight': '306', 'compRating': '0.8639', 'compStars': 3, 'nationalRank': '753', 'positionRank': '62', 'stateRank': '74', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '45', '247stateRank': '48'}, {'school': 'south-carolina', 'year': '2020', 'playerName': 'Rashad Amos', 'highSchool': 'Sandy Creek', 'city': 'Tyrone', 'state': 'GA', 'position': 'RB', 'height': 72.0, 'weight': '213', 'compRating': '0.8509', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '72', 'stateRank': '115', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '62', '247stateRank': '89'}, {'school': 'south-carolina', 'year': '2020', 'playerName': 'Gilber Edmond', 'highSchool': 'Fort Pierce Westwood', 'city': 'Fort Pierce', 'state': 'FL', 'position': 'WDE', 'height': 76.0, 'weight': '215', 'compRating': '0.8410', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '71', 'stateRank': '185', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '75', '247stateRank': '190'}, {'school': 'south-carolina', 'year': '2020', 'playerName': 'Kai Kroeger', 'highSchool': 'Lake Forest', 'city': 'Lake Forest', 'state': 'IL', 'position': 'P', 'height': 75.0, 'weight': '190', 'compRating': '0.8189', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '3', 'stateRank': '40', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '2', '247stateRank': '57'}, {'school': 'south-carolina', 'year': '2020', 'playerName': 'Mitch Jeter', 'highSchool': 'Cannon School', 'city': 'Concord', 'state': 'NC', 'position': 'K', 'height': 71.0, 'weight': '175', 'compRating': '0.7986', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '12', 'stateRank': '101', '247Rating': ' 78 ', '247Stars': 2, '247positionRank': '10', '247stateRank': '108'}, {'school': 'alabama', 'year': '2014', 'playerName': 'Cam Robinson', 'highSchool': 'West Monroe', 'city': 'West Monroe', 'state': 'LA', 'position': 'OT', 'height': 79.0, 'weight': '335', 'compRating': '0.9980', 'compStars': 5, 'nationalRank': '4', 'positionRank': '1', 'stateRank': '2', '247Rating': ' 100 ', '247Stars': 5, '247nationalRank': '3', '247positionRank': '1', '247stateRank': '2'}, {'school': 'alabama', 'year': '2014', 'playerName': "Da'Shawn Hand", 'highSchool': 'Woodbridge', 'city': 'Woodbridge', 'state': 'VA', 'position': 'SDE', 'height': 76.0, 'weight': '265', 'compRating': '0.9979', 'compStars': 5, 'nationalRank': '5', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 100 ', '247Stars': 5, '247nationalRank': '7', '247positionRank': '1', '247stateRank': '1'}, {'school': 'alabama', 'year': '2014', 'playerName': 'Tony Brown', 'highSchool': 'Ozen', 'city': 'Beaumont', 'state': 'TX', 'position': 'CB', 'height': 72.0, 'weight': '188', 'compRating': '0.9952', 'compStars': 5, 'nationalRank': '9', 'positionRank': '2', 'stateRank': '2', '247Rating': ' 99 ', '247Stars': 5, '247nationalRank': '16', '247positionRank': '2', '247stateRank': '2'}, {'school': 'alabama', 'year': '2014', 'playerName': 'Marlon Humphrey', 'highSchool': 'Hoover', 'city': 'Hoover', 'state': 'AL', 'position': 'CB', 'height': 73.0, 'weight': '175', 'compRating': '0.9942', 'compStars': 5, 'nationalRank': '11', 'positionRank': '3', 'stateRank': '1', '247Rating': ' 99 ', '247Stars': 5, '247nationalRank': '10', '247positionRank': '1', '247stateRank': '1'}, {'school': 'alabama', 'year': '2014', 'playerName': 'Rashaan Evans', 'highSchool': 'Auburn', 'city': 'Auburn', 'state': 'AL', 'position': 'OLB', 'height': 75.0, 'weight': '220', 'compRating': '0.9926', 'compStars': 5, 'nationalRank': '14', 'positionRank': '1', 'stateRank': '2', '247Rating': ' 99 ', '247Stars': 5, '247nationalRank': '11', '247positionRank': '1', '247stateRank': '2'}, {'school': 'alabama', 'year': '2014', 'playerName': 'Christian Miller', 'highSchool': 'Spring Valley', 'city': 'Columbia', 'state': 'SC', 'position': 'OLB', 'height': 76.0, 'weight': '222', 'compRating': '0.9804', 'compStars': 4, 'nationalRank': '40', 'positionRank': '3', 'stateRank': '1', '247Rating': ' 99 ', '247Stars': 5, '247nationalRank': '14', '247positionRank': '3', '247stateRank': '1'}, {'school': 'alabama', 'year': '2014', 'playerName': 'Hootie Jones', 'highSchool': 'Neville', 'city': 'Monroe', 'state': 'LA', 'position': 'S', 'height': 74.0, 'weight': '220', 'compRating': '0.9758', 'compStars': 4, 'nationalRank': '50', 'positionRank': '4', 'stateRank': '6', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '111', '247positionRank': '8', '247stateRank': '10'}, {'school': 'alabama', 'year': '2014', 'playerName': 'Ronnie Clark', 'highSchool': 'Calera', 'city': 'Calera', 'state': 'AL', 'position': 'OLB', 'height': 74.5, 'weight': '215', 'compRating': '0.9670', 'compStars': 4, 'nationalRank': '72', 'positionRank': '6', 'stateRank': '5', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '116', '247positionRank': '8', '247stateRank': '6'}, {'school': 'alabama', 'year': '2014', 'playerName': 'Ross Pierschbacher', 'highSchool': 'Cedar Falls', 'city': 'Cedar Falls', 'state': 'IA', 'position': 'OT', 'height': 76.0, 'weight': '290', 'compRating': '0.9657', 'compStars': 4, 'nationalRank': '73', 'positionRank': '6', 'stateRank': '1', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '120', '247positionRank': '11', '247stateRank': '2'}, {'school': 'alabama', 'year': '2014', 'playerName': 'Joshua Frazier', 'highSchool': 'Har-Ber', 'city': 'Springdale', 'state': 'AR', 'position': 'DT', 'height': 75.0, 'weight': '325', 'compRating': '0.9636', 'compStars': 4, 'nationalRank': '79', 'positionRank': '4', 'stateRank': '1', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '36', '247positionRank': '6', '247stateRank': '1'}, {'school': 'alabama', 'year': '2014', 'playerName': 'David Cornwell', 'highSchool': 'Norman North', 'city': 'Norman', 'state': 'OK', 'position': 'PRO', 'height': 77.0, 'weight': '241', 'compRating': '0.9634', 'compStars': 4, 'nationalRank': '82', 'positionRank': '4', 'stateRank': '1', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '65', '247positionRank': '3', '247stateRank': '1'}, {'school': 'alabama', 'year': '2014', 'playerName': 'Cam Sims', 'highSchool': 'Ouachita Parish', 'city': 'Monroe', 'state': 'LA', 'position': 'WR', 'height': 76.0, 'weight': '199', 'compRating': '0.9619', 'compStars': 4, 'nationalRank': '87', 'positionRank': '12', 'stateRank': '9', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '82', '247positionRank': '10', '247stateRank': '7'}, {'school': 'alabama', 'year': '2014', 'playerName': 'Dominick Jackson', 'highSchool': 'College of San Mateo', 'city': 'San Mateo', 'state': 'CA', 'position': 'OT', 'height': 79.0, 'weight': '304', 'compRating': '0.9403', 'compStars': 4, 'nationalRank': '2', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '9', '247positionRank': '3', '247stateRank': '2'}, {'school': 'alabama', 'year': '2014', 'playerName': 'JC Hassenauer', 'highSchool': 'East Ridge', 'city': 'Saint Paul', 'state': 'MN', 'position': 'OC', 'height': 74.5, 'weight': '292', 'compRating': '0.9295', 'compStars': 4, 'nationalRank': '167', 'positionRank': '1', 'stateRank': '2', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '133', '247positionRank': '1', '247stateRank': '2'}, {'school': 'alabama', 'year': '2014', 'playerName': 'Shaun Dion Hamilton', 'highSchool': 'Carver', 'city': 'Montgomery', 'state': 'AL', 'position': 'ILB', 'height': 72.0, 'weight': '240', 'compRating': '0.9190', 'compStars': 4, 'nationalRank': '206', 'positionRank': '9', 'stateRank': '8', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '235', '247positionRank': '9', '247stateRank': '8'}, {'school': 'alabama', 'year': '2014', 'playerName': 'Derek Kief', 'highSchool': 'LaSalle', 'city': 'Cincinnati', 'state': 'OH', 'position': 'WR', 'height': 77.0, 'weight': '197', 'compRating': '0.9149', 'compStars': 4, 'nationalRank': '216', 'positionRank': '33', 'stateRank': '8', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '157', '247positionRank': '24', '247stateRank': '7'}, {'school': 'alabama', 'year': '2014', 'playerName': 'Jarran Reed', 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'DT', 'height': 76.0, 'weight': '310', 'compRating': '0.8998', 'compStars': 4, 'nationalRank': '13', 'positionRank': '2', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2014', 'playerName': 'D.J. Pettway', 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'SDE', 'height': 75.0, 'weight': '250', 'compRating': '0.8994', 'compStars': 4, 'nationalRank': '14', 'positionRank': '2', 'stateRank': '5', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '22', '247positionRank': '4', '247stateRank': '5'}, {'school': 'alabama', 'year': '2014', 'playerName': 'Joshua Casher', 'highSchool': "St. Paul's Episcopal", 'city': 'Mobile', 'state': 'AL', 'position': 'OC', 'height': 73.0, 'weight': '297', 'compRating': '0.8984', 'compStars': 4, 'nationalRank': '280', 'positionRank': '2', 'stateRank': '10', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '3', '247stateRank': '11'}, {'school': 'alabama', 'year': '2014', 'playerName': 'Keith Holcombe', 'highSchool': 'Hillcrest', 'city': 'Tuscaloosa', 'state': 'AL', 'position': 'ATH', 'height': 76.0, 'weight': '210', 'compRating': '0.8970', 'compStars': 4, 'nationalRank': '284', 'positionRank': '26', 'stateRank': '11', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '240', '247positionRank': '19', '247stateRank': '9'}, {'school': 'alabama', 'year': '2014', 'playerName': 'Johnny Dwight', 'highSchool': 'Wilcox County', 'city': 'Rochelle', 'state': 'GA', 'position': 'DT', 'height': 74.5, 'weight': '303', 'compRating': '0.8914', 'compStars': 4, 'nationalRank': '322', 'positionRank': '26', 'stateRank': '26', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '194', '247positionRank': '15', '247stateRank': '15'}, {'school': 'alabama', 'year': '2014', 'playerName': 'O.J. Smith', 'highSchool': 'Airline', 'city': 'Bossier City', 'state': 'LA', 'position': 'DT', 'height': 74.0, 'weight': '320', 'compRating': '0.8824', 'compStars': 3, 'nationalRank': '381', 'positionRank': '31', 'stateRank': '18', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '34', '247stateRank': '22'}, {'school': 'alabama', 'year': '2014', 'playerName': 'Ty Flournoy-Smith', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'TE', 'height': 75.0, 'weight': '248', 'compRating': '0.8468', 'compStars': 3, 'nationalRank': '105', 'positionRank': '5', 'stateRank': '5', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '76', '247positionRank': '2', '247stateRank': '5'}, {'school': 'alabama', 'year': '2014', 'playerName': 'JK Scott', 'highSchool': 'J.K. Mullen', 'city': 'Denver', 'state': 'CO', 'position': 'K', 'height': 76.0, 'weight': '185', 'compRating': '0.8328', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '3', 'stateRank': '7', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '6', '247stateRank': '11'}, {'school': 'alabama', 'year': '2014', 'playerName': 'Bo Scarbrough', 'highSchool': 'IMG Academy', 'city': 'Bradenton', 'state': 'FL', 'position': 'ATH', 'height': 74.0, 'weight': '225', 'compRating': '0.9918', 'compStars': 5, 'nationalRank': '16', 'positionRank': '2', 'stateRank': '2', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '35', '247positionRank': '3', '247stateRank': '6'}, {'school': 'alabama', 'year': '2014', 'playerName': 'Montel McBride', 'highSchool': 'Plant City', 'city': 'Plant City', 'state': 'FL', 'position': 'OG', 'height': 76.0, 'weight': '329', 'compRating': '0.8761', 'compStars': 3, 'nationalRank': '430', 'positionRank': '23', 'stateRank': '60'}, {'school': 'vanderbilt', 'year': '2014', 'playerName': 'Nifae Lealao', 'highSchool': 'Capital Christian', 'city': 'Sacramento', 'state': 'CA', 'position': 'SDE', 'height': 77.0, 'weight': '282', 'compRating': '0.9542', 'compStars': 4, 'nationalRank': '100', 'positionRank': '5', 'stateRank': '9', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '72', '247positionRank': '4', '247stateRank': '7'}, {'school': 'vanderbilt', 'year': '2014', 'playerName': 'Emmanuel Smith', 'highSchool': 'Oakland', 'city': 'Murfreesboro', 'state': 'TN', 'position': 'S', 'height': 74.0, 'weight': '200', 'compRating': '0.8922', 'compStars': 4, 'nationalRank': '316', 'positionRank': '23', 'stateRank': '7', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '28', '247stateRank': '7'}, {'school': 'vanderbilt', 'year': '2014', 'playerName': 'Dallas Rivers', 'highSchool': 'Stephenson', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'ATH', 'height': 72.0, 'weight': '200', 'compRating': '0.8707', 'compStars': 3, 'nationalRank': '478', 'positionRank': '42', 'stateRank': '41', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '44', '247stateRank': '53'}, {'school': 'vanderbilt', 'year': '2014', 'playerName': 'Trent Sherfield', 'highSchool': 'Danville', 'city': 'Danville', 'state': 'IL', 'position': 'S', 'height': 74.0, 'weight': '185', 'compRating': '0.8649', 'compStars': 3, 'nationalRank': '545', 'positionRank': '46', 'stateRank': '19', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '62', '247stateRank': '24'}, {'school': 'vanderbilt', 'year': '2014', 'playerName': 'Cole Hardin', 'highSchool': 'Florence', 'city': 'Florence', 'state': 'AL', 'position': 'OT', 'height': 77.0, 'weight': '286', 'compRating': '0.8584', 'compStars': 3, 'nationalRank': '644', 'positionRank': '58', 'stateRank': '18', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '66', '247stateRank': '19'}, {'school': 'vanderbilt', 'year': '2014', 'playerName': 'Ronald Monroe', 'highSchool': 'Fort Bend Bush', 'city': 'Richmond', 'state': 'TX', 'position': 'ATH', 'height': 74.0, 'weight': '175', 'compRating': '0.8569', 'compStars': 3, 'nationalRank': '677', 'positionRank': '54', 'stateRank': '83'}, {'school': 'vanderbilt', 'year': '2014', 'playerName': 'Bryce Lewis', 'highSchool': 'Parkview', 'city': 'Lilburn', 'state': 'GA', 'position': 'CB', 'height': 73.0, 'weight': '170', 'compRating': '0.8534', 'compStars': 3, 'nationalRank': '745', 'positionRank': '53', 'stateRank': '67', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '75', '247stateRank': '83'}, {'school': 'vanderbilt', 'year': '2014', 'playerName': 'Bailey Granier', 'highSchool': 'South Lafourche', 'city': 'Galliano', 'state': 'LA', 'position': 'OT', 'height': 78.0, 'weight': '315', 'compRating': '0.8444', 'compStars': 3, 'nationalRank': '922', 'positionRank': '83', 'stateRank': '34', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '105', '247stateRank': '46'}, {'school': 'vanderbilt', 'year': '2014', 'playerName': 'Bruno Reagan', 'highSchool': 'Clarksville', 'city': 'Clarksville', 'state': 'TN', 'position': 'OG', 'height': 75.0, 'weight': '301', 'compRating': '0.8441', 'compStars': 3, 'nationalRank': '925', 'positionRank': '48', 'stateRank': '16', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '42', '247stateRank': '16'}, {'school': 'vanderbilt', 'year': '2014', 'playerName': 'Caleb Scott', 'highSchool': 'North Gwinnett', 'city': 'Suwanee', 'state': 'GA', 'position': 'WR', 'height': 75.0, 'weight': '180', 'compRating': '0.8422', 'compStars': 3, 'nationalRank': '969', 'positionRank': '128', 'stateRank': '86', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '112', '247stateRank': '78'}, {'school': 'vanderbilt', 'year': '2014', 'playerName': 'Tre Herndon', 'highSchool': 'East Hamilton', 'city': 'Ooltewah', 'state': 'TN', 'position': 'CB', 'height': 72.0, 'weight': '175', 'compRating': '0.8386', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '81', 'stateRank': '17', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '62', '247stateRank': '12'}, {'school': 'vanderbilt', 'year': '2014', 'playerName': 'Wade Freebeck', 'highSchool': 'St. Thomas Aquinas', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'PRO', 'height': 75.0, 'weight': '180', 'compRating': '0.8323', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '48', 'stateRank': '163', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '61', '247stateRank': '179'}, {'school': 'vanderbilt', 'year': '2014', 'playerName': 'Ladarius Wiley', 'highSchool': 'Cathedral', 'city': 'Los Angeles', 'state': 'CA', 'position': 'WR', 'height': 73.0, 'weight': '185', 'compRating': '0.8319', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '156', 'stateRank': '118', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '160', '247stateRank': '113'}, {'school': 'vanderbilt', 'year': '2014', 'playerName': 'Louis Vecchio', 'highSchool': 'Villa Park', 'city': 'Villa Park', 'state': 'CA', 'position': 'SDE', 'height': 76.0, 'weight': '232', 'compRating': '0.8288', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '59', 'stateRank': '125', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '65', '247stateRank': '130'}, {'school': 'vanderbilt', 'year': '2014', 'playerName': 'Sekou Clark', 'highSchool': 'Ryan', 'city': 'Denton', 'state': 'TX', 'position': 'WDE', 'height': 75.0, 'weight': '235', 'compRating': '0.8184', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '73', 'stateRank': '203', '247Rating': ' 78 ', '247Stars': 2, '247positionRank': '93', '247stateRank': '277'}, {'school': 'vanderbilt', 'year': '2014', 'playerName': 'Rashad Canty', 'highSchool': 'Riverdale', 'city': 'Riverdale', 'state': 'GA', 'position': 'WR', 'height': 76.0, 'weight': '205', 'compRating': '0.8173', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '183', 'stateRank': '126', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '159', '247stateRank': '109'}, {'school': 'vanderbilt', 'year': '2014', 'playerName': 'Khari Blasingame', 'highSchool': 'Buckhorn', 'city': 'New Market', 'state': 'AL', 'position': 'S', 'height': 73.0, 'weight': '204', 'compRating': '0.8172', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '125', 'stateRank': '43', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '67', '247stateRank': '26'}, {'school': 'vanderbilt', 'year': '2014', 'playerName': 'Shawn Stankavage', 'highSchool': 'Cardinal Gibbons', 'city': 'Raleigh', 'state': 'NC', 'position': 'PRO', 'height': 74.0, 'weight': '185', 'compRating': '0.8159', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '66', 'stateRank': '50', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '34', '247stateRank': '24'}, {'school': 'vanderbilt', 'year': '2014', 'playerName': 'Hawkins Mann', 'highSchool': 'Burroughs', 'city': 'Burbank', 'state': 'CA', 'position': 'WDE', 'height': 76.0, 'weight': '220', 'compRating': '0.8099', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '82', 'stateRank': '159', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '83', '247stateRank': '149'}, {'school': 'vanderbilt', 'year': '2014', 'playerName': 'Arnold Tarpley', 'highSchool': 'Central Catholic', 'city': 'Pittsburgh', 'state': 'PA', 'position': 'S', 'height': 73.0, 'weight': '190', 'compRating': '0.8092', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '142', 'stateRank': '52', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '92', '247stateRank': '34'}, {'school': 'vanderbilt', 'year': '2014', 'playerName': 'Hayden Lekacz', 'highSchool': 'Glenbard West', 'city': 'Glen Ellyn', 'state': 'IL', 'position': 'K', 'height': 73.0, 'weight': '175', 'compRating': '0.7898', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '20', 'stateRank': '58', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '9', '247stateRank': '52'}, {'school': 'vanderbilt', 'year': '2014', 'playerName': 'Charles Wright', 'highSchool': 'Irvine', 'city': 'Irvine', 'state': 'CA', 'position': 'WDE', 'height': 75.0, 'weight': '220', 'compRating': '0.7817', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '114', 'stateRank': '202', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '86', '247stateRank': '154'}, {'school': 'vanderbilt', 'year': '2014', 'playerName': 'Riley Tindol', 'highSchool': 'Autauga Academy', 'city': 'Prattville', 'state': 'AL', 'position': 'OT', 'height': 78.0, 'weight': '270', 'compRating': '0.7783', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '187', 'stateRank': '69', '247Rating': ' 78 ', '247Stars': 2, '247positionRank': '159', '247stateRank': '67'}, {'school': 'vanderbilt', 'year': '2014', 'playerName': 'Davis Winkie', 'highSchool': 'South Forsyth', 'city': 'Cumming', 'state': 'GA', 'position': 'LS', 'height': 78.0, 'weight': '250', 'compRating': '0.7609', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '5', 'stateRank': '243', '247Rating': ' 75 ', '247Stars': 2, '247positionRank': '7', '247stateRank': '206'}, {'school': 'vanderbilt', 'year': '2014', 'playerName': 'Alim Muhammad', 'highSchool': 'Mary Institute & St Louis Country Day', 'city': 'Saint Louis', 'state': 'MO', 'position': 'CB', 'height': 69.0, 'weight': '160', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2002', 'playerName': 'Nick Turner', 'highSchool': 'Washington', 'city': 'Atlanta', 'state': 'GA', 'position': 'RB', 'height': 71.0, 'weight': '195', 'compRating': '0.9343', 'compStars': 4, 'nationalRank': '105', 'positionRank': '12', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2002', 'playerName': 'Markell McKinley', 'highSchool': 'Weir Attendance Center', 'city': 'Weir', 'state': 'MS', 'position': 'SDE', 'height': 75.0, 'weight': '267', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '137', 'positionRank': '8', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2002', 'playerName': 'Odell Bradley', 'highSchool': 'Copiah-Lincoln C.C.', 'city': 'Wesson', 'state': 'MS', 'position': 'CB', 'height': 71.0, 'weight': '185', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '51', 'positionRank': '5', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2002', 'playerName': 'Keith Andrews', 'highSchool': 'Ouachita Christian School', 'city': 'Monroe', 'state': 'LA', 'position': 'K', 'height': 72.0, 'weight': '175', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '260', 'positionRank': '6', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2002', 'playerName': 'Manuel Dickson', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'OG', 'height': 76.0, 'weight': '285', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '87', 'positionRank': '8', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2002', 'playerName': 'Chris Swain', 'highSchool': 'Jones College', 'city': 'Ellisville', 'state': 'MS', 'position': 'S', 'height': 72.0, 'weight': '190', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '133', 'positionRank': '7', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2002', 'playerName': 'Richard Burch', 'highSchool': 'Brandon', 'city': 'Brandon', 'state': 'MS', 'position': 'OT', 'height': 77.0, 'weight': '305', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '488', 'positionRank': '38', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2002', 'playerName': 'Aries Nelson', 'highSchool': 'East Side', 'city': 'Cleveland', 'state': 'MS', 'position': 'DUAL', 'height': 75.0, 'weight': '200', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '518', 'positionRank': '22', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2002', 'playerName': 'Brandon Wright', 'highSchool': 'East', 'city': 'Memphis', 'state': 'TN', 'position': 'WR', 'height': 70.0, 'weight': '170', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '533', 'positionRank': '54', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2002', 'playerName': 'Ken Topps', 'highSchool': 'Shannon', 'city': 'Shannon', 'state': 'MS', 'position': 'ATH', 'height': 72.0, 'weight': '170', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '540', 'positionRank': '31', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2002', 'playerName': 'Kenneth Kern', 'highSchool': 'Clarksdale', 'city': 'Clarksdale', 'state': 'MS', 'position': 'ILB', 'height': 73.0, 'weight': '225', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '602', 'positionRank': '33', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2002', 'playerName': 'Scott Shurden', 'highSchool': 'Neshoba Central', 'city': 'Philadelphia', 'state': 'MS', 'position': 'K', 'height': 68.0, 'weight': '185', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '660', 'positionRank': '13', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2002', 'playerName': 'Tee Milons', 'highSchool': 'Starkville', 'city': 'Starkville', 'state': 'MS', 'position': 'WR', 'height': 70.0, 'weight': '165', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '711', 'positionRank': '69', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2002', 'playerName': 'Justin Tyler', 'highSchool': 'Jones County', 'city': 'Gray', 'state': 'GA', 'position': 'PRO', 'height': 76.0, 'weight': '220', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '736', 'positionRank': '23', 'stateRank': '54', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2002', 'playerName': 'Otis Riddley', 'highSchool': 'Provine', 'city': 'Jackson', 'state': 'MS', 'position': 'DT', 'height': 75.0, 'weight': '303', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '833', 'positionRank': '57', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2002', 'playerName': 'Will Prosser', 'highSchool': 'Starkville Academy', 'city': 'Starkville', 'state': 'MS', 'position': 'WR', 'height': 76.0, 'weight': '205', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '874', 'positionRank': '83', 'stateRank': '22', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2002', 'playerName': 'Roosevelt Tate', 'highSchool': 'Hamilton', 'city': 'Memphis', 'state': 'TN', 'position': 'SDE', 'height': 76.0, 'weight': '250', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '60', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2002', 'playerName': 'Willie Evans', 'highSchool': 'Wayne County', 'city': 'Waynesboro', 'state': 'MS', 'position': 'DT', 'height': 74.0, 'weight': '225', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '88', 'stateRank': '28', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2002', 'playerName': 'David Heard', 'highSchool': 'Vicksburg', 'city': 'Vicksburg', 'state': 'MS', 'position': 'CB', 'height': 72.0, 'weight': '181', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '91', 'stateRank': '29', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2002', 'playerName': 'Blake Pettit', 'highSchool': 'Olive Branch', 'city': 'Olive Branch', 'state': 'MS', 'position': 'TE', 'height': 77.0, 'weight': '228', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '60', 'stateRank': '30', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2002', 'playerName': 'Corvelli Haynes', 'highSchool': 'East Side', 'city': 'Cleveland', 'state': 'MS', 'position': 'ILB', 'height': 75.0, 'weight': '220', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '64', 'stateRank': '31', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2002', 'playerName': 'James Cochran', 'highSchool': 'Memphis Central', 'city': 'Memphis', 'state': 'TN', 'position': 'OG', 'height': 78.0, 'weight': '280', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '110', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2002', 'playerName': 'Brett Morgan', 'highSchool': 'Warren Central', 'city': 'Vicksburg', 'state': 'MS', 'position': 'DUAL', 'height': 72.0, 'weight': '185', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '44', 'stateRank': '37', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2002', 'playerName': 'Bryson Davis', 'highSchool': 'Plainview', 'city': 'Plainview', 'state': 'TX', 'position': 'FB', 'height': 74.0, 'weight': '245', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '36', 'stateRank': '277', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2002', 'playerName': 'Kevin Dockery', 'highSchool': 'Hernando', 'city': 'Hernando', 'state': 'MS', 'position': 'CB', 'height': 69.0, 'weight': '185', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '154', 'stateRank': '41', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2002', 'playerName': 'Monte Collins', 'highSchool': 'Provine', 'city': 'Jackson', 'state': 'MS', 'position': 'OT', 'height': 79.0, 'weight': '355', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '151', 'stateRank': '42', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2002', 'playerName': 'Jerious Norwood', 'highSchool': 'Brandon', 'city': 'Brandon', 'state': 'MS', 'position': 'RB', 'height': 72.0, 'weight': '200', 'compRating': '0.9906', 'compStars': 5, 'nationalRank': '23', 'positionRank': '4', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2002', 'playerName': 'Darren Williams', 'highSchool': 'Clarksdale', 'city': 'Clarksdale', 'state': 'MS', 'position': 'S', 'height': 75.0, 'weight': '205', 'compRating': '0.9892', 'compStars': 5, 'nationalRank': '26', 'positionRank': '2', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2002', 'playerName': 'Marvin Byrdsong', 'highSchool': 'Longview', 'city': 'Longview', 'state': 'TX', 'position': 'OLB', 'height': 75.0, 'weight': '230', 'compRating': '0.9829', 'compStars': 4, 'nationalRank': '40', 'positionRank': '3', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2017', 'playerName': 'Chevin Calloway', 'highSchool': 'Bishop Dunne', 'city': 'Dallas', 'state': 'TX', 'position': 'CB', 'height': 70.0, 'weight': '180', 'compRating': '0.9357', 'compStars': 4, 'nationalRank': '149', 'positionRank': '18', 'stateRank': '23', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '30', '247stateRank': '40'}, {'school': 'arkansas', 'year': '2017', 'playerName': 'Montaric Brown', 'highSchool': 'Ashdown', 'city': 'Ashdown', 'state': 'AR', 'position': 'S', 'height': 72.0, 'weight': '182', 'compRating': '0.9317', 'compStars': 4, 'nationalRank': '161', 'positionRank': '18', 'stateRank': '1', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '121', '247positionRank': '14', '247stateRank': '1'}, {'school': 'arkansas', 'year': '2017', 'playerName': 'Brandon Martin', 'highSchool': 'Mississippi Gulf Coast C.C.', 'city': 'Perkinston', 'state': 'MS', 'position': 'WR', 'height': 76.0, 'weight': '205', 'compRating': '0.9053', 'compStars': 4, 'nationalRank': '7', 'positionRank': '1', 'stateRank': '2', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '28', '247positionRank': '1', '247stateRank': '10'}, {'school': 'arkansas', 'year': '2017', 'playerName': 'Jeremy Patton', 'highSchool': 'Arizona Western College', 'city': 'Yuma', 'state': 'AZ', 'position': 'TE', 'height': 78.0, 'weight': '230', 'compRating': '0.9050', 'compStars': 4, 'nationalRank': '8', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '11', '247positionRank': '1', '247stateRank': '1'}, {'school': 'arkansas', 'year': '2017', 'playerName': 'Chase Hayden', 'highSchool': "St. George's Independent School", 'city': 'Collierville', 'state': 'TN', 'position': 'APB', 'height': 70.0, 'weight': '189', 'compRating': '0.8899', 'compStars': 3, 'nationalRank': '341', 'positionRank': '4', 'stateRank': '10', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '188', '247positionRank': '4', '247stateRank': '11'}, {'school': 'arkansas', 'year': '2017', 'playerName': 'Daulton Hyatt', 'highSchool': 'Etowah', 'city': 'Attalla', 'state': 'AL', 'position': 'PRO', 'height': 76.0, 'weight': '182', 'compRating': '0.8774', 'compStars': 3, 'nationalRank': '432', 'positionRank': '19', 'stateRank': '21', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '19', '247stateRank': '28'}, {'school': 'arkansas', 'year': '2017', 'playerName': 'Koilan Jackson', 'highSchool': 'Joe T. Robinson', 'city': 'Little Rock', 'state': 'AR', 'position': 'WR', 'height': 75.0, 'weight': '207', 'compRating': '0.8719', 'compStars': 3, 'nationalRank': '463', 'positionRank': '67', 'stateRank': '3', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '167', '247positionRank': '26', '247stateRank': '2'}, {'school': 'arkansas', 'year': '2017', 'playerName': 'Kamren Curl', 'highSchool': 'Muskogee', 'city': 'Muskogee', 'state': 'OK', 'position': 'ATH', 'height': 74.0, 'weight': '180', 'compRating': '0.8615', 'compStars': 3, 'nationalRank': '603', 'positionRank': '43', 'stateRank': '12', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '62', '247stateRank': '14'}, {'school': 'arkansas', 'year': '2017', 'playerName': 'Dalton Wagner', 'highSchool': 'Richmond-Burton', 'city': 'Richmond', 'state': 'IL', 'position': 'OT', 'height': 81.0, 'weight': '312', 'compRating': '0.8613', 'compStars': 3, 'nationalRank': '605', 'positionRank': '61', 'stateRank': '11', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '32', '247stateRank': '5'}, {'school': 'arkansas', 'year': '2017', 'playerName': 'Maleek Barkley', 'highSchool': 'Lake Travis', 'city': 'Austin', 'state': 'TX', 'position': 'WR', 'height': 71.0, 'weight': '185', 'compRating': '0.8605', 'compStars': 3, 'nationalRank': '616', 'positionRank': '91', 'stateRank': '82', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '139', '247stateRank': '130'}, {'school': 'arkansas', 'year': '2017', 'playerName': 'Jarrod Barnes', 'highSchool': 'Cabot', 'city': 'Cabot', 'state': 'AR', 'position': 'ATH', 'height': 71.0, 'weight': '167', 'compRating': '0.8579', 'compStars': 3, 'nationalRank': '667', 'positionRank': '47', 'stateRank': '4', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '22', '247stateRank': '4'}, {'school': 'arkansas', 'year': '2017', 'playerName': 'Kirby Adcock', 'highSchool': 'Nashville', 'city': 'Nashville', 'state': 'AR', 'position': 'OT', 'height': 77.0, 'weight': '280', 'compRating': '0.8528', 'compStars': 3, 'nationalRank': '763', 'positionRank': '75', 'stateRank': '5', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '66', '247stateRank': '7'}, {'school': 'arkansas', 'year': '2017', 'playerName': 'Kyrei Fisher', 'highSchool': 'Union', 'city': 'Tulsa', 'state': 'OK', 'position': 'OLB', 'height': 74.0, 'weight': '230', 'compRating': '0.8527', 'compStars': 3, 'nationalRank': '770', 'positionRank': '50', 'stateRank': '13', '247Rating': ' 85 ', '247Stars': 3, '247nationalRank': '111', '247positionRank': '6', '247stateRank': '6'}, {'school': 'arkansas', 'year': '2017', 'playerName': 'Shane Clenin', 'highSchool': 'Festus', 'city': 'Festus', 'state': 'MO', 'position': 'OT', 'height': 78.0, 'weight': '285', 'compRating': '0.8518', 'compStars': 3, 'nationalRank': '794', 'positionRank': '77', 'stateRank': '7', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '91', '247stateRank': '8'}, {'school': 'arkansas', 'year': '2017', 'playerName': 'Maleek Williams', 'highSchool': 'Charlotte', 'city': 'Punta Gorda', 'state': 'FL', 'position': 'RB', 'height': 73.0, 'weight': '215', 'compRating': '0.8515', 'compStars': 3, 'nationalRank': '807', 'positionRank': '39', 'stateRank': '107', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '76', '247stateRank': '209'}, {'school': 'arkansas', 'year': '2017', 'playerName': 'Jarques McClellion', 'highSchool': 'American Heritage B/D', 'city': 'Delray Beach', 'state': 'FL', 'position': 'CB', 'height': 72.0, 'weight': '180', 'compRating': '0.8493', 'compStars': 3, 'nationalRank': '864', 'positionRank': '90', 'stateRank': '118', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '129', '247stateRank': '164'}, {'school': 'arkansas', 'year': '2017', 'playerName': "De'Vion Warren", 'highSchool': 'Ouachita Parish', 'city': 'Monroe', 'state': 'LA', 'position': 'ATH', 'height': 70.0, 'weight': '170', 'compRating': '0.8479', 'compStars': 3, 'nationalRank': '894', 'positionRank': '63', 'stateRank': '37', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '58', '247stateRank': '37'}, {'school': 'arkansas', 'year': '2017', 'playerName': 'Derrick Munson', 'highSchool': 'Archbishop Rummel', 'city': 'Metairie', 'state': 'LA', 'position': 'OLB', 'height': 72.0, 'weight': '200', 'compRating': '0.8466', 'compStars': 3, 'nationalRank': '931', 'positionRank': '61', 'stateRank': '38', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '36', '247stateRank': '20'}, {'school': 'arkansas', 'year': '2017', 'playerName': 'David Porter', 'highSchool': 'Joe T. Robinson', 'city': 'Little Rock', 'state': 'AR', 'position': 'SDE', 'height': 76.0, 'weight': '230', 'compRating': '0.8462', 'compStars': 3, 'nationalRank': '955', 'positionRank': '43', 'stateRank': '10', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '61', '247stateRank': '11'}, {'school': 'arkansas', 'year': '2017', 'playerName': 'Jordon Curtis', 'highSchool': 'Jenks', 'city': 'Jenks', 'state': 'OK', 'position': 'CB', 'height': 71.0, 'weight': '180', 'compRating': '0.8416', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '115', 'stateRank': '16', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '106', '247stateRank': '16'}, {'school': 'arkansas', 'year': '2017', 'playerName': 'Korey Hernandez', 'highSchool': 'Cedar Grove', 'city': 'Ellenwood', 'state': 'GA', 'position': 'S', 'height': 72.0, 'weight': '175', 'compRating': '0.8372', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '90', 'stateRank': '122'}, {'school': 'arkansas', 'year': '2017', 'playerName': 'Josh Paul', 'highSchool': 'De La Salle', 'city': 'New Orleans', 'state': 'LA', 'position': 'OLB', 'height': 74.0, 'weight': '205', 'compRating': '0.8335', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '84', 'stateRank': '47', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '82', '247stateRank': '50'}, {'school': 'arkansas', 'year': '2017', 'playerName': 'Jonathan Nance', 'highSchool': 'Mississippi Gulf Coast C.C.', 'city': 'Perkinston', 'state': 'MS', 'position': 'WR', 'height': 74.0, 'weight': '180', 'compRating': '0.8259', 'compStars': 3, 'nationalRank': '147', 'positionRank': '19', 'stateRank': '45', '247Rating': ' 80 ', '247Stars': 3, '247nationalRank': '169', '247positionRank': '20', '247stateRank': '51'}, {'school': 'arkansas', 'year': '2017', 'playerName': 'Gabe Richardson', 'highSchool': 'Hutchinson C.C.', 'city': 'Hutchinson', 'state': 'KS', 'position': 'WDE', 'height': 76.0, 'weight': '255', 'compRating': '0.7883', 'compStars': 2, 'nationalRank': '242', 'positionRank': '18', 'stateRank': '33', '247Rating': ' 81 ', '247Stars': 3, '247nationalRank': '166', '247positionRank': '14', '247stateRank': '22'}, {'school': 'alabama', 'year': '2002', 'playerName': 'Derrick Pope', 'highSchool': 'Garden City C.C.', 'city': 'Garden City', 'state': 'KS', 'position': 'ILB', 'height': 72.0, 'weight': '223', 'compRating': '0.9667', 'compStars': 4, 'nationalRank': '3', 'positionRank': '2', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2002', 'playerName': 'Kyle Tatum', 'highSchool': 'Prattville', 'city': 'Prattville', 'state': 'AL', 'position': 'DT', 'height': 78.0, 'weight': '260', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '150', 'positionRank': '17', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2002', 'playerName': 'David Scott', 'highSchool': 'Jones College', 'city': 'Ellisville', 'state': 'MS', 'position': 'CB', 'height': 72.0, 'weight': '180', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '32', 'positionRank': '4', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2002', 'playerName': 'Ahmad Childress', 'highSchool': 'Garden City C.C.', 'city': 'Garden City', 'state': 'KS', 'position': 'DT', 'height': 78.0, 'weight': '315', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '56', 'positionRank': '9', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2002', 'playerName': 'Ken Darby', 'highSchool': 'Sr Butler Sch', 'city': 'Huntsville', 'state': 'AL', 'position': 'RB', 'height': 71.0, 'weight': '195', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '401', 'positionRank': '30', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2002', 'playerName': 'Zach Fletcher', 'highSchool': 'City College of San Francisco', 'city': 'San Francisco', 'state': 'CA', 'position': 'WR', 'height': 75.0, 'weight': '200', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '135', 'positionRank': '23', 'stateRank': '59', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2002', 'playerName': 'Ramzee Robinson', 'highSchool': 'Sr Butler Sch', 'city': 'Huntsville', 'state': 'AL', 'position': 'CB', 'height': 70.0, 'weight': '170', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '674', 'positionRank': '46', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2002', 'playerName': 'DeMeco Ryans', 'highSchool': 'Jess Lanier', 'city': 'Hueytown', 'state': 'AL', 'position': 'ILB', 'height': 74.0, 'weight': '212', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '743', 'positionRank': '42', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2002', 'playerName': 'Brandon Avalos', 'highSchool': 'Hillcrest', 'city': 'Tuscaloosa', 'state': 'AL', 'position': 'DUAL', 'height': 74.0, 'weight': '185', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '767', 'positionRank': '29', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2002', 'playerName': 'Chauncey Malone', 'highSchool': 'West Morgan Sch', 'city': 'Trinity', 'state': 'AL', 'position': 'CB', 'height': 72.0, 'weight': '180', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '774', 'positionRank': '55', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2002', 'playerName': 'Juwan Garth', 'highSchool': 'Austin', 'city': 'Decatur', 'state': 'AL', 'position': 'OLB', 'height': 75.0, 'weight': '187', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '787', 'positionRank': '46', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2002', 'playerName': 'Nic Luke', 'highSchool': 'Central', 'city': 'Phenix City', 'state': 'AL', 'position': 'FB', 'height': 73.0, 'weight': '210', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '32', 'stateRank': '50', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2002', 'playerName': 'Greg McLain', 'highSchool': 'Lineville Sch', 'city': 'Lineville', 'state': 'AL', 'position': 'ILB', 'height': 75.0, 'weight': '235', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '83', 'stateRank': '52', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2002', 'playerName': 'Grant Brigham', 'highSchool': 'Mountain Brook', 'city': 'Birmingham', 'state': 'AL', 'position': 'WR', 'height': 73.0, 'weight': '170', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '507', 'positionRank': '48', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2002', 'playerName': 'Antoine Morgan', 'highSchool': 'Marlboro County', 'city': 'Bennettsville', 'state': 'SC', 'position': 'WDE', 'height': 77.0, 'weight': '210', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '679', 'positionRank': '30', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2002', 'playerName': 'Richard Freeman', 'highSchool': 'Brentwood', 'city': 'Brentwood', 'state': 'TN', 'position': 'WDE', 'height': 77.0, 'weight': '230', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '720', 'positionRank': '35', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2002', 'playerName': 'Steven Brent', 'highSchool': 'Georgetown', 'city': 'Georgetown', 'state': 'TX', 'position': 'OG', 'height': 76.0, 'weight': '270', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '830', 'positionRank': '69', 'stateRank': '141', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2002', 'playerName': 'Steven Bright', 'highSchool': 'Riverside', 'city': 'Greer', 'state': 'SC', 'position': 'DUAL', 'height': 76.0, 'weight': '205', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '842', 'positionRank': '30', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2002', 'playerName': 'Brad Anderson', 'highSchool': 'Urbana', 'city': 'Ijamsville', 'state': 'MD', 'position': 'FB', 'height': 72.0, 'weight': '225', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '29', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2002', 'playerName': 'Andrew Pace', 'highSchool': 'Mountain Brook', 'city': 'Birmingham', 'state': 'AL', 'position': 'S', 'height': 71.0, 'weight': '185', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '104', 'stateRank': '51', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2002', 'playerName': 'Ron Bullock', 'highSchool': 'Brother Martin', 'city': 'New Orleans', 'state': 'LA', 'position': 'RB', 'height': 70.0, 'weight': '215', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '85', 'stateRank': '85', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2002', 'playerName': 'Adam Dossett', 'highSchool': 'Parklane Academy', 'city': 'Mccomb', 'state': 'MS', 'position': 'OG', 'height': 76.0, 'weight': '260', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '122', 'stateRank': '38', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2002', 'playerName': 'Kevin Joyce', 'highSchool': 'Lake Highland Prep', 'city': 'Orlando', 'state': 'FL', 'position': 'OLB', 'height': 75.0, 'weight': '205', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '102', 'stateRank': '141', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2002', 'playerName': 'Patrick Johnson', 'highSchool': 'Athens', 'city': 'Athens', 'state': 'AL', 'position': 'K', 'height': 70.0, 'weight': '170', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '34', 'stateRank': '54', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2002', 'playerName': 'Greg Johnson', 'highSchool': 'Parkview', 'city': 'Lilburn', 'state': 'GA', 'position': 'P', 'height': 74.0, 'weight': '175', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '2', 'stateRank': '93', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2002', 'playerName': 'Chris Booker', 'highSchool': 'Northwest Rankin', 'city': 'Flowood', 'state': 'MS', 'position': 'OLB', 'height': 76.0, 'weight': '220', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '104', 'stateRank': '39', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2002', 'playerName': 'Ray Brown', 'highSchool': 'Jackson Memorial', 'city': 'Jackson', 'state': 'NJ', 'position': 'DT', 'height': 74.0, 'weight': '267', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '131', 'stateRank': '41', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2002', 'playerName': 'Mac Pyle', 'highSchool': 'Adairsville', 'city': 'Adairsville', 'state': 'GA', 'position': 'OG', 'height': 76.0, 'weight': '285', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '129', 'stateRank': '95', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2002', 'playerName': 'Herdley Harrison', 'highSchool': 'Marietta', 'city': 'Marietta', 'state': 'GA', 'position': 'OLB', 'height': 75.0, 'weight': '215', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '106', 'stateRank': '97', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2002', 'playerName': 'Erik Davis', 'highSchool': 'Ezell-Harding Christian', 'city': 'Antioch', 'state': 'TN', 'position': 'ATH', 'height': 75.0, 'weight': '180', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '90', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2002', 'playerName': 'Tim Miller', 'highSchool': 'Detroit Country Day', 'city': 'Franklin', 'state': 'MI', 'position': 'CB', 'height': 74.0, 'weight': '188', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '156', 'stateRank': '56', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2002', 'playerName': 'Funtaine Hunter', 'highSchool': 'Lowndes', 'city': 'Valdosta', 'state': 'GA', 'position': 'S', 'height': 75.0, 'weight': '205', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '113', 'stateRank': '101', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2002', 'playerName': 'Blake Luker', 'highSchool': 'Collinwood', 'city': 'Collinwood', 'state': 'TN', 'position': 'OG', 'height': 77.0, 'weight': '300', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '140', 'stateRank': '22', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2018', 'playerName': 'Chad Bailey', 'highSchool': 'Ridge Point', 'city': 'Missouri City', 'state': 'TX', 'position': 'ILB', 'height': 72.0, 'weight': '238', 'compRating': '0.8887', 'compStars': 3, 'nationalRank': '388', 'positionRank': '22', 'stateRank': '53', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '28', '247stateRank': '88'}, {'school': 'missouri', 'year': '2018', 'playerName': 'Kam Scott', 'highSchool': 'Manvel', 'city': 'Manvel', 'state': 'TX', 'position': 'WR', 'height': 74.0, 'weight': '165', 'compRating': '0.8851', 'compStars': 3, 'nationalRank': '427', 'positionRank': '71', 'stateRank': '60', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '62', '247stateRank': '53'}, {'school': 'missouri', 'year': '2018', 'playerName': 'Jalen Knox', 'highSchool': 'Mansfield Timberview', 'city': 'Arlington', 'state': 'TX', 'position': 'ATH', 'height': 71.5, 'weight': '185', 'compRating': '0.8851', 'compStars': 3, 'nationalRank': '431', 'positionRank': '29', 'stateRank': '61', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '35', '247stateRank': '64'}, {'school': 'missouri', 'year': '2018', 'playerName': 'Daniel Parker', 'highSchool': 'Blue Springs', 'city': 'Blue Springs', 'state': 'MO', 'position': 'SDE', 'height': 74.5, 'weight': '268', 'compRating': '0.8795', 'compStars': 3, 'nationalRank': '496', 'positionRank': '21', 'stateRank': '8', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '26', '247stateRank': '7'}, {'school': 'missouri', 'year': '2018', 'playerName': 'Lindsey Scott', 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'PRO', 'height': 71.0, 'weight': '210', 'compRating': '0.8764', 'compStars': 3, 'nationalRank': '39', 'positionRank': '1', 'stateRank': '11', '247Rating': ' 87 ', '247Stars': 3, '247nationalRank': '48', '247positionRank': '1', '247stateRank': '12'}, {'school': 'missouri', 'year': '2018', 'playerName': 'Antar Thompson', 'highSchool': 'Highland Community College', 'city': 'Freeport', 'state': 'IL', 'position': 'DT', 'height': 77.0, 'weight': '310', 'compRating': '0.8730', 'compStars': 3, 'nationalRank': '44', 'positionRank': '11', 'stateRank': '1', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '60', '247positionRank': '14', '247stateRank': '1'}, {'school': 'missouri', 'year': '2018', 'playerName': 'Jatorian Hansford', 'highSchool': 'Mary Persons', 'city': 'Forsyth', 'state': 'GA', 'position': 'OLB', 'height': 76.0, 'weight': '220', 'compRating': '0.8627', 'compStars': 3, 'nationalRank': '765', 'positionRank': '48', 'stateRank': '77', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '38', '247stateRank': '49'}, {'school': 'missouri', 'year': '2018', 'playerName': 'Gerald Nathan Jr.', 'highSchool': 'Zebulon B. Vance', 'city': 'Charlotte', 'state': 'NC', 'position': 'ILB', 'height': 73.0, 'weight': '200', 'compRating': '0.8598', 'compStars': 3, 'nationalRank': '836', 'positionRank': '32', 'stateRank': '28', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '23', '247stateRank': '15'}, {'school': 'missouri', 'year': '2018', 'playerName': 'Messiah Swinson', 'highSchool': 'Long Island Lutheran', 'city': 'Glen Head', 'state': 'NY', 'position': 'TE', 'height': 80.0, 'weight': '232', 'compRating': '0.8580', 'compStars': 3, 'nationalRank': '867', 'positionRank': '42', 'stateRank': '10', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '43', '247stateRank': '12'}, {'school': 'missouri', 'year': '2018', 'playerName': 'Trajan Jeffcoat', 'highSchool': 'Irmo', 'city': 'Columbia', 'state': 'SC', 'position': 'WDE', 'height': 75.0, 'weight': '220', 'compRating': '0.8579', 'compStars': 3, 'nationalRank': '875', 'positionRank': '50', 'stateRank': '16', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '78', '247stateRank': '20'}, {'school': 'missouri', 'year': '2018', 'playerName': 'Khmari Thompson', 'highSchool': 'Central Gwinnett', 'city': 'Lawrenceville', 'state': 'GA', 'position': 'WR', 'height': 74.0, 'weight': '190', 'compRating': '0.8527', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '148', 'stateRank': '94', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '165', '247stateRank': '113'}, {'school': 'missouri', 'year': '2018', 'playerName': 'Mike Ruth', 'highSchool': 'Coppell', 'city': 'Coppell', 'state': 'TX', 'position': 'OT', 'height': 79.0, 'weight': '300', 'compRating': '0.8505', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '98', 'stateRank': '149', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '108', '247stateRank': '151'}, {'school': 'missouri', 'year': '2018', 'playerName': 'Nicholas Bolton', 'highSchool': 'Lone Star', 'city': 'Frisco', 'state': 'TX', 'position': 'ILB', 'height': 71.0, 'weight': '228', 'compRating': '0.8484', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '39', 'stateRank': '156', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '45', '247stateRank': '148'}, {'school': 'missouri', 'year': '2018', 'playerName': 'Chris Mills', 'highSchool': 'Judson', 'city': 'Converse', 'state': 'TX', 'position': 'CB', 'height': 72.0, 'weight': '185', 'compRating': '0.8464', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '101', 'stateRank': '170', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '99', '247stateRank': '137'}, {'school': 'missouri', 'year': '2018', 'playerName': 'Tyrone Collins', 'highSchool': 'Braden River', 'city': 'Bradenton', 'state': 'FL', 'position': 'CB', 'height': 70.5, 'weight': '164', 'compRating': '0.8464', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '102', 'stateRank': '181', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '101', '247stateRank': '169'}, {'school': 'missouri', 'year': '2018', 'playerName': 'Harry Ballard', 'highSchool': 'Jones College', 'city': 'Ellisville', 'state': 'MS', 'position': 'WR', 'height': 74.0, 'weight': '180', 'compRating': '0.8444', 'compStars': 3, 'nationalRank': '112', 'positionRank': '9', 'stateRank': '25', '247Rating': ' 79 ', '247Stars': 2, '247nationalRank': '225', '247positionRank': '19', '247stateRank': '45'}, {'school': 'missouri', 'year': '2018', 'playerName': 'Chritauskie Dove', 'highSchool': 'Ryan', 'city': 'Denton', 'state': 'TX', 'position': 'WR', 'height': 74.0, 'weight': '200', 'compRating': '0.8437', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '182', 'stateRank': '179', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '267', '247stateRank': '226'}, {'school': 'missouri', 'year': '2018', 'playerName': 'Cameron Wilkins', 'highSchool': 'Del Valle', 'city': 'Del Valle', 'state': 'TX', 'position': 'ILB', 'height': 74.0, 'weight': '230', 'compRating': '0.8375', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '56', 'stateRank': '195', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '67', '247stateRank': '197'}, {'school': 'missouri', 'year': '2018', 'playerName': 'Dominic Gicinto', 'highSchool': 'Raytown', 'city': 'Kansas City', 'state': 'MO', 'position': 'WR', 'height': 70.0, 'weight': '175', 'compRating': '0.8371', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '204', 'stateRank': '15', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '135', '247stateRank': '10'}, {'school': 'missouri', 'year': '2018', 'playerName': 'Jarvis Ware', 'highSchool': 'Wekiva', 'city': 'Apopka', 'state': 'FL', 'position': 'CB', 'height': 73.0, 'weight': '175', 'compRating': '0.8321', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '142', 'stateRank': '246', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '67', '247stateRank': '96'}, {'school': 'missouri', 'year': '2018', 'playerName': 'Tyler Badie', 'highSchool': 'Briarcrest Christian', 'city': 'Memphis', 'state': 'TN', 'position': 'APB', 'height': 70.0, 'weight': '185', 'compRating': '0.8316', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '28', 'stateRank': '43', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '25', '247stateRank': '31'}, {'school': 'missouri', 'year': '2018', 'playerName': 'Javon Foster', 'highSchool': 'West Bloomfield', 'city': 'West Bloomfield', 'state': 'MI', 'position': 'OT', 'height': 78.0, 'weight': '300', 'compRating': '0.8316', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '141', 'stateRank': '32', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '101', '247stateRank': '29'}, {'school': 'missouri', 'year': '2018', 'playerName': 'Bobby Lawrence', 'highSchool': 'Central', 'city': 'Saint Joseph', 'state': 'MO', 'position': 'OT', 'height': 80.0, 'weight': '300', 'compRating': '0.8315', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '142', 'stateRank': '19', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '124', '247stateRank': '17'}, {'school': 'missouri', 'year': '2018', 'playerName': 'Xavier Delgado', 'highSchool': 'Deer Valley', 'city': 'Glendale', 'state': 'AZ', 'position': 'OT', 'height': 77.0, 'weight': '300', 'compRating': '0.8255', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '151', 'stateRank': '19', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '166', '247stateRank': '23'}, {'school': 'missouri', 'year': '2018', 'playerName': 'Simi Bakare', 'highSchool': 'Cedar Ridge', 'city': 'Round Rock', 'state': 'TX', 'position': 'RB', 'height': 72.0, 'weight': '184', 'compRating': '0.8088', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '126', 'stateRank': '304', '247Rating': ' 76 ', '247Stars': 2, '247positionRank': '191', '247stateRank': '436'}, {'school': 'missouri', 'year': '2018', 'playerName': 'Danny Gray', 'highSchool': 'James Madison', 'city': 'Dallas', 'state': 'TX', 'position': 'WR', 'height': 73.0, 'weight': '174', 'compRating': '0.8776', 'compStars': 3, 'nationalRank': '517', 'positionRank': '86', 'stateRank': '73', '247Rating': ' 89 ', '247Stars': 3, '247nationalRank': '13', '247positionRank': '2', '247stateRank': '3'}, {'school': 'mississippi-state', 'year': '2014', 'playerName': 'Jamoral Graham', 'highSchool': 'Newton County', 'city': 'Decatur', 'state': 'MS', 'position': 'ATH', 'height': 71.0, 'weight': '180', 'compRating': '0.9167', 'compStars': 4, 'nationalRank': '213', 'positionRank': '17', 'stateRank': '6', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '234', '247positionRank': '18', '247stateRank': '7'}, {'school': 'mississippi-state', 'year': '2014', 'playerName': 'Aeris Williams', 'highSchool': 'West Point', 'city': 'West Point', 'state': 'MS', 'position': 'RB', 'height': 73.0, 'weight': '205', 'compRating': '0.9016', 'compStars': 4, 'nationalRank': '260', 'positionRank': '16', 'stateRank': '7', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '148', '247positionRank': '10', '247stateRank': '5'}, {'school': 'mississippi-state', 'year': '2014', 'playerName': 'Gerri Green', 'highSchool': 'Greenville Weston', 'city': 'Greenville', 'state': 'MS', 'position': 'ATH', 'height': 77.0, 'weight': '230', 'compRating': '0.8981', 'compStars': 4, 'nationalRank': '282', 'positionRank': '25', 'stateRank': '8', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '22', '247stateRank': '10'}, {'school': 'mississippi-state', 'year': '2014', 'playerName': 'Jesse Jackson', 'highSchool': 'Petal', 'city': 'Petal', 'state': 'MS', 'position': 'WR', 'height': 74.0, 'weight': '195', 'compRating': '0.8889', 'compStars': 3, 'nationalRank': '339', 'positionRank': '48', 'stateRank': '10', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '41', '247stateRank': '8'}, {'school': 'mississippi-state', 'year': '2014', 'playerName': 'Brandon Bryant', 'highSchool': 'Rosa Fort', 'city': 'Tunica', 'state': 'MS', 'position': 'S', 'height': 72.0, 'weight': '203', 'compRating': '0.8640', 'compStars': 3, 'nationalRank': '552', 'positionRank': '47', 'stateRank': '14', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '61', '247stateRank': '20'}, {'school': 'mississippi-state', 'year': '2014', 'playerName': 'Cory Thomas', 'highSchool': 'McAdory', 'city': 'McCalla', 'state': 'AL', 'position': 'SDE', 'height': 77.5, 'weight': '281', 'compRating': '0.8630', 'compStars': 3, 'nationalRank': '564', 'positionRank': '24', 'stateRank': '16', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '28', '247stateRank': '25'}, {'school': 'mississippi-state', 'year': '2014', 'playerName': 'Will Coleman', 'highSchool': 'Tyler J.C.', 'city': 'Tyler', 'state': 'TX', 'position': 'WDE', 'height': 77.0, 'weight': '248', 'compRating': '0.8610', 'compStars': 3, 'nationalRank': '64', 'positionRank': '2', 'stateRank': '5', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '74', '247positionRank': '4', '247stateRank': '4'}, {'school': 'mississippi-state', 'year': '2014', 'playerName': 'Darrion Hutcherson', 'highSchool': 'Copiah-Lincoln C.C.', 'city': 'Wesson', 'state': 'MS', 'position': 'TE', 'height': 79.0, 'weight': '260', 'compRating': '0.8594', 'compStars': 3, 'nationalRank': '75', 'positionRank': '2', 'stateRank': '17', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '78', '247positionRank': '3', '247stateRank': '15'}, {'school': 'mississippi-state', 'year': '2014', 'playerName': 'J.T. Gray', 'highSchool': 'Clarksdale', 'city': 'Clarksdale', 'state': 'MS', 'position': 'ATH', 'height': 72.0, 'weight': '197', 'compRating': '0.8590', 'compStars': 3, 'nationalRank': '632', 'positionRank': '51', 'stateRank': '15'}, {'school': 'mississippi-state', 'year': '2014', 'playerName': 'Jocquell Johnson', 'highSchool': 'Copiah-Lincoln C.C.', 'city': 'Wesson', 'state': 'MS', 'position': 'OT', 'height': 78.0, 'weight': '307', 'compRating': '0.8503', 'compStars': 3, 'nationalRank': '98', 'positionRank': '15', 'stateRank': '20', '247Rating': ' 84 ', '247Stars': 3, '247nationalRank': '141', '247positionRank': '21', '247stateRank': '25'}, {'school': 'mississippi-state', 'year': '2014', 'playerName': 'Grant Harris', 'highSchool': 'Clinton', 'city': 'Clinton', 'state': 'MS', 'position': 'SDE', 'height': 76.5, 'weight': '270', 'compRating': '0.8453', 'compStars': 3, 'nationalRank': '900', 'positionRank': '43', 'stateRank': '23', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '45', '247stateRank': '32'}, {'school': 'mississippi-state', 'year': '2014', 'playerName': 'Elijah Staley', 'highSchool': 'Wheeler', 'city': 'Marietta', 'state': 'GA', 'position': 'DUAL', 'height': 78.0, 'weight': '240', 'compRating': '0.8384', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '29', 'stateRank': '93'}, {'school': 'mississippi-state', 'year': '2014', 'playerName': 'Chris Rayford', 'highSchool': 'Byhalia', 'city': 'Byhalia', 'state': 'MS', 'position': 'CB', 'height': 73.0, 'weight': '200', 'compRating': '0.8382', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '83', 'stateRank': '30', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '93', '247stateRank': '35'}, {'school': 'mississippi-state', 'year': '2014', 'playerName': 'Dontavian Lee', 'highSchool': 'Forrest County Agricultural', 'city': 'Brooklyn', 'state': 'MS', 'position': 'RB', 'height': 73.0, 'weight': '210', 'compRating': '0.8357', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '65', 'stateRank': '32', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '79', '247stateRank': '40'}, {'school': 'mississippi-state', 'year': '2014', 'playerName': 'Logan Cooke', 'highSchool': 'Columbia Academy', 'city': 'Columbia', 'state': 'MS', 'position': 'P', 'height': 77.0, 'weight': '200', 'compRating': '0.8250', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '3', 'stateRank': '38', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '2', '247stateRank': '43'}, {'school': 'mississippi-state', 'year': '2014', 'playerName': 'Nick Fitzgerald', 'highSchool': 'Richmond Hill', 'city': 'Richmond Hill', 'state': 'GA', 'position': 'DUAL', 'height': 77.0, 'weight': '220', 'compRating': '0.8133', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '40', 'stateRank': '136', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '23', '247stateRank': '68'}, {'school': 'mississippi-state', 'year': '2014', 'playerName': 'Elgton Jenkins', 'highSchool': 'Clarksdale', 'city': 'Clarksdale', 'state': 'MS', 'position': 'OT', 'height': 76.0, 'weight': '275', 'compRating': '0.8092', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '138', 'stateRank': '42', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '94', '247stateRank': '31'}, {'school': 'mississippi-state', 'year': '2014', 'playerName': 'Braxton Hoyett', 'highSchool': 'Pelham', 'city': 'Pelham', 'state': 'AL', 'position': 'DT', 'height': 75.0, 'weight': '285', 'compRating': '0.7984', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '109', 'stateRank': '58', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '65', '247stateRank': '36'}, {'school': 'mississippi-state', 'year': '2014', 'playerName': 'Deion Calhoun', 'highSchool': 'Restoration Academy', 'city': 'Fairfield', 'state': 'AL', 'position': 'OG', 'height': 75.0, 'weight': '310', 'compRating': '0.7958', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '101', 'stateRank': '61', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '71', '247stateRank': '48'}, {'school': 'mississippi-state', 'year': '2014', 'playerName': 'Ronald Cochran', 'highSchool': 'Olive Branch', 'city': 'Olive Branch', 'state': 'MS', 'position': 'OT', 'height': 77.0, 'weight': '275', 'compRating': '0.7616', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '231', 'stateRank': '60', '247Rating': ' 73 ', '247Stars': 2, '247positionRank': '216', '247stateRank': '64'}, {'school': 'mississippi-state', 'year': '2014', 'playerName': 'Ravian Pierce', 'highSchool': 'Plantation', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'TE', 'height': 76.0, 'weight': '215', 'compRating': '0.8867', 'compStars': 3, 'nationalRank': '354', 'positionRank': '15', 'stateRank': '47', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '30', '247positionRank': '3', '247stateRank': '11'}, {'school': 'mississippi-state', 'year': '2014', 'playerName': 'Deshon Cooper', 'highSchool': 'Columbia', 'city': 'Decatur', 'state': 'GA', 'position': 'OLB', 'height': 75.0, 'weight': '240', 'compRating': '0.8538', 'compStars': 3, 'nationalRank': '733', 'positionRank': '59', 'stateRank': '63'}, {'school': 'mississippi-state', 'year': '2014', 'playerName': 'Jordan Harris', 'highSchool': 'Stephenson', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'OG', 'height': 77.0, 'weight': '292', 'compRating': '0.8531', 'compStars': 3, 'nationalRank': '750', 'positionRank': '42', 'stateRank': '68'}, {'school': 'mississippi-state', 'year': '2014', 'playerName': 'Lashard Durr', 'highSchool': 'Harrison Central', 'city': 'Gulfport', 'state': 'MS', 'position': 'CB', 'height': 71.0, 'weight': '180', 'compRating': '0.8498', 'compStars': 3, 'nationalRank': '811', 'positionRank': '58', 'stateRank': '21', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '34', '247positionRank': '3', '247stateRank': '7'}, {'school': 'ole-miss', 'year': '2006', 'playerName': 'Brent Schaeffer', 'highSchool': 'College of the Sequoias', 'city': 'Visalia', 'state': 'CA', 'position': 'DUAL', 'height': 74.0, 'weight': '190', 'compRating': '0.9667', 'compStars': 4, 'nationalRank': '1', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2006', 'playerName': 'John Jerry', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'OT', 'height': 78.0, 'weight': '340', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '3', 'positionRank': '1', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2006', 'playerName': 'Jonathan Cornell', 'highSchool': 'Bishop Amat', 'city': 'La Puente', 'state': 'CA', 'position': 'OLB', 'height': 74.0, 'weight': '210', 'compRating': '0.8906', 'compStars': 4, 'nationalRank': '231', 'positionRank': '14', 'stateRank': '22', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2006', 'playerName': 'Marcus Tillman', 'highSchool': 'Franklin', 'city': 'Meadville', 'state': 'MS', 'position': 'SDE', 'height': 76.0, 'weight': '250', 'compRating': '0.8875', 'compStars': 3, 'nationalRank': '240', 'positionRank': '15', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2006', 'playerName': 'Terry Levy', 'highSchool': 'Kosciusko', 'city': 'Kosciusko', 'state': 'MS', 'position': 'WR', 'height': 74.0, 'weight': '199', 'compRating': '0.8813', 'compStars': 3, 'nationalRank': '284', 'positionRank': '36', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2006', 'playerName': 'Kentrell Lockett', 'highSchool': 'Hahnville', 'city': 'Boutte', 'state': 'LA', 'position': 'WDE', 'height': 77.0, 'weight': '212', 'compRating': '0.8813', 'compStars': 3, 'nationalRank': '287', 'positionRank': '7', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2006', 'playerName': 'Shay Hodge', 'highSchool': 'Morton', 'city': 'Morton', 'state': 'MS', 'position': 'ATH', 'height': 74.0, 'weight': '174', 'compRating': '0.8590', 'compStars': 3, 'nationalRank': '465', 'positionRank': '35', 'stateRank': '16'}, {'school': 'ole-miss', 'year': '2006', 'playerName': 'Cecil Frison', 'highSchool': 'Hamilton', 'city': 'Memphis', 'state': 'TN', 'position': 'TE', 'height': 76.0, 'weight': '217', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '534', 'positionRank': '30', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2006', 'playerName': 'Cassius Vaughn', 'highSchool': 'East', 'city': 'Memphis', 'state': 'TN', 'position': 'ATH', 'height': 73.0, 'weight': '185', 'compRating': '0.8542', 'compStars': 3, 'nationalRank': '539', 'positionRank': '43', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2006', 'playerName': 'Michael Herrick', 'highSchool': 'Valencia', 'city': 'Valencia', 'state': 'CA', 'position': 'PRO', 'height': 73.0, 'weight': '175', 'compRating': '0.8528', 'compStars': 3, 'nationalRank': '554', 'positionRank': '19', 'stateRank': '62', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2006', 'playerName': 'Dexter McCluster', 'highSchool': 'Largo', 'city': 'Largo', 'state': 'FL', 'position': 'ATH', 'height': 69.0, 'weight': '160', 'compRating': '0.8479', 'compStars': 3, 'nationalRank': '602', 'positionRank': '50', 'stateRank': '75', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2006', 'playerName': 'Derrick Davis', 'highSchool': 'Meridian', 'city': 'Meridian', 'state': 'MS', 'position': 'FB', 'height': 71.0, 'weight': '215', 'compRating': '0.8448', 'compStars': 3, 'nationalRank': '645', 'positionRank': '13', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2006', 'playerName': 'Jamal Harvey', 'highSchool': 'Andrew Jackson', 'city': 'Jacksonville', 'state': 'FL', 'position': 'S', 'height': 75.0, 'weight': '195', 'compRating': '0.8448', 'compStars': 3, 'nationalRank': '656', 'positionRank': '47', 'stateRank': '81'}, {'school': 'ole-miss', 'year': '2006', 'playerName': 'Jamal Harvy', 'highSchool': 'Andrew Jackson', 'city': 'Jacksonville', 'state': 'FL', 'position': 'S', 'height': 75.0, 'weight': '195', 'compRating': '0.8410', 'compStars': 3, 'nationalRank': '687', 'positionRank': '50', 'stateRank': '86', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2006', 'playerName': 'Greg Hardy', 'highSchool': 'Briarcrest Christian', 'city': 'Memphis', 'state': 'TN', 'position': 'WDE', 'height': 77.0, 'weight': '232', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '830', 'positionRank': '34', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2006', 'playerName': 'Corey Actis', 'highSchool': 'Bakersfield College', 'city': 'Bakersfield', 'state': 'CA', 'position': 'OG', 'height': 78.0, 'weight': '290', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '61', 'positionRank': '3', 'stateRank': '33', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2006', 'playerName': 'Rory Johnson', 'highSchool': 'Raymond', 'city': 'Raymond', 'state': 'MS', 'position': 'OLB', 'height': 74.0, 'weight': '235', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '859', 'positionRank': '53', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2006', 'playerName': 'Bruce Hall', 'highSchool': 'Northeast Mississippi C.C.', 'city': 'Booneville', 'state': 'MS', 'position': 'ATH', 'height': 70.0, 'weight': '190', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '95', 'positionRank': '1', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2006', 'playerName': 'Jason Hawkins', 'highSchool': 'San Bernardino Valley College', 'city': 'San Bernardino', 'state': 'CA', 'position': 'TE', 'height': 76.0, 'weight': '250', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '96', 'positionRank': '3', 'stateRank': '51', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2006', 'playerName': 'Kendrick Lewis', 'highSchool': 'Gainesville', 'city': 'Gainesville', 'state': 'GA', 'position': 'WR', 'height': 72.0, 'weight': '173', 'compRating': '0.8260', 'compStars': 3, 'nationalRank': '916', 'positionRank': '100', 'stateRank': '52', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2006', 'playerName': 'Don Mosely', 'highSchool': 'Hillsborough', 'city': 'Tampa', 'state': 'FL', 'position': 'OG', 'height': 73.0, 'weight': '293', 'compRating': '0.8083', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '89', 'stateRank': '140', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2006', 'playerName': 'Reggie Hicks', 'highSchool': 'Madison Central', 'city': 'Madison', 'state': 'MS', 'position': 'FB', 'height': 74.0, 'weight': '220', 'compRating': '0.8052', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '16', 'stateRank': '28'}, {'school': 'ole-miss', 'year': '2006', 'playerName': 'Hayward Howard', 'highSchool': 'Eastern Arizona College', 'city': 'Thatcher', 'state': 'AZ', 'position': 'DT', 'height': 76.0, 'weight': '285', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '133', 'positionRank': '15', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2006', 'playerName': 'Daverin Geralds', 'highSchool': 'Scotlandville Magnet', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'OG', 'height': 76.0, 'weight': '285', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '98', 'stateRank': '26', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2006', 'playerName': 'Josh Shene', 'highSchool': 'Putnam City', 'city': 'Oklahoma City', 'state': 'OK', 'position': 'K', 'height': 69.0, 'weight': '170', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '16', 'stateRank': '26', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2006', 'playerName': 'LaDerrick Vaughn', 'highSchool': 'Manassas', 'city': 'Memphis', 'state': 'TN', 'position': 'ATH', 'height': 74.0, 'weight': '205', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '99', 'stateRank': '25', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2006', 'playerName': 'Allen Walker', 'highSchool': 'Olive Branch', 'city': 'Olive Branch', 'state': 'MS', 'position': 'S', 'height': 74.0, 'weight': '200', 'compRating': '0.9779', 'compStars': 4, 'nationalRank': '51', 'positionRank': '3', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2006', 'playerName': 'Cordera Eason', 'highSchool': 'Meridian', 'city': 'Meridian', 'state': 'MS', 'position': 'RB', 'height': 72.0, 'weight': '240', 'compRating': '0.9435', 'compStars': 4, 'nationalRank': '103', 'positionRank': '18', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2006', 'playerName': 'Markeith Summers', 'highSchool': 'Olive Branch', 'city': 'Olive Branch', 'state': 'MS', 'position': 'WR', 'height': 75.0, 'weight': '190', 'compRating': '0.9345', 'compStars': 4, 'nationalRank': '128', 'positionRank': '17', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2009', 'playerName': 'Philip Lutzenkirchen', 'highSchool': 'Lassiter', 'city': 'Marietta', 'state': 'GA', 'position': 'TE', 'height': 76.0, 'weight': '264', 'compRating': '0.9117', 'compStars': 4, 'nationalRank': '211', 'positionRank': '6', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2009', 'playerName': 'Eltoro Freeman', 'highSchool': 'Mississippi Gulf Coast C.C.', 'city': 'Perkinston', 'state': 'MS', 'position': 'OLB', 'height': 71.0, 'weight': '221', 'compRating': '0.9111', 'compStars': 4, 'nationalRank': '12', 'positionRank': '1', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2009', 'playerName': 'Demond Washington', 'highSchool': 'Mississippi Gulf Coast C.C.', 'city': 'Perkinston', 'state': 'MS', 'position': 'CB', 'height': 69.0, 'weight': '182', 'compRating': '0.9111', 'compStars': 4, 'nationalRank': '13', 'positionRank': '1', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2009', 'playerName': 'Dontae Aycock', 'highSchool': 'Chamberlain', 'city': 'Tampa', 'state': 'FL', 'position': 'RB', 'height': 70.0, 'weight': '215', 'compRating': '0.9108', 'compStars': 4, 'nationalRank': '214', 'positionRank': '25', 'stateRank': '37', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2009', 'playerName': 'Jamar Travis', 'highSchool': 'W S Neal Sch', 'city': 'Brewton', 'state': 'AL', 'position': 'DT', 'height': 72.0, 'weight': '295', 'compRating': '0.8938', 'compStars': 4, 'nationalRank': '295', 'positionRank': '27', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2009', 'playerName': 'Reggie Taylor', 'highSchool': 'Peach County', 'city': 'Fort Valley', 'state': 'GA', 'position': 'CB', 'height': 70.0, 'weight': '170', 'compRating': '0.8875', 'compStars': 3, 'nationalRank': '343', 'positionRank': '38', 'stateRank': '26', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2009', 'playerName': 'Emory Blake', 'highSchool': 'Austin High', 'city': 'Austin', 'state': 'TX', 'position': 'WR', 'height': 73.0, 'weight': '195', 'compRating': '0.8844', 'compStars': 3, 'nationalRank': '380', 'positionRank': '49', 'stateRank': '50', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2009', 'playerName': 'Dee Ford', 'highSchool': 'St. Clair County', 'city': 'Odenville', 'state': 'AL', 'position': 'WDE', 'height': 76.0, 'weight': '230', 'compRating': '0.8789', 'compStars': 3, 'nationalRank': '436', 'positionRank': '17', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2009', 'playerName': 'Nick Fairley', 'highSchool': 'Copiah-Lincoln C.C.', 'city': 'Wesson', 'state': 'MS', 'position': 'DT', 'height': 77.0, 'weight': '300', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '33', 'positionRank': '8', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2009', 'playerName': 'Harris Gaston', 'highSchool': 'Bessemer Academy', 'city': 'Hueytown', 'state': 'AL', 'position': 'ILB', 'height': 73.0, 'weight': '241', 'compRating': '0.8764', 'compStars': 3, 'nationalRank': '483', 'positionRank': '26', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2009', 'playerName': 'Nosa Eguae', 'highSchool': 'Mansfield Summit', 'city': 'Arlington', 'state': 'TX', 'position': 'SDE', 'height': 74.0, 'weight': '261', 'compRating': '0.8733', 'compStars': 3, 'nationalRank': '502', 'positionRank': '24', 'stateRank': '71', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2009', 'playerName': 'Taikwon Paige', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'CB', 'height': 70.0, 'weight': '175', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '43', 'positionRank': '4', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2009', 'playerName': 'Jonathan Evans', 'highSchool': 'Blount', 'city': 'Eight Mile', 'state': 'AL', 'position': 'OLB', 'height': 71.0, 'weight': '232', 'compRating': '0.8622', 'compStars': 3, 'nationalRank': '670', 'positionRank': '56', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2009', 'playerName': 'Brandon Jacobs', 'highSchool': 'Parkview', 'city': 'Lilburn', 'state': 'GA', 'position': 'RB', 'height': 73.0, 'weight': '230', 'compRating': '0.8622', 'compStars': 3, 'nationalRank': '698', 'positionRank': '60', 'stateRank': '57', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2009', 'playerName': 'Travante Stallworth', 'highSchool': 'Leesville', 'city': 'Leesville', 'state': 'LA', 'position': 'WR', 'height': 69.0, 'weight': '187', 'compRating': '0.8604', 'compStars': 3, 'nationalRank': '724', 'positionRank': '91', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2009', 'playerName': 'John Sullen', 'highSchool': 'Auburn', 'city': 'Auburn', 'state': 'AL', 'position': 'OG', 'height': 78.0, 'weight': '336', 'compRating': '0.8590', 'compStars': 3, 'nationalRank': '757', 'positionRank': '53', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2009', 'playerName': 'Clint Moseley', 'highSchool': 'Leroy Sch', 'city': 'Leroy', 'state': 'AL', 'position': 'PRO', 'height': 75.0, 'weight': '224', 'compRating': '0.8497', 'compStars': 3, 'nationalRank': '970', 'positionRank': '32', 'stateRank': '30', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2009', 'playerName': 'Andre Harris', 'highSchool': 'Lovejoy', 'city': 'Hampton', 'state': 'GA', 'position': 'OG', 'height': 76.0, 'weight': '330', 'compRating': '0.8403', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '81', 'stateRank': '80', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2009', 'playerName': 'Daren Bates', 'highSchool': 'Olive Branch', 'city': 'Olive Branch', 'state': 'MS', 'position': 'OLB', 'height': 71.0, 'weight': '207', 'compRating': '0.8399', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '89', 'stateRank': '30', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2009', 'playerName': 'Anthony Gulley', 'highSchool': 'Brantley', 'city': 'Brantley', 'state': 'AL', 'position': 'APB', 'height': 71.0, 'weight': '185', 'compRating': '0.8309', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '22', 'stateRank': '37', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2009', 'playerName': 'Robert Cooper', 'highSchool': 'Daphne', 'city': 'Daphne', 'state': 'AL', 'position': 'DUAL', 'height': 76.0, 'weight': '205', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '49', 'stateRank': '50', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2009', 'playerName': 'Anthony Morgan', 'highSchool': 'Brantley', 'city': 'Brantley', 'state': 'AL', 'position': 'APB', 'height': 69.0, 'weight': '194', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2009', 'playerName': 'Tyrik Rollison', 'highSchool': 'Sulphur Springs', 'city': 'Sulphur Springs', 'state': 'TX', 'position': 'DUAL', 'height': 74.0, 'weight': '185', 'compRating': '0.9374', 'compStars': 4, 'nationalRank': '135', 'positionRank': '5', 'stateRank': '15'}, {'school': 'auburn', 'year': '2009', 'playerName': 'Terrance Coleman', 'highSchool': 'Williamson', 'city': 'Mobile', 'state': 'AL', 'position': 'WDE', 'height': 73.0, 'weight': '240', 'compRating': '0.8884', 'compStars': 3, 'nationalRank': '341', 'positionRank': '12', 'stateRank': '11', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2009', 'playerName': 'LaVoyd James', 'highSchool': 'Williamson', 'city': 'Mobile', 'state': 'AL', 'position': 'WR', 'height': 70.0, 'weight': '175', 'compRating': '0.8684', 'compStars': 3, 'nationalRank': '582', 'positionRank': '75', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2009', 'playerName': 'DeAngelo Benton', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'WR', 'height': 75.0, 'weight': '210', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '18', 'positionRank': '2', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2008', 'playerName': 'A.J. Green', 'highSchool': 'Summerville', 'city': 'Summerville', 'state': 'SC', 'position': 'WR', 'height': 76.0, 'weight': '184', 'compRating': '0.9973', 'compStars': 5, 'nationalRank': '7', 'positionRank': '2', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2008', 'playerName': 'Richard Samuel', 'highSchool': 'Cass', 'city': 'Cartersville', 'state': 'GA', 'position': 'RB', 'height': 72.0, 'weight': '197', 'compRating': '0.9901', 'compStars': 5, 'nationalRank': '18', 'positionRank': '3', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2008', 'playerName': 'DeAngelo Tyson', 'highSchool': 'Statesboro', 'city': 'Statesboro', 'state': 'GA', 'position': 'DT', 'height': 74.0, 'weight': '276', 'compRating': '0.9834', 'compStars': 5, 'nationalRank': '28', 'positionRank': '3', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2008', 'playerName': 'A.J. Harmon', 'highSchool': 'Jefferson County', 'city': 'Louisville', 'state': 'GA', 'position': 'OT', 'height': 76.0, 'weight': '308', 'compRating': '0.9634', 'compStars': 4, 'nationalRank': '79', 'positionRank': '11', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2008', 'playerName': 'Toby Jackson', 'highSchool': 'Griffin', 'city': 'Griffin', 'state': 'GA', 'position': 'SDE', 'height': 76.0, 'weight': '244', 'compRating': '0.9622', 'compStars': 4, 'nationalRank': '81', 'positionRank': '6', 'stateRank': '8', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2008', 'playerName': 'Tavarres King', 'highSchool': 'Habersham Central', 'city': 'Mount Airy', 'state': 'GA', 'position': 'WR', 'height': 73.0, 'weight': '169', 'compRating': '0.9544', 'compStars': 4, 'nationalRank': '95', 'positionRank': '18', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2008', 'playerName': 'Carlton Thomas', 'highSchool': 'Frostproof', 'city': 'Frostproof', 'state': 'FL', 'position': 'RB', 'height': 67.0, 'weight': '159', 'compRating': '0.9341', 'compStars': 4, 'nationalRank': '134', 'positionRank': '14', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2008', 'playerName': 'Marcus Dowtin', 'highSchool': 'Fork Union Military', 'city': 'None', 'state': 'None', 'position': 'OLB', 'height': 74.0, 'weight': '215', 'compRating': '0.9271', 'compStars': 4, 'nationalRank': '160', 'positionRank': '20', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2008', 'playerName': 'Cornelius Washington', 'highSchool': 'Burke County', 'city': 'Waynesboro', 'state': 'GA', 'position': 'OLB', 'height': 76.0, 'weight': '220', 'compRating': '0.9248', 'compStars': 4, 'nationalRank': '170', 'positionRank': '21', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2008', 'playerName': 'Dontavius Jackson', 'highSchool': 'Heard County', 'city': 'Franklin', 'state': 'GA', 'position': 'RB', 'height': 71.0, 'weight': '195', 'compRating': '0.9239', 'compStars': 4, 'nationalRank': '173', 'positionRank': '16', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2008', 'playerName': 'Ben Jones', 'highSchool': 'Bibb County', 'city': 'Centreville', 'state': 'AL', 'position': 'OC', 'height': 74.0, 'weight': '306', 'compRating': '0.9156', 'compStars': 4, 'nationalRank': '195', 'positionRank': '3', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2008', 'playerName': 'Cordy Glenn', 'highSchool': 'Riverdale', 'city': 'Riverdale', 'state': 'GA', 'position': 'OT', 'height': 78.0, 'weight': '315', 'compRating': '0.9108', 'compStars': 4, 'nationalRank': '212', 'positionRank': '19', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2008', 'playerName': 'Christian Robinson', 'highSchool': 'Greater Atlanta Christian School', 'city': 'Norcross', 'state': 'GA', 'position': 'ILB', 'height': 74.0, 'weight': '204', 'compRating': '0.9040', 'compStars': 4, 'nationalRank': '245', 'positionRank': '10', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2008', 'playerName': 'Brandon Boykin', 'highSchool': 'Fayette County', 'city': 'Fayetteville', 'state': 'GA', 'position': 'CB', 'height': 70.0, 'weight': '162', 'compRating': '0.9020', 'compStars': 4, 'nationalRank': '252', 'positionRank': '21', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2008', 'playerName': 'Akeem Hebron', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'ILB', 'height': 73.0, 'weight': '220', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '24', 'positionRank': '2', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2008', 'playerName': 'Xavier Avery', 'highSchool': 'Cedar Grove', 'city': 'Ellenwood', 'state': 'GA', 'position': 'ATH', 'height': 71.0, 'weight': '185', 'compRating': '0.8906', 'compStars': 4, 'nationalRank': '327', 'positionRank': '18', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2008', 'playerName': 'Bacarri Rambo', 'highSchool': 'Seminole County', 'city': 'Donalsonville', 'state': 'GA', 'position': 'S', 'height': 72.0, 'weight': '211', 'compRating': '0.8795', 'compStars': 3, 'nationalRank': '399', 'positionRank': '32', 'stateRank': '31', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2008', 'playerName': 'Makiri Pugh', 'highSchool': 'Independence', 'city': 'Charlotte', 'state': 'NC', 'position': 'S', 'height': 70.0, 'weight': '194', 'compRating': '0.8764', 'compStars': 3, 'nationalRank': '454', 'positionRank': '37', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2008', 'playerName': 'Nick Williams', 'highSchool': 'Bainbridge', 'city': 'Bainbridge', 'state': 'GA', 'position': 'OLB', 'height': 75.0, 'weight': '206', 'compRating': '0.8694', 'compStars': 3, 'nationalRank': '513', 'positionRank': '42', 'stateRank': '38', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2008', 'playerName': 'Jonathan Owens', 'highSchool': 'Susan Moore Sch', 'city': 'Blountsville', 'state': 'AL', 'position': 'OG', 'height': 77.0, 'weight': '295', 'compRating': '0.8684', 'compStars': 3, 'nationalRank': '525', 'positionRank': '33', 'stateRank': '26', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2008', 'playerName': 'Sanders Commings', 'highSchool': 'Westside', 'city': 'Augusta', 'state': 'GA', 'position': 'CB', 'height': 73.0, 'weight': '195', 'compRating': '0.8684', 'compStars': 3, 'nationalRank': '527', 'positionRank': '35', 'stateRank': '40', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2008', 'playerName': 'Blair Walsh', 'highSchool': 'Cardinal Gibbons', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'K', 'height': 70.0, 'weight': '163', 'compRating': '0.8542', 'compStars': 3, 'nationalRank': '703', 'positionRank': '3', 'stateRank': '90', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2008', 'playerName': 'Jeremy Longo', 'highSchool': 'Cardinal Gibbons', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'WDE', 'height': 77.0, 'weight': '212', 'compRating': '0.8528', 'compStars': 3, 'nationalRank': '720', 'positionRank': '21', 'stateRank': '94', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2008', 'playerName': 'Bryce Ros', 'highSchool': 'Kennesaw Mountain', 'city': 'Acworth', 'state': 'GA', 'position': 'TE', 'height': 76.0, 'weight': '233', 'compRating': '0.8399', 'compStars': 3, 'nationalRank': '875', 'positionRank': '42', 'stateRank': '61', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2008', 'playerName': 'Taylor Bradberry', 'highSchool': 'Winder-Barrow', 'city': 'Winder', 'state': 'GA', 'position': 'WR', 'height': 75.0, 'weight': '198', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2018', 'playerName': 'J.J. Peterson', 'highSchool': 'Colquitt County', 'city': 'Moultrie', 'state': 'GA', 'position': 'OLB', 'height': 74.5, 'weight': '231', 'compRating': '0.9761', 'compStars': 4, 'nationalRank': '48', 'positionRank': '3', 'stateRank': '7', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '74', '247positionRank': '8', '247stateRank': '8'}, {'school': 'tennessee', 'year': '2018', 'playerName': 'Alontae Taylor', 'highSchool': 'Coffee County Central', 'city': 'Manchester', 'state': 'TN', 'position': 'WR', 'height': 72.0, 'weight': '184', 'compRating': '0.9471', 'compStars': 4, 'nationalRank': '122', 'positionRank': '21', 'stateRank': '4', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '49', '247stateRank': '9'}, {'school': 'tennessee', 'year': '2018', 'playerName': 'Greg Emerson', 'highSchool': 'North Side', 'city': 'Jackson', 'state': 'TN', 'position': 'DT', 'height': 75.0, 'weight': '280', 'compRating': '0.9441', 'compStars': 4, 'nationalRank': '136', 'positionRank': '13', 'stateRank': '5', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '112', '247positionRank': '10', '247stateRank': '3'}, {'school': 'tennessee', 'year': '2018', 'playerName': 'Bryce Thompson', 'highSchool': 'Dutch Fork', 'city': 'Irmo', 'state': 'SC', 'position': 'ATH', 'height': 72.0, 'weight': '180', 'compRating': '0.8996', 'compStars': 4, 'nationalRank': '301', 'positionRank': '12', 'stateRank': '5', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '19', '247stateRank': '6'}, {'school': 'tennessee', 'year': '2018', 'playerName': 'Dominick Wood-Anderson', 'highSchool': 'Arizona Western College', 'city': 'Yuma', 'state': 'AZ', 'position': 'TE', 'height': 77.0, 'weight': '245', 'compRating': '0.8979', 'compStars': 4, 'nationalRank': '10', 'positionRank': '2', 'stateRank': '1', '247Rating': ' 90 ', '247Stars': 4, '247nationalRank': '9', '247positionRank': '2', '247stateRank': '1'}, {'school': 'tennessee', 'year': '2018', 'playerName': 'Jordan Allen', 'highSchool': 'City College of San Francisco', 'city': 'San Francisco', 'state': 'CA', 'position': 'WDE', 'height': 76.0, 'weight': '230', 'compRating': '0.8967', 'compStars': 4, 'nationalRank': '14', 'positionRank': '2', 'stateRank': '2', '247Rating': ' 89 ', '247Stars': 3, '247nationalRank': '21', '247positionRank': '2', '247stateRank': '3'}, {'school': 'tennessee', 'year': '2018', 'playerName': 'Emmit Gooden', 'highSchool': 'Independence C.C.', 'city': 'Independence', 'state': 'KS', 'position': 'DT', 'height': 76.0, 'weight': '305', 'compRating': '0.8933', 'compStars': 4, 'nationalRank': '18', 'positionRank': '7', 'stateRank': '4', '247Rating': ' 87 ', '247Stars': 3, '247nationalRank': '36', '247positionRank': '10', '247stateRank': '5'}, {'school': 'tennessee', 'year': '2018', 'playerName': 'Jerome Carvin', 'highSchool': 'Cordova', 'city': 'Cordova', 'state': 'TN', 'position': 'OT', 'height': 76.0, 'weight': '330', 'compRating': '0.8904', 'compStars': 4, 'nationalRank': '375', 'positionRank': '26', 'stateRank': '11', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '33', '247stateRank': '13'}, {'school': 'tennessee', 'year': '2018', 'playerName': 'Jeremy Banks', 'highSchool': 'Cordova', 'city': 'Cordova', 'state': 'TN', 'position': 'RB', 'height': 74.0, 'weight': '215', 'compRating': '0.8883', 'compStars': 3, 'nationalRank': '394', 'positionRank': '16', 'stateRank': '13', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '19', '247stateRank': '14'}, {'school': 'tennessee', 'year': '2018', 'playerName': 'Jahmir Johnson', 'highSchool': 'Arizona Western College', 'city': 'Yuma', 'state': 'AZ', 'position': 'OT', 'height': 77.0, 'weight': '273', 'compRating': '0.8864', 'compStars': 3, 'nationalRank': '23', 'positionRank': '6', 'stateRank': '3', '247Rating': ' 90 ', '247Stars': 4, '247nationalRank': '16', '247positionRank': '2', '247stateRank': '2'}, {'school': 'tennessee', 'year': '2018', 'playerName': 'J.T. Shrout', 'highSchool': 'William S. Hart Senior', 'city': 'Newhall', 'state': 'CA', 'position': 'PRO', 'height': 75.0, 'weight': '190', 'compRating': '0.8696', 'compStars': 3, 'nationalRank': '641', 'positionRank': '26', 'stateRank': '67', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '34', '247stateRank': '105'}, {'school': 'tennessee', 'year': '2018', 'playerName': 'Jacob Warren', 'highSchool': 'Farragut', 'city': 'Knoxville', 'state': 'TN', 'position': 'TE', 'height': 78.0, 'weight': '211', 'compRating': '0.8654', 'compStars': 3, 'nationalRank': '720', 'positionRank': '36', 'stateRank': '22', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '52', '247stateRank': '35'}, {'school': 'tennessee', 'year': '2018', 'playerName': 'Tanner Antonutti', 'highSchool': 'Ensworth', 'city': 'Nashville', 'state': 'TN', 'position': 'OT', 'height': 77.0, 'weight': '273', 'compRating': '0.8626', 'compStars': 3, 'nationalRank': '766', 'positionRank': '58', 'stateRank': '23', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '51', '247stateRank': '21'}, {'school': 'tennessee', 'year': '2018', 'playerName': 'John Mincey', 'highSchool': 'Clinch County', 'city': 'Homerville', 'state': 'GA', 'position': 'SDE', 'height': 76.0, 'weight': '260', 'compRating': '0.8614', 'compStars': 3, 'nationalRank': '795', 'positionRank': '38', 'stateRank': '79', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '39', '247stateRank': '94'}, {'school': 'tennessee', 'year': '2018', 'playerName': 'Ollie Lane', 'highSchool': 'Gibbs', 'city': 'Corryton', 'state': 'TN', 'position': 'OG', 'height': 77.0, 'weight': '285', 'compRating': '0.8573', 'compStars': 3, 'nationalRank': '888', 'positionRank': '34', 'stateRank': '28', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '27', '247stateRank': '23'}, {'school': 'tennessee', 'year': '2018', 'playerName': 'Trevon Flowers', 'highSchool': 'Tucker', 'city': 'Tucker', 'state': 'GA', 'position': 'S', 'height': 73.0, 'weight': '185', 'compRating': '0.8552', 'compStars': 3, 'nationalRank': '930', 'positionRank': '74', 'stateRank': '86', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '59', '247stateRank': '72'}, {'school': 'tennessee', 'year': '2018', 'playerName': 'Kurott Garland', 'highSchool': 'Heritage', 'city': 'Conyers', 'state': 'GA', 'position': 'SDE', 'height': 74.0, 'weight': '273', 'compRating': '0.8466', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '60', 'stateRank': '116', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '42', '247stateRank': '102'}, {'school': 'tennessee', 'year': '2018', 'playerName': 'Kingston Harris', 'highSchool': 'IMG Academy', 'city': 'Bradenton', 'state': 'FL', 'position': 'DT', 'height': 75.0, 'weight': '285', 'compRating': '0.8452', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '80', 'stateRank': '187', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '82', '247stateRank': '192'}, {'school': 'tennessee', 'year': '2018', 'playerName': 'Cedric Tillman', 'highSchool': 'Bishop Gorman', 'city': 'Las Vegas', 'state': 'NV', 'position': 'WR', 'height': 75.0, 'weight': '205', 'compRating': '0.8255', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '246', 'stateRank': '11', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '179', '247stateRank': '10'}, {'school': 'tennessee', 'year': '2018', 'playerName': 'Brandon Davis', 'highSchool': 'John Curtis', 'city': 'New Orleans', 'state': 'LA', 'position': 'CB', 'height': 71.0, 'weight': '160', 'compRating': '0.8204', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '158', 'stateRank': '72', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '135', '247stateRank': '69'}, {'school': 'tennessee', 'year': '2018', 'playerName': 'Kenneth George Jr.', 'highSchool': 'Trinity Valley C.C.', 'city': 'Athens', 'state': 'TX', 'position': 'CB', 'height': 72.0, 'weight': '197', 'compRating': '0.8200', 'compStars': 3, 'nationalRank': '198', 'positionRank': '25', 'stateRank': '20', '247Rating': ' 82 ', '247Stars': 3, '247nationalRank': '167', '247positionRank': '21', '247stateRank': '20'}, {'school': 'tennessee', 'year': '2018', 'playerName': 'Paxton Brooks', 'highSchool': 'Airport', 'city': 'West Columbia', 'state': 'SC', 'position': 'K', 'height': 77.0, 'weight': '170', 'compRating': '0.8171', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '8', 'stateRank': '37', '247Rating': ' 75 ', '247Stars': 2, '247positionRank': '19', '247stateRank': '70'}, {'school': 'ole-miss', 'year': '2010', 'playerName': 'Wayne Dorsey', 'highSchool': 'Mississippi Gulf Coast C.C.', 'city': 'Perkinston', 'state': 'MS', 'position': 'SDE', 'height': 80.0, 'weight': '255', 'compRating': '0.9444', 'compStars': 4, 'nationalRank': '2', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2010', 'playerName': 'Vincent Sanders', 'highSchool': 'Noxubee County', 'city': 'Macon', 'state': 'MS', 'position': 'WR', 'height': 75.0, 'weight': '182', 'compRating': '0.9242', 'compStars': 4, 'nationalRank': '176', 'positionRank': '23', 'stateRank': '3', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '197', '247positionRank': '21', '247stateRank': '3'}, {'school': 'ole-miss', 'year': '2010', 'playerName': 'Carlos Thompson', 'highSchool': 'Simmons', 'city': 'Hollandale', 'state': 'MS', 'position': 'WDE', 'height': 77.0, 'weight': '220', 'compRating': '0.9165', 'compStars': 4, 'nationalRank': '205', 'positionRank': '13', 'stateRank': '5', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '227', '247positionRank': '13', '247stateRank': '4'}, {'school': 'ole-miss', 'year': '2010', 'playerName': 'Randall Mackey', 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'DUAL', 'height': 72.0, 'weight': '190', 'compRating': '0.9111', 'compStars': 4, 'nationalRank': '6', 'positionRank': '2', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2010', 'playerName': 'Carlton Martin', 'highSchool': 'Madison Central', 'city': 'Madison', 'state': 'MS', 'position': 'DT', 'height': 74.0, 'weight': '270', 'compRating': '0.9006', 'compStars': 4, 'nationalRank': '277', 'positionRank': '21', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2010', 'playerName': 'Delvin Jones', 'highSchool': 'Miami Palmetto', 'city': 'Miami', 'state': 'FL', 'position': 'ATH', 'height': 75.0, 'weight': '230', 'compRating': '0.8955', 'compStars': 4, 'nationalRank': '304', 'positionRank': '22', 'stateRank': '40', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2010', 'playerName': 'Bryon Bennett', 'highSchool': 'Madison Central', 'city': 'Madison', 'state': 'MS', 'position': 'DT', 'height': 74.0, 'weight': '250', 'compRating': '0.8795', 'compStars': 3, 'nationalRank': '433', 'positionRank': '39', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2010', 'playerName': 'Nicholas Parker', 'highSchool': 'South Panola', 'city': 'Batesville', 'state': 'MS', 'position': 'RB', 'height': 74.0, 'weight': '210', 'compRating': '0.8764', 'compStars': 3, 'nationalRank': '457', 'positionRank': '35', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2010', 'playerName': 'Tony Grimes', 'highSchool': 'Hollywood Hills', 'city': 'Hollywood', 'state': 'FL', 'position': 'CB', 'height': 71.0, 'weight': '166', 'compRating': '0.8718', 'compStars': 3, 'nationalRank': '545', 'positionRank': '37', 'stateRank': '79'}, {'school': 'ole-miss', 'year': '2010', 'playerName': 'Clarence Jackson', 'highSchool': 'North Clayton', 'city': 'Atlanta', 'state': 'GA', 'position': 'OLB', 'height': 74.0, 'weight': '218', 'compRating': '0.8715', 'compStars': 3, 'nationalRank': '546', 'positionRank': '32', 'stateRank': '48', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2010', 'playerName': 'Damien Jackson', 'highSchool': 'Mississippi Gulf Coast C.C.', 'city': 'Perkinston', 'state': 'MS', 'position': 'S', 'height': 75.0, 'weight': '195', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '28', 'positionRank': '3', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2010', 'playerName': 'Brishen Mathews', 'highSchool': 'Monticello', 'city': 'Monticello', 'state': 'AR', 'position': 'S', 'height': 73.0, 'weight': '190', 'compRating': '0.8639', 'compStars': 3, 'nationalRank': '698', 'positionRank': '56', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2010', 'playerName': 'Cordell Giles', 'highSchool': 'Ray Brooks School', 'city': 'Benoit', 'state': 'MS', 'position': 'TE', 'height': 75.0, 'weight': '235', 'compRating': '0.8639', 'compStars': 3, 'nationalRank': '704', 'positionRank': '27', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2010', 'playerName': 'Cliff Coleman', 'highSchool': 'Boyd Anderson', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'CB', 'height': 70.0, 'weight': '170', 'compRating': '0.8622', 'compStars': 3, 'nationalRank': '757', 'positionRank': '59', 'stateRank': '107', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2010', 'playerName': 'Ralph Williams', 'highSchool': 'Miami Southridge', 'city': 'Miami', 'state': 'FL', 'position': 'OLB', 'height': 73.0, 'weight': '220', 'compRating': '0.8622', 'compStars': 3, 'nationalRank': '766', 'positionRank': '51', 'stateRank': '108', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2010', 'playerName': 'Martez Eastland', 'highSchool': 'Ringgold', 'city': 'Ringgold', 'state': 'GA', 'position': 'FB', 'height': 72.0, 'weight': '235', 'compRating': '0.8576', 'compStars': 3, 'nationalRank': '861', 'positionRank': '6', 'stateRank': '72', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2010', 'playerName': 'Jared Duke ', 'highSchool': 'Walker Valley', 'city': 'Cleveland', 'state': 'TN', 'position': 'OT', 'height': '0.0', 'weight': '0', 'compRating': '0.8559', 'compStars': 3, 'nationalRank': '908', 'positionRank': '65', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2010', 'playerName': 'Eric Mitchell', 'highSchool': 'Mariner', 'city': 'Cape Coral', 'state': 'FL', 'position': 'ATH', 'height': 71.0, 'weight': '170', 'compRating': '0.8528', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '67', 'stateRank': '150'}, {'school': 'ole-miss', 'year': '2010', 'playerName': 'Cedric Smith', 'highSchool': 'Prattville', 'city': 'Prattville', 'state': 'AL', 'position': 'CB', 'height': 70.0, 'weight': '170', 'compRating': '0.8528', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '81', 'stateRank': '34', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2010', 'playerName': 'Jeff Scott', 'highSchool': 'Archbishop Carroll', 'city': 'Miami', 'state': 'FL', 'position': 'RB', 'height': 68.0, 'weight': '170', 'compRating': '0.8510', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '88', 'stateRank': '157', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2010', 'playerName': 'Quadarias Mireles', 'highSchool': 'Atlantic', 'city': 'Delray Beach', 'state': 'FL', 'position': 'WR', 'height': 71.0, 'weight': '175', 'compRating': '0.8510', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '138', 'stateRank': '161', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '87', '247positionRank': '14', '247stateRank': '18'}, {'school': 'ole-miss', 'year': '2010', 'playerName': 'Terrence Hackney', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'OT', 'height': 79.0, 'weight': '320', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '28', 'positionRank': '4', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2010', 'playerName': 'Will Denny', 'highSchool': 'Jackson Academy', 'city': 'Jackson', 'state': 'MS', 'position': 'OG', 'height': 72.0, 'weight': '240', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '135', 'stateRank': '37', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2010', 'playerName': 'Chase Hughes', 'highSchool': 'Springville Sch', 'city': 'Springville', 'state': 'AL', 'position': 'OC', 'height': 75.0, 'weight': '290', 'compRating': '0.8622', 'compStars': 3, 'nationalRank': '762', 'positionRank': '8', 'stateRank': '24'}, {'school': 'ole-miss', 'year': '2010', 'playerName': 'Eric Mitchell', 'highSchool': 'Atlantic', 'city': 'Delray Beach', 'state': 'FL', 'position': 'ATH', 'height': 71.0, 'weight': '175', 'compRating': '0.8463', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '84', 'stateRank': '178'}, {'school': 'ole-miss', 'year': '2010', 'playerName': 'Dehendret Collins', 'highSchool': 'Copiah-Lincoln C.C.', 'city': 'Wesson', 'state': 'MS', 'position': 'CB', 'height': 71.0, 'weight': '185', 'compRating': '0.7874', 'compStars': 2, 'nationalRank': '184', 'positionRank': '19', 'stateRank': '34', '247Rating': ' 74 ', '247Stars': 2, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2018', 'playerName': "Leon O'Neal Jr.", 'highSchool': 'Cy Springs', 'city': 'Cypress', 'state': 'TX', 'position': 'S', 'height': 73.0, 'weight': '190', 'compRating': '0.9624', 'compStars': 4, 'nationalRank': '75', 'positionRank': '8', 'stateRank': '8', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '86', '247positionRank': '8', '247stateRank': '7'}, {'school': 'texas-am', 'year': '2018', 'playerName': 'Jalen Preston', 'highSchool': 'Manvel', 'city': 'Manvel', 'state': 'TX', 'position': 'WR', 'height': 74.0, 'weight': '212', 'compRating': '0.9557', 'compStars': 4, 'nationalRank': '95', 'positionRank': '18', 'stateRank': '9', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '193', '247positionRank': '29', '247stateRank': '19'}, {'school': 'texas-am', 'year': '2018', 'playerName': 'Colten Blanton', 'highSchool': 'Cy Ranch', 'city': 'Cypress', 'state': 'TX', 'position': 'OT', 'height': 79.0, 'weight': '285', 'compRating': '0.9370', 'compStars': 4, 'nationalRank': '153', 'positionRank': '13', 'stateRank': '14', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '97', '247positionRank': '8', '247stateRank': '8'}, {'school': 'texas-am', 'year': '2018', 'playerName': 'Bobby Brown', 'highSchool': 'Lamar', 'city': 'Arlington', 'state': 'TX', 'position': 'DT', 'height': 76.0, 'weight': '282', 'compRating': '0.9267', 'compStars': 4, 'nationalRank': '182', 'positionRank': '17', 'stateRank': '18', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '142', '247positionRank': '15', '247stateRank': '12'}, {'school': 'texas-am', 'year': '2018', 'playerName': 'Max Wright', 'highSchool': 'Taylor', 'city': 'Katy', 'state': 'TX', 'position': 'SDE', 'height': 76.0, 'weight': '270', 'compRating': '0.9245', 'compStars': 4, 'nationalRank': '190', 'positionRank': '8', 'stateRank': '22', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '143', '247positionRank': '8', '247stateRank': '13'}, {'school': 'texas-am', 'year': '2018', 'playerName': 'Jordan Moore', 'highSchool': 'Yoakum', 'city': 'Yoakum', 'state': 'TX', 'position': 'S', 'height': 71.0, 'weight': '192', 'compRating': '0.9143', 'compStars': 4, 'nationalRank': '225', 'positionRank': '19', 'stateRank': '28', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '23', '247stateRank': '42'}, {'school': 'texas-am', 'year': '2018', 'playerName': 'Tank Jenkins', 'highSchool': 'Park Crossing', 'city': 'Montgomery', 'state': 'AL', 'position': 'OG', 'height': 75.0, 'weight': '325', 'compRating': '0.9083', 'compStars': 4, 'nationalRank': '253', 'positionRank': '11', 'stateRank': '8', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '221', '247positionRank': '9', '247stateRank': '5'}, {'school': 'texas-am', 'year': '2018', 'playerName': 'Jeremiah Martin', 'highSchool': 'Cajon', 'city': 'San Bernardino', 'state': 'CA', 'position': 'WDE', 'height': 77.0, 'weight': '240', 'compRating': '0.9083', 'compStars': 4, 'nationalRank': '254', 'positionRank': '15', 'stateRank': '35', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '213', '247positionRank': '14', '247stateRank': '31'}, {'school': 'texas-am', 'year': '2018', 'playerName': 'Jashaun Corbin', 'highSchool': 'Rockledge', 'city': 'ROCKLEDGE', 'state': 'FL', 'position': 'APB', 'height': 72.0, 'weight': '191', 'compRating': '0.9074', 'compStars': 4, 'nationalRank': '261', 'positionRank': '8', 'stateRank': '49', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '14', '247stateRank': '63'}, {'school': 'texas-am', 'year': '2018', 'playerName': 'James Foster', 'highSchool': 'Lanier', 'city': 'Montgomery', 'state': 'AL', 'position': 'DUAL', 'height': 75.0, 'weight': '210', 'compRating': '0.9055', 'compStars': 4, 'nationalRank': '271', 'positionRank': '12', 'stateRank': '10', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '15', '247stateRank': '16'}, {'school': 'texas-am', 'year': '2018', 'playerName': 'Caleb Chapman', 'highSchool': 'Clear Brook', 'city': 'Friendswood', 'state': 'TX', 'position': 'WR', 'height': 77.0, 'weight': '210', 'compRating': '0.8925', 'compStars': 4, 'nationalRank': '354', 'positionRank': '60', 'stateRank': '47', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '63', '247stateRank': '54'}, {'school': 'texas-am', 'year': '2018', 'playerName': 'Vernon Jackson', 'highSchool': 'Boling', 'city': 'Boling', 'state': 'TX', 'position': 'ATH', 'height': 75.0, 'weight': '240', 'compRating': '0.8920', 'compStars': 4, 'nationalRank': '358', 'positionRank': '21', 'stateRank': '48', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '223', '247positionRank': '12', '247stateRank': '25'}, {'school': 'texas-am', 'year': '2018', 'playerName': 'Luke Matthews', 'highSchool': 'Elkins', 'city': 'Missouri City', 'state': 'TX', 'position': 'OG', 'height': 76.0, 'weight': '305', 'compRating': '0.8914', 'compStars': 4, 'nationalRank': '368', 'positionRank': '17', 'stateRank': '50', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '228', '247positionRank': '10', '247stateRank': '27'}, {'school': 'texas-am', 'year': '2018', 'playerName': 'Barton Clement', 'highSchool': 'Fort Bend Marshall', 'city': 'Missouri City', 'state': 'TX', 'position': 'OG', 'height': 75.0, 'weight': '315', 'compRating': '0.8891', 'compStars': 3, 'nationalRank': '381', 'positionRank': '18', 'stateRank': '51', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '19', '247stateRank': '68'}, {'school': 'texas-am', 'year': '2018', 'playerName': 'Montel Parker', 'highSchool': 'Dickinson', 'city': 'Dickinson', 'state': 'TX', 'position': 'WR', 'height': 74.0, 'weight': '185', 'compRating': '0.8884', 'compStars': 3, 'nationalRank': '389', 'positionRank': '65', 'stateRank': '54', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '50', '247stateRank': '35'}, {'school': 'texas-am', 'year': '2018', 'playerName': 'Tyree Wilson', 'highSchool': 'West Rusk', 'city': 'New London', 'state': 'TX', 'position': 'WDE', 'height': 77.5, 'weight': '230', 'compRating': '0.8813', 'compStars': 3, 'nationalRank': '471', 'positionRank': '23', 'stateRank': '68', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '16', '247stateRank': '32'}, {'school': 'texas-am', 'year': '2018', 'playerName': 'Jace Sternberger', 'highSchool': 'Northeastern Oklahoma A&M', 'city': 'Miami', 'state': 'OK', 'position': 'TE', 'height': 76.0, 'weight': '240', 'compRating': '0.8765', 'compStars': 3, 'nationalRank': '37', 'positionRank': '3', 'stateRank': '1', '247Rating': ' 76 ', '247Stars': 2, '247positionRank': '98', '247stateRank': '28'}, {'school': 'texas-am', 'year': '2018', 'playerName': 'Glenn Beal', 'highSchool': 'John Curtis', 'city': 'New Orleans', 'state': 'LA', 'position': 'TE', 'height': 77.0, 'weight': '265', 'compRating': '0.8723', 'compStars': 3, 'nationalRank': '601', 'positionRank': '26', 'stateRank': '24', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '18', '247stateRank': '16'}, {'school': 'texas-am', 'year': '2018', 'playerName': 'Charles Strong', 'highSchool': 'Union County', 'city': 'Lake Butler', 'state': 'FL', 'position': 'RB', 'height': 73.0, 'weight': '220', 'compRating': '0.8717', 'compStars': 3, 'nationalRank': '612', 'positionRank': '27', 'stateRank': '96', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '71', '247stateRank': '165'}, {'school': 'texas-am', 'year': '2018', 'playerName': 'Brian Johnson', 'highSchool': 'Manvel', 'city': 'Manvel', 'state': 'TX', 'position': 'S', 'height': 73.5, 'weight': '185', 'compRating': '0.8709', 'compStars': 3, 'nationalRank': '627', 'positionRank': '43', 'stateRank': '86', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '69', '247stateRank': '102'}, {'school': 'texas-am', 'year': '2018', 'playerName': 'Mohamed Diallo', 'highSchool': 'Arizona Western College', 'city': 'Yuma', 'state': 'AZ', 'position': 'DT', 'height': 76.0, 'weight': '320', 'compRating': '0.8665', 'compStars': 3, 'nationalRank': '58', 'positionRank': '15', 'stateRank': '6', '247Rating': ' 85 ', '247Stars': 3, '247nationalRank': '83', '247positionRank': '18', '247stateRank': '11'}, {'school': 'texas-am', 'year': '2018', 'playerName': 'Deneric Prince', 'highSchool': 'Manvel', 'city': 'Manvel', 'state': 'TX', 'position': 'RB', 'height': 73.0, 'weight': '196', 'compRating': '0.8452', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '69', 'stateRank': '171', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '78', '247stateRank': '145'}, {'school': 'texas-am', 'year': '2018', 'playerName': 'Seth Small', 'highSchool': 'Katy', 'city': 'Katy', 'state': 'TX', 'position': 'K', 'height': 71.0, 'weight': '190', 'compRating': '0.8116', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '11', 'stateRank': '283', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '2', '247stateRank': '285'}, {'school': 'vanderbilt', 'year': '2018', 'playerName': 'Alston Orji', 'highSchool': 'Rockwall', 'city': 'Rockwall', 'state': 'TX', 'position': 'ILB', 'height': 74.0, 'weight': '230', 'compRating': '0.9103', 'compStars': 4, 'nationalRank': '245', 'positionRank': '12', 'stateRank': '32', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '22', '247stateRank': '57'}, {'school': 'vanderbilt', 'year': '2018', 'playerName': 'Camron Johnson', 'highSchool': 'Brentwood Academy', 'city': 'Brentwood', 'state': 'TN', 'position': 'WR', 'height': 73.0, 'weight': '182', 'compRating': '0.9070', 'compStars': 4, 'nationalRank': '264', 'positionRank': '43', 'stateRank': '8', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '233', '247positionRank': '37', '247stateRank': '6'}, {'school': 'vanderbilt', 'year': '2018', 'playerName': 'Brendon Harris', 'highSchool': 'Baylor School', 'city': 'Chattanooga', 'state': 'TN', 'position': 'S', 'height': 72.5, 'weight': '205', 'compRating': '0.8907', 'compStars': 4, 'nationalRank': '371', 'positionRank': '25', 'stateRank': '10', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '46', '247stateRank': '20'}, {'school': 'vanderbilt', 'year': '2018', 'playerName': 'Salua Masina', 'highSchool': 'Brighton', 'city': 'Salt Lake City', 'state': 'UT', 'position': 'OLB', 'height': 75.5, 'weight': '205', 'compRating': '0.8863', 'compStars': 3, 'nationalRank': '414', 'positionRank': '25', 'stateRank': '7', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '24', '247stateRank': '6'}, {'school': 'vanderbilt', 'year': '2018', 'playerName': 'Tre Douglas', 'highSchool': 'Eagles Landing Christian Academy', 'city': 'McDonough', 'state': 'GA', 'position': 'CB', 'height': 74.0, 'weight': '180', 'compRating': '0.8835', 'compStars': 3, 'nationalRank': '443', 'positionRank': '43', 'stateRank': '47', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '82', '247stateRank': '85'}, {'school': 'vanderbilt', 'year': '2018', 'playerName': 'Allan Walters', 'highSchool': 'The Peddie School', 'city': 'Hightstown', 'state': 'NJ', 'position': 'PRO', 'height': 73.0, 'weight': '200', 'compRating': '0.8784', 'compStars': 3, 'nationalRank': '506', 'positionRank': '20', 'stateRank': '10', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '22', '247stateRank': '13'}, {'school': 'vanderbilt', 'year': '2018', 'playerName': 'Daniel Dawkins', 'highSchool': 'The Peddie School', 'city': 'Hightstown', 'state': 'NJ', 'position': 'OC', 'height': 75.0, 'weight': '296', 'compRating': '0.8749', 'compStars': 3, 'nationalRank': '549', 'positionRank': '11', 'stateRank': '12', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '17', '247stateRank': '20'}, {'school': 'vanderbilt', 'year': '2018', 'playerName': 'Gavin Schoenwald', 'highSchool': 'Brentwood Academy', 'city': 'Brentwood', 'state': 'TN', 'position': 'TE', 'height': 77.0, 'weight': '225', 'compRating': '0.8722', 'compStars': 3, 'nationalRank': '602', 'positionRank': '27', 'stateRank': '18', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '21', '247stateRank': '16'}, {'school': 'vanderbilt', 'year': '2018', 'playerName': 'Dashaun Jerkins', 'highSchool': 'Woodbridge', 'city': 'Woodbridge', 'state': 'VA', 'position': 'S', 'height': 71.5, 'weight': '195', 'compRating': '0.8706', 'compStars': 3, 'nationalRank': '637', 'positionRank': '44', 'stateRank': '13', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '22', '247stateRank': '6'}, {'school': 'vanderbilt', 'year': '2018', 'playerName': 'C.J. Bolar', 'highSchool': 'Purvis', 'city': 'Purvis', 'state': 'MS', 'position': 'WR', 'height': 74.0, 'weight': '186', 'compRating': '0.8680', 'compStars': 3, 'nationalRank': '669', 'positionRank': '105', 'stateRank': '13', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '103', '247stateRank': '10'}, {'school': 'vanderbilt', 'year': '2018', 'playerName': 'Elijah McAllister', 'highSchool': 'Rumson-Fair Haven', 'city': 'Rumson', 'state': 'NJ', 'position': 'SDE', 'height': 78.0, 'weight': '230', 'compRating': '0.8642', 'compStars': 3, 'nationalRank': '735', 'positionRank': '31', 'stateRank': '19', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '64', '247stateRank': '29'}, {'school': 'vanderbilt', 'year': '2018', 'playerName': 'Ben Bresnahan', 'highSchool': 'West Forsyth', 'city': 'Cumming', 'state': 'GA', 'position': 'TE', 'height': 77.0, 'weight': '225', 'compRating': '0.8635', 'compStars': 3, 'nationalRank': '755', 'positionRank': '37', 'stateRank': '75', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '40', '247stateRank': '97'}, {'school': 'vanderbilt', 'year': '2018', 'playerName': 'Maxwell Worship', 'highSchool': 'Cardinal Gibbons', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'S', 'height': 73.0, 'weight': '198', 'compRating': '0.8538', 'compStars': 3, 'nationalRank': '976', 'positionRank': '78', 'stateRank': '141', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '96', '247stateRank': '174'}, {'school': 'vanderbilt', 'year': '2018', 'playerName': 'Amir Abdur-Rahman', 'highSchool': 'Mays', 'city': 'Atlanta', 'state': 'GA', 'position': 'WR', 'height': 76.0, 'weight': '200', 'compRating': '0.8518', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '152', 'stateRank': '99', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '166', '247stateRank': '114'}, {'school': 'vanderbilt', 'year': '2018', 'playerName': 'JaVeon Marlow', 'highSchool': 'Winter Haven', 'city': 'Winter Haven', 'state': 'FL', 'position': 'RB', 'height': 70.0, 'weight': '200', 'compRating': '0.8485', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '58', 'stateRank': '167', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '75', '247stateRank': '177'}, {'school': 'vanderbilt', 'year': '2018', 'playerName': 'Tyler Steen', 'highSchool': 'St. Thomas Aquinas', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'OT', 'height': 77.0, 'weight': '300', 'compRating': '0.8464', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '112', 'stateRank': '180', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '95', '247stateRank': '163'}, {'school': 'vanderbilt', 'year': '2018', 'playerName': 'Wyatt Smock', 'highSchool': 'St. Xavier', 'city': 'Louisville', 'state': 'KY', 'position': 'OG', 'height': 76.0, 'weight': '290', 'compRating': '0.8464', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '50', 'stateRank': '9', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '47', '247stateRank': '9'}, {'school': 'vanderbilt', 'year': '2018', 'playerName': 'BJ Anderson', 'highSchool': 'Andalusia', 'city': 'Andalusia', 'state': 'AL', 'position': 'WR', 'height': 74.0, 'weight': '172', 'compRating': '0.8255', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '245', 'stateRank': '57', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '175', '247stateRank': '48'}, {'school': 'vanderbilt', 'year': '2018', 'playerName': 'Javan Rice', 'highSchool': 'Belen Jesuit Prep', 'city': 'Miami', 'state': 'FL', 'position': 'K', 'height': 75.0, 'weight': '190', 'compRating': '0.8076', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '15', 'stateRank': '328', '247Rating': ' 75 ', '247Stars': 2, '247positionRank': '16', '247stateRank': '452'}, {'school': 'vanderbilt', 'year': '2018', 'playerName': 'Lorenza Surgers', 'highSchool': 'Panther Creek', 'city': 'Cary', 'state': 'NC', 'position': 'WDE', 'height': 79.0, 'weight': '225', 'compRating': '0.7882', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '133', 'stateRank': '76', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '105', '247stateRank': '57'}, {'school': 'vanderbilt', 'year': '2018', 'playerName': 'Carlton Lorenz', 'highSchool': 'College of the Canyons', 'city': 'Valencia', 'state': 'CA', 'position': 'OT', 'height': 77.0, 'weight': '280', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2002', 'playerName': 'Mario Whitney', 'highSchool': 'Jackson', 'city': 'Jackson', 'state': 'MO', 'position': 'RB', 'height': 72.0, 'weight': '190', 'compRating': '0.9355', 'compStars': 4, 'nationalRank': '103', 'positionRank': '11', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2002', 'playerName': 'Howard Brissette', 'highSchool': 'Chaffey College', 'city': 'Rancho Cucamonga', 'state': 'CA', 'position': 'OG', 'height': 78.0, 'weight': '315', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '38', 'positionRank': '1', 'stateRank': '19'}, {'school': 'missouri', 'year': '2002', 'playerName': 'Atiyyah Ellison', 'highSchool': 'Coffeyville C.C.', 'city': 'Coffeyville', 'state': 'KS', 'position': 'DT', 'height': 76.0, 'weight': '290', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '40', 'positionRank': '5', 'stateRank': '11'}, {'school': 'missouri', 'year': '2002', 'playerName': 'Dedrick Harrington', 'highSchool': 'Mexico', 'city': 'Mexico', 'state': 'MO', 'position': 'ATH', 'height': 76.0, 'weight': '225', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '240', 'positionRank': '17', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2002', 'playerName': 'Fabian Bean', 'highSchool': 'Salisbury School', 'city': 'Salisbury', 'state': 'CT', 'position': 'SDE', 'height': 75.0, 'weight': '270', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '245', 'positionRank': '12', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2002', 'playerName': 'Steve Sanchez', 'highSchool': 'College of the Sequoias', 'city': 'Visalia', 'state': 'CA', 'position': 'OT', 'height': 77.0, 'weight': '300', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '75', 'positionRank': '4', 'stateRank': '35'}, {'school': 'missouri', 'year': '2002', 'playerName': 'Mau Uiagalelei', 'highSchool': 'Mt. San Antonio College', 'city': 'Walnut', 'state': 'CA', 'position': 'ILB', 'height': 75.0, 'weight': '235', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '92', 'positionRank': '11', 'stateRank': '38'}, {'school': 'missouri', 'year': '2002', 'playerName': 'Zach Zwilling', 'highSchool': 'Fort Zumwalt East', 'city': 'Saint Peters', 'state': 'MO', 'position': 'TE', 'height': 78.0, 'weight': '250', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '385', 'positionRank': '29', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2002', 'playerName': 'Brian Smith', 'highSchool': 'Ryan', 'city': 'Denton', 'state': 'TX', 'position': 'WDE', 'height': 75.0, 'weight': '220', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '419', 'positionRank': '18', 'stateRank': '59', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2002', 'playerName': 'Corey Taylor', 'highSchool': 'University City Sr.', 'city': 'Saint Louis', 'state': 'MO', 'position': 'APB', 'height': 72.0, 'weight': '200', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '428', 'positionRank': '10', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2002', 'playerName': 'Josh Hibbets', 'highSchool': 'Enid', 'city': 'Enid', 'state': 'OK', 'position': 'DUAL', 'height': 75.0, 'weight': '190', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '431', 'positionRank': '16', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2002', 'playerName': 'Alex Petterson', 'highSchool': 'Newman Smith', 'city': 'Carrollton', 'state': 'TX', 'position': 'K', 'height': 76.0, 'weight': '280', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '453', 'positionRank': '10', 'stateRank': '67', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2002', 'playerName': 'Marcus Guerrero-Bacon', 'highSchool': 'Cy Springs', 'city': 'Cypress', 'state': 'TX', 'position': 'S', 'height': 75.0, 'weight': '190', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '454', 'positionRank': '27', 'stateRank': '68', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2002', 'playerName': 'Zach Ville', 'highSchool': 'West Hills College', 'city': 'Coalinga', 'state': 'CA', 'position': 'SDE', 'height': 74.0, 'weight': '270', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '134', 'positionRank': '15', 'stateRank': '58'}, {'school': 'missouri', 'year': '2002', 'playerName': 'Brandon Coleman', 'highSchool': 'North Miami', 'city': 'Miami', 'state': 'FL', 'position': 'ATH', 'height': 75.0, 'weight': '195', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '710', 'positionRank': '41', 'stateRank': '76', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2002', 'playerName': 'Joel Clinger', 'highSchool': 'Warrenton', 'city': 'Warrenton', 'state': 'MO', 'position': 'OT', 'height': 79.0, 'weight': '275', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '723', 'positionRank': '61', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2002', 'playerName': 'David Overstreet', 'highSchool': 'W W Samuell', 'city': 'Dallas', 'state': 'TX', 'position': 'DUAL', 'height': 74.0, 'weight': '180', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '740', 'positionRank': '28', 'stateRank': '125', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2002', 'playerName': 'Emmett Morris', 'highSchool': 'Parkway South', 'city': 'Ballwin', 'state': 'MO', 'position': 'ILB', 'height': 72.0, 'weight': '210', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '764', 'positionRank': '43', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2002', 'playerName': 'Phillip Tizzio', 'highSchool': 'Moore', 'city': 'Moore', 'state': 'OK', 'position': 'OG', 'height': 78.0, 'weight': '285', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '91', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2002', 'playerName': 'Mike Cook', 'highSchool': 'Clear Brook', 'city': 'Friendswood', 'state': 'TX', 'position': 'OT', 'height': 75.0, 'weight': '315', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '110', 'stateRank': '221', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2002', 'playerName': 'Todd Gohsler', 'highSchool': 'Mira Mesa', 'city': 'San Diego', 'state': 'CA', 'position': 'K', 'height': 72.0, 'weight': '190', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '33', 'stateRank': '170', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2002', 'playerName': 'DeQuincy Howard', 'highSchool': 'John Tyler', 'city': 'Tyler', 'state': 'TX', 'position': 'TE', 'height': 76.0, 'weight': '214', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '85', 'stateRank': '282', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2010', 'playerName': 'Alex Smith', 'highSchool': 'Lakota West', 'city': 'West Chester', 'state': 'OH', 'position': 'TE', 'height': 77.0, 'weight': '260', 'compRating': '0.8974', 'compStars': 4, 'nationalRank': '295', 'positionRank': '13', 'stateRank': '15', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '207', '247positionRank': '9', '247stateRank': '8'}, {'school': 'kentucky', 'year': '2010', 'playerName': 'Brandon Gainer', 'highSchool': 'Miami Central', 'city': 'Miami', 'state': 'FL', 'position': 'RB', 'height': 72.0, 'weight': '195', 'compRating': '0.8826', 'compStars': 3, 'nationalRank': '406', 'positionRank': '31', 'stateRank': '60', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2010', 'playerName': 'Jerrell Priester', 'highSchool': 'Allendale Fairfax', 'city': 'Fairfax', 'state': 'SC', 'position': 'ATH', 'height': 69.0, 'weight': '185', 'compRating': '0.8733', 'compStars': 3, 'nationalRank': '542', 'positionRank': '35', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2010', 'playerName': 'Dale Trimble', 'highSchool': 'Gadsden City', 'city': 'Gadsden', 'state': 'AL', 'position': 'CB', 'height': 70.0, 'weight': '175', 'compRating': '0.8684', 'compStars': 3, 'nationalRank': '588', 'positionRank': '44', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2010', 'playerName': 'Brice Laughlin', 'highSchool': 'Summerville', 'city': 'Summerville', 'state': 'SC', 'position': 'DT', 'height': 75.0, 'weight': '280', 'compRating': '0.8653', 'compStars': 3, 'nationalRank': '673', 'positionRank': '60', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2010', 'playerName': 'Miles Simpson', 'highSchool': 'Simon Kenton', 'city': 'Independence', 'state': 'KY', 'position': 'RB', 'height': 74.0, 'weight': '195', 'compRating': '0.8590', 'compStars': 3, 'nationalRank': '811', 'positionRank': '70', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2010', 'playerName': 'Tim McAdoo', 'highSchool': 'Oakland', 'city': 'Murfreesboro', 'state': 'TN', 'position': 'DT', 'height': 73.0, 'weight': '310', 'compRating': '0.8590', 'compStars': 3, 'nationalRank': '850', 'positionRank': '68', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2010', 'playerName': 'Tim Patterson', 'highSchool': 'Louisville Central', 'city': 'Louisville', 'state': 'KY', 'position': 'OLB', 'height': 76.0, 'weight': '220', 'compRating': '0.8537', 'compStars': 3, 'nationalRank': '990', 'positionRank': '68', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2010', 'playerName': 'Justin Henderson', 'highSchool': 'Bamberg-Ehrhardt', 'city': 'Bamberg', 'state': 'SC', 'position': 'WDE', 'height': 76.0, 'weight': '228', 'compRating': '0.8528', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '60', 'stateRank': '26', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2010', 'playerName': 'Avery Williamson', 'highSchool': 'Milan', 'city': 'Milan', 'state': 'TN', 'position': 'ILB', 'height': 73.0, 'weight': '221', 'compRating': '0.8528', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '43', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2010', 'playerName': 'Malcolm McDuffen', 'highSchool': 'Christian County', 'city': 'Hopkinsville', 'state': 'KY', 'position': 'OLB', 'height': 75.0, 'weight': '205', 'compRating': '0.8510', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '73', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2010', 'playerName': 'Jabari Johnson', 'highSchool': 'Stephenson', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'OLB', 'height': 74.0, 'weight': '220', 'compRating': '0.8510', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '75', 'stateRank': '82', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2010', 'playerName': 'Nermin Delic', 'highSchool': 'Northwest Whitfield County', 'city': 'Tunnel Hill', 'state': 'GA', 'position': 'SDE', 'height': 77.0, 'weight': '259', 'compRating': '0.8510', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '57', 'stateRank': '84', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2010', 'playerName': 'Eric Simmons', 'highSchool': 'Westlake', 'city': 'Atlanta', 'state': 'GA', 'position': 'CB', 'height': 72.0, 'weight': '185', 'compRating': '0.8431', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '105', 'stateRank': '95', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2010', 'playerName': 'Max Smith', 'highSchool': 'Birmingham', 'city': 'Van Nuys', 'state': 'CA', 'position': 'PRO', 'height': 77.0, 'weight': '215', 'compRating': '0.8400', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '48', 'stateRank': '150'}, {'school': 'kentucky', 'year': '2010', 'playerName': 'Tyler Robinson', 'highSchool': 'Alcoa', 'city': 'Alcoa', 'state': 'TN', 'position': 'TE', 'height': 76.0, 'weight': '250', 'compRating': '0.8399', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '57', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2010', 'playerName': 'Teven Eatmon', 'highSchool': 'Wynford', 'city': 'Bucyrus', 'state': 'OH', 'position': 'TE', 'height': 79.0, 'weight': '280', 'compRating': '0.8399', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '58', 'stateRank': '70', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2010', 'playerName': 'Tyler Brause', 'highSchool': 'Wynford', 'city': 'Bucyrus', 'state': 'OH', 'position': 'ATH', 'height': 76.0, 'weight': '220', 'compRating': '0.8385', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '97', 'stateRank': '71', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2010', 'playerName': 'Alvin Davis', 'highSchool': 'Wayne County', 'city': 'Jesup', 'state': 'GA', 'position': 'WDE', 'height': 76.0, 'weight': '225', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '78', 'stateRank': '107'}, {'school': 'kentucky', 'year': '2010', 'playerName': 'Ronnie Shields', 'highSchool': 'Stephenson', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'ATH', 'height': 77.0, 'weight': '220', 'compRating': '0.8274', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '110', 'stateRank': '122', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2010', 'playerName': 'Joseph Mansour', 'highSchool': 'LaGrange', 'city': 'Lagrange', 'state': 'GA', 'position': 'K', 'height': 75.0, 'weight': '174', 'compRating': '0.8243', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '17', 'stateRank': '125', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2010', 'playerName': 'Mychal Bailey', 'highSchool': 'Southwest Mississippi C.C.', 'city': 'Summit', 'state': 'MS', 'position': 'S', 'height': 72.0, 'weight': '206', 'compRating': '0.8222', 'compStars': 3, 'nationalRank': '95', 'positionRank': '8', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2010', 'playerName': 'Alvin Davis', 'highSchool': 'Wayne County', 'city': 'Jesup', 'state': 'GA', 'position': 'WDE', 'height': 76.0, 'weight': '228', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '102', 'stateRank': '148'}, {'school': 'kentucky', 'year': '2010', 'playerName': 'Josh Gibbs', 'highSchool': 'College of the Canyons', 'city': 'Valencia', 'state': 'CA', 'position': 'S', 'height': 72.0, 'weight': '200', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '136', 'positionRank': '12', 'stateRank': '50', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2010', 'playerName': 'Jewell Ratliff', 'highSchool': 'Unknown', 'city': 'Nashville', 'state': 'TN', 'position': 'ILB', 'height': 73.0, 'weight': '230', 'compRating': '0.7000', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '122', 'stateRank': '43'}, {'school': 'kentucky', 'year': '2010', 'playerName': 'Raymond Sanders', 'highSchool': 'Stephenson', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'RB', 'height': 68.0, 'weight': '175', 'compRating': '0.8701', 'compStars': 3, 'nationalRank': '581', 'positionRank': '50', 'stateRank': '50', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2018', 'playerName': 'Eyabi Anoma', 'highSchool': 'St. Frances Academy', 'city': 'Baltimore', 'state': 'MD', 'position': 'WDE', 'height': 77.0, 'weight': '235', 'compRating': '0.9987', 'compStars': 5, 'nationalRank': '4', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 100 ', '247Stars': 5, '247nationalRank': '3', '247positionRank': '1', '247stateRank': '1'}, {'school': 'alabama', 'year': '2018', 'playerName': 'Patrick Surtain II', 'highSchool': 'American Heritage', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'CB', 'height': 73.25, 'weight': '199', 'compRating': '0.9973', 'compStars': 5, 'nationalRank': '6', 'positionRank': '1', 'stateRank': '2', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '11', '247positionRank': '1', '247stateRank': '3'}, {'school': 'alabama', 'year': '2018', 'playerName': 'Jaylen Waddle', 'highSchool': 'Episcopal', 'city': 'Bellaire', 'state': 'TX', 'position': 'WR', 'height': 69.5, 'weight': '175', 'compRating': '0.9791', 'compStars': 4, 'nationalRank': '39', 'positionRank': '5', 'stateRank': '3', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '64', '247positionRank': '9', '247stateRank': '5'}, {'school': 'alabama', 'year': '2018', 'playerName': 'Stephon Wynn', 'highSchool': 'IMG Academy', 'city': 'Bradenton', 'state': 'FL', 'position': 'SDE', 'height': 76.0, 'weight': '308', 'compRating': '0.9624', 'compStars': 4, 'nationalRank': '74', 'positionRank': '3', 'stateRank': '16', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '95', '247positionRank': '6', '247stateRank': '13'}, {'school': 'alabama', 'year': '2018', 'playerName': 'Jalyn Armour-Davis', 'highSchool': "St. Paul's Episcopal", 'city': 'Mobile', 'state': 'AL', 'position': 'CB', 'height': 73.0, 'weight': '180', 'compRating': '0.9513', 'compStars': 4, 'nationalRank': '107', 'positionRank': '13', 'stateRank': '2', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '70', '247positionRank': '8', '247stateRank': '1'}, {'school': 'alabama', 'year': '2018', 'playerName': 'Josh Jobe', 'highSchool': 'Cheshire Academy', 'city': 'Cheshire', 'state': 'CT', 'position': 'CB', 'height': 73.0, 'weight': '180', 'compRating': '0.9509', 'compStars': 4, 'nationalRank': '109', 'positionRank': '14', 'stateRank': '1', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '40', '247positionRank': '6', '247stateRank': '1'}, {'school': 'alabama', 'year': '2018', 'playerName': 'Emil Ekiyor', 'highSchool': 'Cathedral', 'city': 'Indianapolis', 'state': 'IN', 'position': 'OC', 'height': 74.0, 'weight': '322', 'compRating': '0.9496', 'compStars': 4, 'nationalRank': '113', 'positionRank': '3', 'stateRank': '1', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '181', '247positionRank': '3', '247stateRank': '2'}, {'school': 'alabama', 'year': '2018', 'playerName': 'Cameron Latu', 'highSchool': 'Olympus', 'city': 'Salt Lake City', 'state': 'UT', 'position': 'WDE', 'height': 77.0, 'weight': '236', 'compRating': '0.9450', 'compStars': 4, 'nationalRank': '131', 'positionRank': '7', 'stateRank': '3', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '172', '247positionRank': '10', '247stateRank': '3'}, {'school': 'alabama', 'year': '2018', 'playerName': 'Tommy Brown', 'highSchool': 'Mater Dei', 'city': 'Santa Ana', 'state': 'CA', 'position': 'OG', 'height': 78.5, 'weight': '313', 'compRating': '0.9449', 'compStars': 4, 'nationalRank': '132', 'positionRank': '4', 'stateRank': '17', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '153', '247positionRank': '5', '247stateRank': '21'}, {'school': 'alabama', 'year': '2018', 'playerName': 'Ale Kaho', 'highSchool': 'Reno', 'city': 'Reno', 'state': 'NV', 'position': 'ILB', 'height': 73.0, 'weight': '218', 'compRating': '0.9448', 'compStars': 4, 'nationalRank': '133', 'positionRank': '7', 'stateRank': '4', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '21', '247positionRank': '1', '247stateRank': '1'}, {'school': 'alabama', 'year': '2018', 'playerName': 'Xavier Williams', 'highSchool': 'Chaminade-Madonna Prep', 'city': 'Hollywood', 'state': 'FL', 'position': 'WR', 'height': 72.5, 'weight': '190', 'compRating': '0.9405', 'compStars': 4, 'nationalRank': '143', 'positionRank': '24', 'stateRank': '24', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '48', '247stateRank': '38'}, {'school': 'alabama', 'year': '2018', 'playerName': 'Christian Barmore', 'highSchool': 'Neumann Goretti', 'city': 'Philadelphia', 'state': 'PA', 'position': 'DT', 'height': 77.0, 'weight': '290', 'compRating': '0.9298', 'compStars': 4, 'nationalRank': '176', 'positionRank': '16', 'stateRank': '5', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '215', '247positionRank': '20', '247stateRank': '7'}, {'school': 'alabama', 'year': '2018', 'playerName': 'Saivion Smith', 'highSchool': 'Mississippi Gulf Coast C.C.', 'city': 'Perkinston', 'state': 'MS', 'position': 'CB', 'height': 73.0, 'weight': '175', 'compRating': '0.9290', 'compStars': 4, 'nationalRank': '2', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '2', '247positionRank': '1', '247stateRank': '1'}, {'school': 'alabama', 'year': '2018', 'playerName': 'Jerome Ford', 'highSchool': 'Armwood', 'city': 'Seffner', 'state': 'FL', 'position': 'APB', 'height': 71.0, 'weight': '195', 'compRating': '0.8909', 'compStars': 4, 'nationalRank': '370', 'positionRank': '12', 'stateRank': '66', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '225', '247positionRank': '8', '247stateRank': '32'}, {'school': 'alabama', 'year': '2018', 'playerName': 'Eddie Smith', 'highSchool': 'Salmen', 'city': 'Slidell', 'state': 'LA', 'position': 'CB', 'height': 72.0, 'weight': '180', 'compRating': '0.8843', 'compStars': 3, 'nationalRank': '435', 'positionRank': '42', 'stateRank': '15', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '27', '247stateRank': '11'}, {'school': 'alabama', 'year': '2018', 'playerName': 'Slade Bolden', 'highSchool': 'West Monroe', 'city': 'West Monroe', 'state': 'LA', 'position': 'APB', 'height': 71.0, 'weight': '198', 'compRating': '0.8796', 'compStars': 3, 'nationalRank': '495', 'positionRank': '14', 'stateRank': '18', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '17', '247stateRank': '23'}, {'school': 'alabama', 'year': '2018', 'playerName': 'Michael Parker', 'highSchool': 'Westminster Christian Academy', 'city': 'Huntsville', 'state': 'AL', 'position': 'TE', 'height': 78.0, 'weight': '230', 'compRating': '0.8674', 'compStars': 3, 'nationalRank': '690', 'positionRank': '33', 'stateRank': '20', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '55', '247stateRank': '49'}, {'school': 'alabama', 'year': '2018', 'playerName': 'Tevita Musika', 'highSchool': 'College of San Mateo', 'city': 'San Mateo', 'state': 'CA', 'position': 'DT', 'height': 73.0, 'weight': '300', 'compRating': '0.8500', 'compStars': 3, 'nationalRank': '97', 'positionRank': '20', 'stateRank': '18', '247Rating': ' 85 ', '247Stars': 3, '247nationalRank': '90', '247positionRank': '19', '247stateRank': '14'}, {'school': 'alabama', 'year': '2018', 'playerName': 'Jaylen Moody', 'highSchool': 'Conway', 'city': 'Conway', 'state': 'SC', 'position': 'ILB', 'height': 74.0, 'weight': '225', 'compRating': '0.8457', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '48', 'stateRank': '23', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '31', '247stateRank': '11'}, {'school': 'alabama', 'year': '2018', 'playerName': 'Skyler DeLong', 'highSchool': 'Nation Ford', 'city': 'Fort Mill', 'state': 'SC', 'position': 'P', 'height': 76.0, 'weight': '180', 'compRating': '0.8305', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '4', 'stateRank': '32', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '6', '247stateRank': '38'}, {'school': 'alabama', 'year': '2018', 'playerName': 'Layne Hatcher', 'highSchool': 'Pulaski Academy', 'city': 'Little Rock', 'state': 'AR', 'position': 'DUAL', 'height': 72.0, 'weight': '204', 'compRating': '0.8043', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '53', 'stateRank': '24', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '44', '247stateRank': '11'}, {'school': 'alabama', 'year': '2018', 'playerName': 'Jordan Davis', 'highSchool': 'Southwind', 'city': 'Memphis', 'state': 'TN', 'position': 'WDE', 'height': 77.0, 'weight': '238', 'compRating': '0.9510', 'compStars': 4, 'nationalRank': '108', 'positionRank': '6', 'stateRank': '2', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '2', '247positionRank': '1', '247stateRank': '1'}, {'school': 'mississippi-state', 'year': '2018', 'playerName': 'Devonta Jason', 'highSchool': 'Landry-Walker', 'city': 'New Orleans', 'state': 'LA', 'position': 'WR', 'height': 74.5, 'weight': '211', 'compRating': '0.9297', 'compStars': 4, 'nationalRank': '177', 'positionRank': '32', 'stateRank': '5', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '90', '247stateRank': '19'}, {'school': 'mississippi-state', 'year': '2018', 'playerName': 'Kwatrivous Johnson', 'highSchool': 'Greenwood', 'city': 'Greenwood', 'state': 'MS', 'position': 'OT', 'height': 79.5, 'weight': '338', 'compRating': '0.9009', 'compStars': 4, 'nationalRank': '294', 'positionRank': '18', 'stateRank': '2', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '26', '247stateRank': '5'}, {'school': 'mississippi-state', 'year': '2018', 'playerName': 'Jaden Crumedy', 'highSchool': 'Oak Grove', 'city': 'Hattiesburg', 'state': 'MS', 'position': 'WDE', 'height': 77.0, 'weight': '240', 'compRating': '0.8944', 'compStars': 4, 'nationalRank': '342', 'positionRank': '20', 'stateRank': '4', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '245', '247positionRank': '15', '247stateRank': '3'}, {'school': 'mississippi-state', 'year': '2018', 'playerName': 'Stephen Guidry', 'highSchool': 'Hinds C.C.', 'city': 'Raymond', 'state': 'MS', 'position': 'WR', 'height': 76.0, 'weight': '190', 'compRating': '0.8940', 'compStars': 4, 'nationalRank': '16', 'positionRank': '1', 'stateRank': '5', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '5', '247positionRank': '1', '247stateRank': '3'}, {'school': 'mississippi-state', 'year': '2018', 'playerName': 'Jalen Mayden', 'highSchool': 'Sachse', 'city': 'Sachse', 'state': 'TX', 'position': 'DUAL', 'height': 74.0, 'weight': '215', 'compRating': '0.8917', 'compStars': 4, 'nationalRank': '361', 'positionRank': '16', 'stateRank': '49', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '20', '247stateRank': '83'}, {'school': 'mississippi-state', 'year': '2018', 'playerName': 'Marcus Murphy', 'highSchool': 'West Point', 'city': 'West Point', 'state': 'MS', 'position': 'ATH', 'height': 73.0, 'weight': '190', 'compRating': '0.8881', 'compStars': 3, 'nationalRank': '396', 'positionRank': '25', 'stateRank': '5', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '237', '247positionRank': '13', '247stateRank': '2'}, {'school': 'mississippi-state', 'year': '2018', 'playerName': 'Fabien Lovett', 'highSchool': 'Olive Branch', 'city': 'Olive Branch', 'state': 'MS', 'position': 'SDE', 'height': 75.0, 'weight': '285', 'compRating': '0.8842', 'compStars': 3, 'nationalRank': '436', 'positionRank': '18', 'stateRank': '7', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '14', '247stateRank': '4'}, {'school': 'mississippi-state', 'year': '2018', 'playerName': 'Aaron Brule', 'highSchool': 'Archbishop Rummel', 'city': 'Metairie', 'state': 'LA', 'position': 'S', 'height': 73.0, 'weight': '220', 'compRating': '0.8816', 'compStars': 3, 'nationalRank': '465', 'positionRank': '32', 'stateRank': '17', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '42', '247stateRank': '20'}, {'school': 'mississippi-state', 'year': '2018', 'playerName': "Geor'quarius Spivey", 'highSchool': 'Richwood', 'city': 'Monroe', 'state': 'LA', 'position': 'TE', 'height': 78.0, 'weight': '220', 'compRating': '0.8775', 'compStars': 3, 'nationalRank': '518', 'positionRank': '22', 'stateRank': '19', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '22', '247stateRank': '22'}, {'school': 'mississippi-state', 'year': '2018', 'playerName': 'Nathaniel Watson', 'highSchool': 'Maplesville', 'city': 'Maplesville', 'state': 'AL', 'position': 'ATH', 'height': 75.0, 'weight': '200', 'compRating': '0.8681', 'compStars': 3, 'nationalRank': '664', 'positionRank': '52', 'stateRank': '19', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '36', '247stateRank': '15'}, {'school': 'mississippi-state', 'year': '2018', 'playerName': 'Esaias Furdge', 'highSchool': 'Clarksdale', 'city': 'Clarksdale', 'state': 'MS', 'position': 'CB', 'height': 72.0, 'weight': '185', 'compRating': '0.8668', 'compStars': 3, 'nationalRank': '697', 'positionRank': '61', 'stateRank': '14', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '61', '247stateRank': '11'}, {'school': 'mississippi-state', 'year': '2018', 'playerName': 'Jaylon Reed', 'highSchool': 'Olive Branch', 'city': 'Olive Branch', 'state': 'MS', 'position': 'CB', 'height': 73.0, 'weight': '170', 'compRating': '0.8547', 'compStars': 3, 'nationalRank': '948', 'positionRank': '84', 'stateRank': '19', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '122', '247stateRank': '21'}, {'school': 'mississippi-state', 'year': '2018', 'playerName': 'Shawn Preston', 'highSchool': 'St. James', 'city': 'Saint James', 'state': 'LA', 'position': 'S', 'height': 72.0, 'weight': '191', 'compRating': '0.8540', 'compStars': 3, 'nationalRank': '955', 'positionRank': '75', 'stateRank': '40', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '61', '247stateRank': '33'}, {'school': 'mississippi-state', 'year': '2018', 'playerName': 'Jett Johnson', 'highSchool': 'Tupelo', 'city': 'Tupelo', 'state': 'MS', 'position': 'ILB', 'height': 75.5, 'weight': '215', 'compRating': '0.8518', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '37', 'stateRank': '20', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '42', '247stateRank': '18'}, {'school': 'mississippi-state', 'year': '2018', 'playerName': 'Devon Robinson', 'highSchool': 'Whitehaven', 'city': 'Memphis', 'state': 'TN', 'position': 'DT', 'height': 78.0, 'weight': '260', 'compRating': '0.8431', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '87', 'stateRank': '38', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '94', '247stateRank': '38'}, {'school': 'mississippi-state', 'year': '2018', 'playerName': 'Kameron Jones', 'highSchool': 'Starkville', 'city': 'Starkville', 'state': 'MS', 'position': 'OT', 'height': 77.0, 'weight': '280', 'compRating': '0.8416', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '120', 'stateRank': '24', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '106', '247stateRank': '20'}, {'school': 'mississippi-state', 'year': '2018', 'playerName': 'Cameron Young', 'highSchool': 'Franklin', 'city': 'Meadville', 'state': 'MS', 'position': 'DT', 'height': 76.0, 'weight': '300', 'compRating': '0.8355', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '105', 'stateRank': '25', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '56', '247stateRank': '16'}, {'school': 'mississippi-state', 'year': '2018', 'playerName': 'Brad Cumbest', 'highSchool': 'East Central', 'city': 'Kiln', 'state': 'MS', 'position': 'TE', 'height': 77.0, 'weight': '237', 'compRating': '0.8343', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '63', 'stateRank': '26', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '77', '247stateRank': '26'}, {'school': 'mississippi-state', 'year': '2018', 'playerName': 'Cameron Gardner', 'highSchool': 'Starkville', 'city': 'Starkville', 'state': 'MS', 'position': 'WR', 'height': 76.0, 'weight': '215', 'compRating': '0.8338', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '214', 'stateRank': '27', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '306', '247stateRank': '31'}, {'school': 'mississippi-state', 'year': '2018', 'playerName': "Sh'mar Kilby-Lane", 'highSchool': 'Copiah-Lincoln C.C.', 'city': 'Wesson', 'state': 'MS', 'position': 'ILB', 'height': 73.0, 'weight': '225', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2018', 'playerName': 'Malik Heath', 'highSchool': 'Callaway', 'city': 'Jackson', 'state': 'MS', 'position': 'WR', 'height': 75.0, 'weight': '205', 'compRating': '0.9311', 'compStars': 4, 'nationalRank': '172', 'positionRank': '31', 'stateRank': '1', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '29', '247positionRank': '3', '247stateRank': '3'}, {'school': 'mississippi-state', 'year': '2018', 'playerName': 'Johnquarise Patterson', 'highSchool': 'Pearl', 'city': 'Pearl', 'state': 'MS', 'position': 'WR', 'height': 73.0, 'weight': '170', 'compRating': '0.8693', 'compStars': 3, 'nationalRank': '646', 'positionRank': '100', 'stateRank': '12'}, {'school': 'mississippi-state', 'year': '2018', 'playerName': 'La’Damian Webb', 'highSchool': 'Beauregard', 'city': 'Opelika', 'state': 'AL', 'position': 'RB', 'height': 68.0, 'weight': '190', 'compRating': '0.8572', 'compStars': 3, 'nationalRank': '890', 'positionRank': '45', 'stateRank': '32', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '63', '247positionRank': '6', '247stateRank': '12'}, {'school': 'missouri', 'year': '2014', 'playerName': 'Raymond Wingo', 'highSchool': 'St. Louis University', 'city': 'Saint Louis', 'state': 'MO', 'position': 'CB', 'height': 70.0, 'weight': '174', 'compRating': '0.8900', 'compStars': 3, 'nationalRank': '330', 'positionRank': '24', 'stateRank': '4', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '201', '247positionRank': '17', '247stateRank': '3'}, {'school': 'missouri', 'year': '2014', 'playerName': 'Lawrence Lee', 'highSchool': 'West Florida Tech', 'city': 'Pensacola', 'state': 'FL', 'position': 'WR', 'height': 70.5, 'weight': '167', 'compRating': '0.8631', 'compStars': 3, 'nationalRank': '562', 'positionRank': '75', 'stateRank': '79', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '78', '247stateRank': '80'}, {'school': 'missouri', 'year': '2014', 'playerName': 'Andy Bauer', 'highSchool': 'DeSmet', 'city': 'Saint Louis', 'state': 'MO', 'position': 'OT', 'height': 77.75, 'weight': '304', 'compRating': '0.9306', 'compStars': 4, 'nationalRank': '160', 'positionRank': '15', 'stateRank': '3', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '27', '247stateRank': '5'}, {'school': 'missouri', 'year': '2014', 'playerName': 'Brandon Lee', 'highSchool': 'Lawrence Central', 'city': 'Indianapolis', 'state': 'IN', 'position': 'OLB', 'height': 75.0, 'weight': '215', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '270', 'positionRank': '22', 'stateRank': '5', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '29', '247stateRank': '7'}, {'school': 'missouri', 'year': '2014', 'playerName': 'Nate Brown', 'highSchool': 'North Gwinnett', 'city': 'Suwanee', 'state': 'GA', 'position': 'WR', 'height': 75.0, 'weight': '210', 'compRating': '0.8922', 'compStars': 4, 'nationalRank': '315', 'positionRank': '46', 'stateRank': '25', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '50', '247stateRank': '24'}, {'school': 'missouri', 'year': '2014', 'playerName': 'Desean Blair', 'highSchool': 'Sandalwood', 'city': 'Jacksonville', 'state': 'FL', 'position': 'WR', 'height': 76.0, 'weight': '185', 'compRating': '0.8581', 'compStars': 3, 'nationalRank': '653', 'positionRank': '90', 'stateRank': '90', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '120', '247stateRank': '126'}, {'school': 'missouri', 'year': '2014', 'playerName': 'Thomas Wilson', 'highSchool': 'Buford', 'city': 'Buford', 'state': 'GA', 'position': 'ATH', 'height': 71.0, 'weight': '175', 'compRating': '0.8568', 'compStars': 3, 'nationalRank': '682', 'positionRank': '56', 'stateRank': '59', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '65', '247stateRank': '73'}, {'school': 'missouri', 'year': '2014', 'playerName': 'Greg Taylor', 'highSchool': 'East St. Louis', 'city': 'East Saint Louis', 'state': 'IL', 'position': 'S', 'height': 71.0, 'weight': '180', 'compRating': '0.8558', 'compStars': 3, 'nationalRank': '694', 'positionRank': '55', 'stateRank': '23', '247Rating': ' 85 ', '247Stars': 3, '247nationalRank': '98', '247positionRank': '6', '247stateRank': '17'}, {'school': 'missouri', 'year': '2014', 'playerName': 'Logan Cheadle', 'highSchool': "Lee's Summit West", 'city': 'Lees Summit', 'state': 'MO', 'position': 'CB', 'height': 71.0, 'weight': '165', 'compRating': '0.8547', 'compStars': 3, 'nationalRank': '719', 'positionRank': '52', 'stateRank': '13', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '46', '247stateRank': '11'}, {'school': 'missouri', 'year': '2014', 'playerName': 'Trevon Walters', 'highSchool': 'Manatee', 'city': 'Bradenton', 'state': 'FL', 'position': 'RB', 'height': 70.0, 'weight': '192', 'compRating': '0.8539', 'compStars': 3, 'nationalRank': '732', 'positionRank': '44', 'stateRank': '107', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '75', '247stateRank': '168'}, {'school': 'missouri', 'year': '2014', 'playerName': 'Rocel McWilliams', 'highSchool': 'West Florida Tech', 'city': 'Pensacola', 'state': 'FL', 'position': 'SDE', 'height': 75.0, 'weight': '240', 'compRating': '0.8529', 'compStars': 3, 'nationalRank': '755', 'positionRank': '31', 'stateRank': '114', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '27', '247stateRank': '100'}, {'school': 'missouri', 'year': '2014', 'playerName': 'Paul Adams', 'highSchool': 'C.P.A.', 'city': 'Nashville', 'state': 'TN', 'position': 'OT', 'height': 78.0, 'weight': '270', 'compRating': '0.8493', 'compStars': 3, 'nationalRank': '819', 'positionRank': '72', 'stateRank': '15', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '96', '247stateRank': '19'}, {'school': 'missouri', 'year': '2014', 'playerName': 'Kenya Dennis', 'highSchool': 'Hinds C.C.', 'city': 'Raymond', 'state': 'MS', 'position': 'CB', 'height': 72.0, 'weight': '190', 'compRating': '0.8479', 'compStars': 3, 'nationalRank': '101', 'positionRank': '13', 'stateRank': '21', '247Rating': ' 85 ', '247Stars': 3, '247nationalRank': '133', '247positionRank': '19', '247stateRank': '23'}, {'school': 'missouri', 'year': '2014', 'playerName': 'Ish Witter', 'highSchool': 'Alonso', 'city': 'Tampa', 'state': 'FL', 'position': 'RB', 'height': 68.0, 'weight': '190', 'compRating': '0.8462', 'compStars': 3, 'nationalRank': '882', 'positionRank': '55', 'stateRank': '128', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '66', '247stateRank': '144'}, {'school': 'missouri', 'year': '2014', 'playerName': 'Grant Jones', 'highSchool': 'Hickman', 'city': 'Columbia', 'state': 'MO', 'position': 'OLB', 'height': 75.0, 'weight': '210', 'compRating': '0.8453', 'compStars': 3, 'nationalRank': '901', 'positionRank': '68', 'stateRank': '16', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '77', '247stateRank': '16'}, {'school': 'missouri', 'year': '2014', 'playerName': 'Tavon Ross', 'highSchool': 'Bleckley County', 'city': 'Cochran', 'state': 'GA', 'position': 'S', 'height': 73.0, 'weight': '198', 'compRating': '0.8436', 'compStars': 3, 'nationalRank': '935', 'positionRank': '77', 'stateRank': '81', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '53', '247stateRank': '57'}, {'school': 'missouri', 'year': '2014', 'playerName': 'Spencer Williams', 'highSchool': 'First Coast', 'city': 'Jacksonville', 'state': 'FL', 'position': 'WDE', 'height': 76.0, 'weight': '220', 'compRating': '0.8407', 'compStars': 3, 'nationalRank': '1000', 'positionRank': '50', 'stateRank': '144', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '49', '247stateRank': '131'}, {'school': 'missouri', 'year': '2014', 'playerName': 'Kendall Blanton', 'highSchool': 'Blue Springs South', 'city': 'Blue Springs', 'state': 'MO', 'position': 'TE', 'height': 78.0, 'weight': '227', 'compRating': '0.8388', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '50', 'stateRank': '17', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '54', '247stateRank': '19'}, {'school': 'missouri', 'year': '2014', 'playerName': 'Thomas Richard', 'highSchool': 'C.P.A.', 'city': 'Nashville', 'state': 'TN', 'position': 'WR', 'height': 73.0, 'weight': '185', 'compRating': '0.8372', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '147', 'stateRank': '18', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '75', '247stateRank': '11'}, {'school': 'missouri', 'year': '2014', 'playerName': 'Michael Fairchild', 'highSchool': 'Blue Valley West', 'city': 'Stilwell', 'state': 'KS', 'position': 'OT', 'height': 78.0, 'weight': '270', 'compRating': '0.8360', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '99', 'stateRank': '9', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '88', '247stateRank': '9'}, {'school': 'missouri', 'year': '2014', 'playerName': 'Marvin Zanders', 'highSchool': 'Raines', 'city': 'Jacksonville', 'state': 'FL', 'position': 'ATH', 'height': 75.0, 'weight': '180', 'compRating': '0.8334', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '98', 'stateRank': '158', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '114', '247stateRank': '162'}, {'school': 'missouri', 'year': '2014', 'playerName': 'Kevin Pendleton', 'highSchool': "Lee's Summit West", 'city': 'Lees Summit', 'state': 'MO', 'position': 'OT', 'height': 77.0, 'weight': '310', 'compRating': '0.8334', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '101', 'stateRank': '19', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '109', '247stateRank': '20'}, {'school': 'missouri', 'year': '2014', 'playerName': 'Keyon Dilosa', 'highSchool': 'Round Rock', 'city': 'Round Rock', 'state': 'TX', 'position': 'WR', 'height': 75.0, 'weight': '194', 'compRating': '0.8140', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '194', 'stateRank': '212', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '182', '247stateRank': '183'}, {'school': 'missouri', 'year': '2014', 'playerName': 'Roderick Winters', 'highSchool': 'Bowie', 'city': 'Arlington', 'state': 'TX', 'position': 'OLB', 'height': 72.0, 'weight': '200', 'compRating': '0.8094', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '117', 'stateRank': '237', '247Rating': ' 76 ', '247Stars': 2, '247positionRank': '164', '247stateRank': '354'}, {'school': 'missouri', 'year': '2014', 'playerName': 'Finis Stribling IV', 'highSchool': 'Independence', 'city': "Thompson's Station", 'state': 'TN', 'position': 'CB', 'height': 70.5, 'weight': '170', 'compRating': '0.8027', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '143', 'stateRank': '31', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '141', '247stateRank': '33'}, {'school': 'missouri', 'year': '2014', 'playerName': 'Sam Bailey', 'highSchool': 'Lamar', 'city': 'Lamar', 'state': 'MO', 'position': 'OT', 'height': 77.0, 'weight': '245', 'compRating': '0.8018', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '145', 'stateRank': '23', '247Rating': ' 78 ', '247Stars': 2, '247positionRank': '151', '247stateRank': '31'}, {'school': 'missouri', 'year': '2014', 'playerName': 'Darnell Green-Beckham', 'highSchool': 'Hillcrest', 'city': 'Springfield', 'state': 'MO', 'position': 'WR', 'height': 76.0, 'weight': '185', 'compRating': '0.8006', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '226', 'stateRank': '25'}, {'school': 'missouri', 'year': '2014', 'playerName': 'Walter Brady', 'highSchool': 'Florence', 'city': 'Florence', 'state': 'AL', 'position': 'WDE', 'height': 76.0, 'weight': '242', 'compRating': '0.7858', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '106', 'stateRank': '64', '247Rating': ' 78 ', '247Stars': 2, '247positionRank': '97', '247stateRank': '63'}, {'school': 'kentucky', 'year': '2006', 'playerName': 'Micah Johnson', 'highSchool': 'Fort Campbell', 'city': 'Fort Campbell', 'state': 'KY', 'position': 'ILB', 'height': 74.0, 'weight': '260', 'compRating': '0.9934', 'compStars': 5, 'nationalRank': '15', 'positionRank': '2', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2006', 'playerName': 'Moncell Allen', 'highSchool': 'St. Michael The Archangel', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'RB', 'height': 69.0, 'weight': '215', 'compRating': '0.8451', 'compStars': 3, 'nationalRank': '629', 'positionRank': '50', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2006', 'playerName': 'Chris Drayton', 'highSchool': 'Lakeside', 'city': 'Evans', 'state': 'GA', 'position': 'S', 'height': 73.0, 'weight': '200', 'compRating': '0.8354', 'compStars': 3, 'nationalRank': '720', 'positionRank': '53', 'stateRank': '37', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2006', 'playerName': 'Ameer Salahudin', 'highSchool': 'T L Hanna', 'city': 'Anderson', 'state': 'SC', 'position': 'CB', 'height': 71.0, 'weight': '180', 'compRating': '0.8337', 'compStars': 3, 'nationalRank': '737', 'positionRank': '57', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2006', 'playerName': 'Michael Hartline', 'highSchool': 'GlenOak', 'city': 'Canton', 'state': 'OH', 'position': 'PRO', 'height': 78.0, 'weight': '179', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '755', 'positionRank': '33', 'stateRank': '34', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2006', 'playerName': 'Ashton Cobb', 'highSchool': 'Monaca', 'city': 'Monaca', 'state': 'PA', 'position': 'S', 'height': 72.0, 'weight': '195', 'compRating': '0.8306', 'compStars': 3, 'nationalRank': '883', 'positionRank': '66', 'stateRank': '33'}, {'school': 'kentucky', 'year': '2006', 'playerName': 'Chris Cessna', 'highSchool': 'North Laurel', 'city': 'London', 'state': 'KY', 'position': 'OLB', 'height': 75.0, 'weight': '207', 'compRating': '0.8149', 'compStars': 3, 'nationalRank': '976', 'positionRank': '63', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2006', 'playerName': 'LaRay Foote', 'highSchool': 'Mitchell', 'city': 'Memphis', 'state': 'TN', 'position': 'ATH', 'height': 72.0, 'weight': '180', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '84', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2006', 'playerName': 'Marckus Boswell', 'highSchool': 'Greenville', 'city': 'Greenville', 'state': 'SC', 'position': 'WR', 'height': 69.0, 'weight': '170', 'compRating': '0.8081', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '116', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2006', 'playerName': 'Justin Jefferies', 'highSchool': 'St. Xavier', 'city': 'Louisville', 'state': 'KY', 'position': 'OT', 'height': 77.0, 'weight': '300', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '82', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2006', 'playerName': 'A.J. Grigsby', 'highSchool': 'El Camino College', 'city': 'Torrance', 'state': 'CA', 'position': 'CB', 'height': 72.0, 'weight': '190', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': '235', 'positionRank': '28', 'stateRank': '118', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2006', 'playerName': 'Ashton Cobb', 'highSchool': 'Center Area', 'city': 'Monaca', 'state': 'PA', 'position': 'S', 'height': 72.0, 'weight': '195', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2006', 'playerName': "Jo'Dane Craigman", 'highSchool': 'Mendocino College', 'city': 'Ukiah', 'state': 'CA', 'position': 'WDE', 'height': 76.0, 'weight': '245', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2006', 'playerName': 'T.C. Drake', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'TE', 'height': 78.0, 'weight': '225', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2006', 'playerName': 'Will Fidler', 'highSchool': 'Henderson County', 'city': 'Henderson', 'state': 'KY', 'position': 'PRO', 'height': 77.0, 'weight': '205', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2006', 'playerName': 'Chris Goode', 'highSchool': 'Dunwoody', 'city': 'Atlanta', 'state': 'GA', 'position': 'TE', 'height': 76.0, 'weight': '225', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2006', 'playerName': 'Corey Goodson', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'RB', 'height': 74.0, 'weight': '210', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2006', 'playerName': 'AJ Grigsby', 'highSchool': 'El Camino College', 'city': 'Torrance', 'state': 'CA', 'position': 'CB', 'height': 72.0, 'weight': '190', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2006', 'playerName': 'Calvin Harrison', 'highSchool': 'Richland Northeast', 'city': 'Columbia', 'state': 'SC', 'position': 'S', 'height': 73.0, 'weight': '190', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2006', 'playerName': 'Justin Jeffries', 'highSchool': 'St. Xavier', 'city': 'Louisville', 'state': 'KY', 'position': 'OT', 'height': 77.0, 'weight': '300', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2006', 'playerName': 'Stevie Johnson', 'highSchool': 'Chabot College', 'city': 'Hayward', 'state': 'CA', 'position': 'WR', 'height': 75.0, 'weight': '205', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2006', 'playerName': 'Terrence Jones', 'highSchool': 'Douglass', 'city': 'Atlanta', 'state': 'GA', 'position': 'WR', 'height': 74.0, 'weight': '185', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2006', 'playerName': 'Ricky Lumpkin', 'highSchool': 'Kenwood', 'city': 'Clarksville', 'state': 'TN', 'position': 'WDE', 'height': 76.0, 'weight': '255', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2006', 'playerName': 'Josh Minton', 'highSchool': 'Pulaski County', 'city': 'Somerset', 'state': 'KY', 'position': 'WDE', 'height': 75.0, 'weight': '240', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2006', 'playerName': 'Jamil Paris', 'highSchool': 'Sebastian River', 'city': 'Sebastian', 'state': 'FL', 'position': 'WDE', 'height': 77.0, 'weight': '215', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2006', 'playerName': 'Corey Peters', 'highSchool': 'Louisville Central', 'city': 'Louisville', 'state': 'KY', 'position': 'DT', 'height': 75.0, 'weight': '295', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2006', 'playerName': 'Lones Seiber', 'highSchool': 'Knoxville Central', 'city': 'Knoxville', 'state': 'TN', 'position': 'K', 'height': 69.0, 'weight': '165', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2006', 'playerName': 'Darrell Stevens', 'highSchool': 'Robinson', 'city': 'Tampa', 'state': 'FL', 'position': 'WR', 'height': 72.0, 'weight': '170', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2006', 'playerName': 'Michael Strickland', 'highSchool': 'Walton', 'city': 'Marietta', 'state': 'GA', 'position': 'WR', 'height': 73.0, 'weight': '190', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2006', 'playerName': 'Brandon Thurmond', 'highSchool': 'Grady', 'city': 'Atlanta', 'state': 'GA', 'position': 'OLB', 'height': 74.0, 'weight': '195', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2006', 'playerName': 'Paul Warford', 'highSchool': 'Madison Central', 'city': 'Richmond', 'state': 'KY', 'position': 'CB', 'height': 71.0, 'weight': '200', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2006', 'playerName': 'LaShun Watson', 'highSchool': 'Greenville', 'city': 'Greenville', 'state': 'GA', 'position': 'WR', 'height': 77.0, 'weight': '190', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2006', 'playerName': 'Demetrius Goode', 'highSchool': 'Troup County', 'city': 'Lagrange', 'state': 'GA', 'position': 'RB', 'height': 70.0, 'weight': '190', 'compRating': '0.8906', 'compStars': 4, 'nationalRank': '234', 'positionRank': '28', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2017', 'playerName': 'Tedarrell Slaton', 'highSchool': 'American Heritage', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'OG', 'height': 76.5, 'weight': '360', 'compRating': '0.9677', 'compStars': 4, 'nationalRank': '69', 'positionRank': '3', 'stateRank': '12', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '89', '247positionRank': '3', '247stateRank': '14'}, {'school': 'florida', 'year': '2017', 'playerName': 'James Robinson', 'highSchool': 'Lakeland', 'city': 'Lakeland', 'state': 'FL', 'position': 'WR', 'height': 76.0, 'weight': '205', 'compRating': '0.9458', 'compStars': 4, 'nationalRank': '115', 'positionRank': '14', 'stateRank': '21', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '130', '247positionRank': '22', '247stateRank': '19'}, {'school': 'florida', 'year': '2017', 'playerName': 'Zachary Carter', 'highSchool': 'Hillsborough', 'city': 'Tampa', 'state': 'FL', 'position': 'SDE', 'height': 76.5, 'weight': '250', 'compRating': '0.9404', 'compStars': 4, 'nationalRank': '130', 'positionRank': '3', 'stateRank': '23', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '18', '247stateRank': '44'}, {'school': 'florida', 'year': '2017', 'playerName': 'CJ Henderson', 'highSchool': 'Columbus', 'city': 'Miami', 'state': 'FL', 'position': 'CB', 'height': 73.0, 'weight': '175', 'compRating': '0.9378', 'compStars': 4, 'nationalRank': '139', 'positionRank': '16', 'stateRank': '24', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '116', '247positionRank': '17', '247stateRank': '17'}, {'school': 'florida', 'year': '2017', 'playerName': 'Brad Stewart', 'highSchool': 'McDonogh 35', 'city': 'New Orleans', 'state': 'LA', 'position': 'CB', 'height': 72.0, 'weight': '194', 'compRating': '0.9354', 'compStars': 4, 'nationalRank': '150', 'positionRank': '19', 'stateRank': '6', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '153', '247positionRank': '20', '247stateRank': '6'}, {'school': 'florida', 'year': '2017', 'playerName': 'Marco Wilson', 'highSchool': 'American Heritage', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'CB', 'height': 72.0, 'weight': '180', 'compRating': '0.9249', 'compStars': 4, 'nationalRank': '183', 'positionRank': '25', 'stateRank': '29', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '171', '247positionRank': '22', '247stateRank': '23'}, {'school': 'florida', 'year': '2017', 'playerName': 'Daquon Green', 'highSchool': 'Tampa Bay Tech', 'city': 'Tampa', 'state': 'FL', 'position': 'WR', 'height': 73.0, 'weight': '185', 'compRating': '0.9102', 'compStars': 4, 'nationalRank': '239', 'positionRank': '33', 'stateRank': '33', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '53', '247stateRank': '53'}, {'school': 'florida', 'year': '2017', 'playerName': 'Kadeem Telfort', 'highSchool': 'Booker T. Washington', 'city': 'Miami', 'state': 'FL', 'position': 'OT', 'height': 79.0, 'weight': '300', 'compRating': '0.9095', 'compStars': 4, 'nationalRank': '241', 'positionRank': '24', 'stateRank': '34', '247Rating': ' 83 ', '247Stars': 3, '247nationalRank': '161', '247positionRank': '19', '247stateRank': '44'}, {'school': 'florida', 'year': '2017', 'playerName': 'T.J. Moore', 'highSchool': 'Mallard Creek', 'city': 'Charlotte', 'state': 'NC', 'position': 'OT', 'height': 77.5, 'weight': '290', 'compRating': '0.9054', 'compStars': 4, 'nationalRank': '258', 'positionRank': '26', 'stateRank': '5', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '31', '247stateRank': '9'}, {'school': 'florida', 'year': '2017', 'playerName': 'Kemore Gamble', 'highSchool': 'Miami Southridge', 'city': 'Miami', 'state': 'FL', 'position': 'TE', 'height': 76.0, 'weight': '216', 'compRating': '0.8987', 'compStars': 4, 'nationalRank': '281', 'positionRank': '7', 'stateRank': '38', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '19', '247stateRank': '66'}, {'school': 'florida', 'year': '2017', 'playerName': 'Elijah Conliffe', 'highSchool': 'Hampton', 'city': 'Hampton', 'state': 'VA', 'position': 'DT', 'height': 76.0, 'weight': '305', 'compRating': '0.8937', 'compStars': 4, 'nationalRank': '310', 'positionRank': '18', 'stateRank': '12', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '22', '247stateRank': '9'}, {'school': 'florida', 'year': '2017', 'playerName': 'Shawn Davis', 'highSchool': 'Miami Southridge', 'city': 'Miami', 'state': 'FL', 'position': 'CB', 'height': 71.0, 'weight': '190', 'compRating': '0.8875', 'compStars': 3, 'nationalRank': '353', 'positionRank': '41', 'stateRank': '43', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '47', '247stateRank': '64'}, {'school': 'florida', 'year': '2017', 'playerName': 'Adarius Lemons', 'highSchool': 'Clearwater', 'city': 'Clearwater', 'state': 'FL', 'position': 'RB', 'height': 72.5, 'weight': '195', 'compRating': '0.8796', 'compStars': 3, 'nationalRank': '415', 'positionRank': '25', 'stateRank': '53', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '27', '247stateRank': '54'}, {'school': 'florida', 'year': '2017', 'playerName': 'Kadarius Toney', 'highSchool': 'Blount', 'city': 'Eight Mile', 'state': 'AL', 'position': 'ATH', 'height': 72.0, 'weight': '177', 'compRating': '0.8790', 'compStars': 3, 'nationalRank': '421', 'positionRank': '25', 'stateRank': '20', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '39', '247stateRank': '27'}, {'school': 'florida', 'year': '2017', 'playerName': 'Malik Davis', 'highSchool': 'Jesuit', 'city': 'Tampa', 'state': 'FL', 'position': 'RB', 'height': 71.0, 'weight': '190', 'compRating': '0.8765', 'compStars': 3, 'nationalRank': '437', 'positionRank': '26', 'stateRank': '56', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '17', '247stateRank': '31'}, {'school': 'florida', 'year': '2017', 'playerName': 'Kyree Campbell', 'highSchool': 'Wyoming Seminary Prep School', 'city': 'Kingston', 'state': 'PA', 'position': 'DT', 'height': 76.0, 'weight': '320', 'compRating': '0.8708', 'compStars': 3, 'nationalRank': '1', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 84 ', '247Stars': 3, '247nationalRank': '3', '247positionRank': '1', '247stateRank': '1'}, {'school': 'florida', 'year': '2017', 'playerName': 'Jake Allen', 'highSchool': 'St. Thomas Aquinas', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'PRO', 'height': 75.0, 'weight': '200', 'compRating': '0.8646', 'compStars': 3, 'nationalRank': '556', 'positionRank': '23', 'stateRank': '74', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '31', '247stateRank': '96'}, {'school': 'florida', 'year': '2017', 'playerName': 'Ventrell Miller', 'highSchool': 'Kathleen', 'city': 'Lakeland', 'state': 'FL', 'position': 'OLB', 'height': 72.0, 'weight': '227', 'compRating': '0.8640', 'compStars': 3, 'nationalRank': '570', 'positionRank': '36', 'stateRank': '76', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '45', '247stateRank': '78'}, {'school': 'florida', 'year': '2017', 'playerName': 'Brian Edwards', 'highSchool': 'Miramar', 'city': 'Hollywood', 'state': 'FL', 'position': 'CB', 'height': 75.0, 'weight': '195', 'compRating': '0.8631', 'compStars': 3, 'nationalRank': '576', 'positionRank': '58', 'stateRank': '77', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '66', '247stateRank': '88'}, {'school': 'florida', 'year': '2017', 'playerName': 'James Houston', 'highSchool': 'American Heritage', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'OLB', 'height': 73.0, 'weight': '225', 'compRating': '0.8590', 'compStars': 3, 'nationalRank': '649', 'positionRank': '43', 'stateRank': '83', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '68', '247stateRank': '127'}, {'school': 'florida', 'year': '2017', 'playerName': 'Donovan Stiner', 'highSchool': 'Bellaire', 'city': 'Bellaire', 'state': 'TX', 'position': 'S', 'height': 74.0, 'weight': '185', 'compRating': '0.8527', 'compStars': 3, 'nationalRank': '768', 'positionRank': '57', 'stateRank': '108', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '70', '247stateRank': '117'}, {'school': 'florida', 'year': '2017', 'playerName': 'Nick Smith', 'highSchool': 'Dr. Phillips', 'city': 'Orlando', 'state': 'FL', 'position': 'OLB', 'height': 75.0, 'weight': '210', 'compRating': '0.8372', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '78', 'stateRank': '173', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '102', '247stateRank': '233'}, {'school': 'florida', 'year': '2017', 'playerName': 'Lacedrick Brunson', 'highSchool': 'Miami Jackson', 'city': 'Miami', 'state': 'FL', 'position': 'OLB', 'height': 74.0, 'weight': '210', 'compRating': '0.7917', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '156', 'stateRank': '355', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '105', '247stateRank': '247'}, {'school': 'texas-am', 'year': '2002', 'playerName': 'Todd Pegram', 'highSchool': 'Plano West', 'city': 'Plano', 'state': 'TX', 'position': 'K', 'height': 70.0, 'weight': '180', 'compRating': '0.9333', 'compStars': 4, 'nationalRank': '114', 'positionRank': '3', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2002', 'playerName': 'Kelvin Flood', 'highSchool': 'Kimball', 'city': 'Dallas', 'state': 'TX', 'position': 'OLB', 'height': 74.0, 'weight': '210', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '144', 'positionRank': '5', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2002', 'playerName': "L'Tydrick Riley", 'highSchool': 'Crockett', 'city': 'Crockett', 'state': 'TX', 'position': 'ATH', 'height': 76.0, 'weight': '220', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '167', 'positionRank': '13', 'stateRank': '27', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2002', 'playerName': 'Nurahda Manning', 'highSchool': 'Bay City', 'city': 'Bay City', 'state': 'TX', 'position': 'ILB', 'height': 75.0, 'weight': '235', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '170', 'positionRank': '7', 'stateRank': '28', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2002', 'playerName': 'Quinlan Germany', 'highSchool': 'All Saints Episcopal', 'city': 'Fort Worth', 'state': 'TX', 'position': 'TE', 'height': 76.0, 'weight': '250', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '189', 'positionRank': '12', 'stateRank': '29', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2002', 'playerName': 'Archie McDaniel', 'highSchool': 'Bay City', 'city': 'Bay City', 'state': 'TX', 'position': 'ILB', 'height': 73.0, 'weight': '215', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '213', 'positionRank': '12', 'stateRank': '32', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2002', 'playerName': 'Brian Patrick', 'highSchool': 'Sam Rayburn', 'city': 'Pasadena', 'state': 'TX', 'position': 'DT', 'height': 77.0, 'weight': '270', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '345', 'positionRank': '33', 'stateRank': '49', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2002', 'playerName': 'Courtney Lewis', 'highSchool': 'Madison', 'city': 'Houston', 'state': 'TX', 'position': 'APB', 'height': 71.0, 'weight': '175', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '354', 'positionRank': '8', 'stateRank': '51', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2002', 'playerName': 'Taylor Schuster', 'highSchool': 'Sharyland', 'city': 'Mission', 'state': 'TX', 'position': 'OT', 'height': 77.0, 'weight': '255', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '357', 'positionRank': '31', 'stateRank': '52', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2002', 'playerName': 'Brandon Fails', 'highSchool': 'Colleyville Heritage', 'city': 'Colleyville', 'state': 'TX', 'position': 'DT', 'height': 75.0, 'weight': '295', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '366', 'positionRank': '35', 'stateRank': '55', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2002', 'playerName': 'Aldo De La Garza', 'highSchool': 'New Braunfels', 'city': 'New Braunfels', 'state': 'TX', 'position': 'OG', 'height': 76.0, 'weight': '295', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '500', 'positionRank': '37', 'stateRank': '79', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2002', 'playerName': 'Brandon Leone', 'highSchool': 'Oak Ridge', 'city': 'Conroe', 'state': 'TX', 'position': 'S', 'height': 73.0, 'weight': '190', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '527', 'positionRank': '33', 'stateRank': '85', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2002', 'playerName': 'Brandon Flanigan', 'highSchool': 'Haughton', 'city': 'Haughton', 'state': 'LA', 'position': 'OT', 'height': 77.0, 'weight': '278', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '528', 'positionRank': '43', 'stateRank': '29', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2002', 'playerName': 'Patrick Fleming', 'highSchool': 'Colleyville Heritage', 'city': 'Colleyville', 'state': 'TX', 'position': 'TE', 'height': 76.0, 'weight': '270', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '610', 'positionRank': '36', 'stateRank': '103', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2002', 'playerName': 'Chad Schroeder', 'highSchool': 'Westlake', 'city': 'Austin', 'state': 'TX', 'position': 'ATH', 'height': 74.0, 'weight': '170', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '615', 'positionRank': '35', 'stateRank': '105', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2002', 'playerName': 'Dennis Ellis', 'highSchool': 'Cleveland', 'city': 'Cleveland', 'state': 'TX', 'position': 'SDE', 'height': 75.0, 'weight': '250', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '616', 'positionRank': '35', 'stateRank': '106', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2002', 'playerName': 'Andy Matakis', 'highSchool': 'Flour Bluff', 'city': 'Corpus Christi', 'state': 'TX', 'position': 'ILB', 'height': 75.0, 'weight': '220', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '629', 'positionRank': '35', 'stateRank': '112', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2002', 'playerName': 'Alex Kotzur', 'highSchool': 'St. Thomas', 'city': 'Houston', 'state': 'TX', 'position': 'OT', 'height': 77.0, 'weight': '280', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '647', 'positionRank': '56', 'stateRank': '114', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2002', 'playerName': 'Ju Parks', 'highSchool': 'Lufkin', 'city': 'Lufkin', 'state': 'TX', 'position': 'DT', 'height': 73.0, 'weight': '325', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '829', 'positionRank': '55', 'stateRank': '140', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2002', 'playerName': 'Johnny Jolly', 'highSchool': 'Forest Brook', 'city': 'Houston', 'state': 'TX', 'position': 'DT', 'height': 76.0, 'weight': '285', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '831', 'positionRank': '56', 'stateRank': '142', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2002', 'playerName': 'Nick Rhodes', 'highSchool': 'Brownwood', 'city': 'Brownwood', 'state': 'TX', 'position': 'WR', 'height': 74.0, 'weight': '180', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '866', 'positionRank': '80', 'stateRank': '156', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2002', 'playerName': 'Bryce Reed', 'highSchool': 'W W Samuell', 'city': 'Dallas', 'state': 'TX', 'position': 'FB', 'height': 73.0, 'weight': '275', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '38', 'stateRank': '288', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2002', 'playerName': 'Reggie McNeal', 'highSchool': 'Lufkin', 'city': 'Lufkin', 'state': 'TX', 'position': 'ATH', 'height': 73.0, 'weight': '210', 'compRating': '0.9970', 'compStars': 5, 'nationalRank': '8', 'positionRank': '2', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2005', 'playerName': 'Tommy Trott', 'highSchool': 'Trinity Presbyterian School', 'city': 'Montgomery', 'state': 'AL', 'position': 'TE', 'height': 76.0, 'weight': '235', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '151', 'positionRank': '7', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2005', 'playerName': 'Rex Sharpe', 'highSchool': 'Fairfield Preparatory School', 'city': 'Fairfield', 'state': 'AL', 'position': 'OLB', 'height': 75.0, 'weight': '215', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '160', 'positionRank': '18', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2005', 'playerName': 'Mike Harness', 'highSchool': 'Pacelli', 'city': 'Columbus', 'state': 'GA', 'position': 'OG', 'height': 74.0, 'weight': '281', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '162', 'positionRank': '7', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2005', 'playerName': 'Gabe McKenzie', 'highSchool': 'WP Davidson', 'city': 'Mobile', 'state': 'AL', 'position': 'WDE', 'height': 75.0, 'weight': '218', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '187', 'positionRank': '8', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2005', 'playerName': 'Montez Billings', 'highSchool': 'Pelham', 'city': 'Pelham', 'state': 'AL', 'position': 'WR', 'height': 74.0, 'weight': '175', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '218', 'positionRank': '25', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2005', 'playerName': 'Walter McFadden', 'highSchool': 'Blanche Ely', 'city': 'Pompano Beach', 'state': 'FL', 'position': 'CB', 'height': 73.0, 'weight': '175', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '231', 'positionRank': '21', 'stateRank': '34', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2005', 'playerName': 'Patrick Trahan', 'highSchool': 'St. Augustine', 'city': 'New Orleans', 'state': 'LA', 'position': 'S', 'height': 74.0, 'weight': '205', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '280', 'positionRank': '18', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2005', 'playerName': 'Prechae Rodriguez', 'highSchool': 'Coffeyville C.C.', 'city': 'Coffeyville', 'state': 'KS', 'position': 'WR', 'height': 76.0, 'weight': '192', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '24', 'positionRank': '5', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2005', 'playerName': 'Jerraud Powers', 'highSchool': 'Decatur', 'city': 'Decatur', 'state': 'AL', 'position': 'CB', 'height': 69.0, 'weight': '170', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '387', 'positionRank': '36', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2005', 'playerName': 'Brian West', 'highSchool': 'Ozen', 'city': 'Beaumont', 'state': 'TX', 'position': 'DT', 'height': 76.0, 'weight': '265', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '403', 'positionRank': '28', 'stateRank': '63', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2005', 'playerName': 'Andrew McCain', 'highSchool': 'Briarwood Christian', 'city': 'Birmingham', 'state': 'AL', 'position': 'TE', 'height': 77.0, 'weight': '254', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '428', 'positionRank': '23', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2005', 'playerName': 'Antonio Coleman', 'highSchool': 'Williamson', 'city': 'Mobile', 'state': 'AL', 'position': 'OLB', 'height': 74.0, 'weight': '216', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '535', 'positionRank': '46', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2005', 'playerName': 'Oscar Gonzalez', 'highSchool': 'Hialeah', 'city': 'Hialeah', 'state': 'FL', 'position': 'OT', 'height': 78.0, 'weight': '280', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '575', 'positionRank': '50', 'stateRank': '73', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2005', 'playerName': 'Rudy Odom', 'highSchool': 'Fontainebleau', 'city': 'Mandeville', 'state': 'LA', 'position': 'DT', 'height': 77.0, 'weight': '267', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '635', 'positionRank': '36', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2005', 'playerName': 'Aairon Savage', 'highSchool': 'Westover School', 'city': 'Middlebury', 'state': 'CT', 'position': 'CB', 'height': 71.0, 'weight': '175', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '777', 'positionRank': '70', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2005', 'playerName': 'Zach Kutch', 'highSchool': 'Milton', 'city': 'Milton', 'state': 'FL', 'position': 'K', 'height': 69.0, 'weight': '160', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '882', 'positionRank': '9', 'stateRank': '98', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2005', 'playerName': 'Jonathan Wilhite', 'highSchool': 'Butler C.C.', 'city': 'El Dorado', 'state': 'KS', 'position': 'CB', 'height': 71.0, 'weight': '185', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '121', 'positionRank': '12', 'stateRank': '26', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2005', 'playerName': 'Ulysses Alexander', 'highSchool': 'Northwestern', 'city': 'Miami', 'state': 'FL', 'position': 'WR', 'height': 76.0, 'weight': '186', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '137', 'stateRank': '143', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2005', 'playerName': "Sen'Derrick Marks", 'highSchool': 'Vigor', 'city': 'Mobile', 'state': 'AL', 'position': 'DT', 'height': 74.0, 'weight': '294', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '85', 'stateRank': '42', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2005', 'playerName': 'Robert Dunn', 'highSchool': 'Laney', 'city': 'Augusta', 'state': 'GA', 'position': 'WR', 'height': 71.0, 'weight': '180', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2005', 'playerName': 'Tray Blackmon', 'highSchool': 'LaGrange', 'city': 'Lagrange', 'state': 'GA', 'position': 'OLB', 'height': 72.0, 'weight': '200', 'compRating': '0.9956', 'compStars': 5, 'nationalRank': '11', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2004', 'playerName': 'Brandon Miller', 'highSchool': 'Miller County', 'city': 'Coolidge', 'state': 'GA', 'position': 'WDE', 'height': 76.0, 'weight': '225', 'compRating': '0.9980', 'compStars': 5, 'nationalRank': '6', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2004', 'playerName': 'Charles Johnson', 'highSchool': 'Hawkinsville', 'city': 'Hawkinsville', 'state': 'GA', 'position': 'WDE', 'height': 75.0, 'weight': '240', 'compRating': '0.9910', 'compStars': 5, 'nationalRank': '21', 'positionRank': '4', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2004', 'playerName': 'Thomas Brown', 'highSchool': 'Tucker', 'city': 'Tucker', 'state': 'GA', 'position': 'RB', 'height': 70.0, 'weight': '185', 'compRating': '0.9829', 'compStars': 4, 'nationalRank': '41', 'positionRank': '5', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2004', 'playerName': 'A.J. Bryant', 'highSchool': 'Peach County', 'city': 'Fort Valley', 'state': 'GA', 'position': 'ATH', 'height': 74.0, 'weight': '185', 'compRating': '0.9823', 'compStars': 4, 'nationalRank': '42', 'positionRank': '1', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2004', 'playerName': 'Josh Johnson', 'highSchool': 'Stephenson', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'ILB', 'height': 74.0, 'weight': '225', 'compRating': '0.9721', 'compStars': 4, 'nationalRank': '73', 'positionRank': '6', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2004', 'playerName': 'Alonzo Bryant', 'highSchool': 'Peach County', 'city': 'Fort Valley', 'state': 'GA', 'position': 'ATH', 'height': 74.0, 'weight': '185', 'compRating': '0.9444', 'compStars': 4, 'nationalRank': '108', 'positionRank': '3', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2004', 'playerName': 'Dannell Ellerbe', 'highSchool': 'Richmond', 'city': 'Rockingham', 'state': 'NC', 'position': 'OLB', 'height': 74.0, 'weight': '185', 'compRating': '0.9222', 'compStars': 4, 'nationalRank': '127', 'positionRank': '6', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2004', 'playerName': 'Demiko Goodman', 'highSchool': 'Newnan', 'city': 'Newnan', 'state': 'GA', 'position': 'WR', 'height': 76.0, 'weight': '185', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '170', 'positionRank': '26', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2004', 'playerName': 'Blake Barnes', 'highSchool': 'Baldwyn', 'city': 'Baldwyn', 'state': 'MS', 'position': 'PRO', 'height': 75.0, 'weight': '218', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '188', 'positionRank': '12', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2004', 'playerName': 'Brannan Southerland', 'highSchool': 'Greater Atlanta Christian School', 'city': 'Norcross', 'state': 'GA', 'position': 'FB', 'height': 74.0, 'weight': '220', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '194', 'positionRank': '3', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2004', 'playerName': 'Ramarcus Brown', 'highSchool': 'Tri-cities', 'city': 'Atlanta', 'state': 'GA', 'position': 'ATH', 'height': 71.0, 'weight': '162', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '209', 'positionRank': '11', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2004', 'playerName': 'Seth Watts', 'highSchool': 'Washington County', 'city': 'Sandersville', 'state': 'GA', 'position': 'OT', 'height': 77.0, 'weight': '290', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '216', 'positionRank': '17', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2004', 'playerName': 'Kenneth Harris', 'highSchool': 'Cherryville Senior', 'city': 'Cherryville', 'state': 'NC', 'position': 'WR', 'height': 76.0, 'weight': '198', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '230', 'positionRank': '31', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2004', 'playerName': 'Brandon Lang', 'highSchool': 'Tucker', 'city': 'Tucker', 'state': 'GA', 'position': 'SDE', 'height': 77.0, 'weight': '225', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '317', 'positionRank': '19', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2004', 'playerName': 'Jeremy Lomax', 'highSchool': 'Lovejoy', 'city': 'Hampton', 'state': 'GA', 'position': 'WDE', 'height': 77.0, 'weight': '220', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '358', 'positionRank': '18', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2004', 'playerName': 'Chester Adams', 'highSchool': 'Luverne', 'city': 'Luverne', 'state': 'AL', 'position': 'OT', 'height': 78.0, 'weight': '325', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '373', 'positionRank': '27', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2004', 'playerName': 'Jamar Bryant', 'highSchool': 'Richmond', 'city': 'Rockingham', 'state': 'NC', 'position': 'ATH', 'height': 75.0, 'weight': '193', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '386', 'positionRank': '29', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2004', 'playerName': 'Danny Ware', 'highSchool': 'Hargrave Military Academy', 'city': 'None', 'state': 'None', 'position': 'FB', 'height': 73.0, 'weight': '210', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '446', 'positionRank': '11', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2004', 'playerName': 'Randall Swoopes', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'OG', 'height': 75.0, 'weight': '305', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '49', 'positionRank': '6', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2004', 'playerName': 'Antonio Sims', 'highSchool': 'Hiram', 'city': 'Hiram', 'state': 'GA', 'position': 'S', 'height': 73.0, 'weight': '190', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '633', 'positionRank': '41', 'stateRank': '37', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2004', 'playerName': 'Kelin Johnson', 'highSchool': 'Mainland', 'city': 'Daytona Beach', 'state': 'FL', 'position': 'S', 'height': 73.0, 'weight': '185', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '118', 'stateRank': '166', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2002', 'playerName': 'Gerald Riggs Jr.', 'highSchool': 'Red Bank', 'city': 'Chattanooga', 'state': 'TN', 'position': 'RB', 'height': 72.0, 'weight': '220', 'compRating': '0.9970', 'compStars': 5, 'nationalRank': '7', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2002', 'playerName': 'Brandon Jefferies', 'highSchool': 'Crest', 'city': 'Shelby', 'state': 'NC', 'position': 'OG', 'height': 77.0, 'weight': '265', 'compRating': '0.9934', 'compStars': 5, 'nationalRank': '14', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2002', 'playerName': 'James Banks', 'highSchool': 'Ben Davis', 'city': 'Indianapolis', 'state': 'IN', 'position': 'DUAL', 'height': 75.0, 'weight': '195', 'compRating': '0.9878', 'compStars': 5, 'nationalRank': '29', 'positionRank': '3', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2002', 'playerName': 'Parys Haralson', 'highSchool': 'Madison Central', 'city': 'Madison', 'state': 'MS', 'position': 'WDE', 'height': 74.0, 'weight': '235', 'compRating': '0.9791', 'compStars': 4, 'nationalRank': '47', 'positionRank': '4', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2002', 'playerName': 'Jason Allen', 'highSchool': 'Muscle Shoals', 'city': 'Muscle Shoals', 'state': 'AL', 'position': 'ATH', 'height': 74.0, 'weight': '200', 'compRating': '0.9781', 'compStars': 4, 'nationalRank': '49', 'positionRank': '4', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2002', 'playerName': 'Jonathan Mapu', 'highSchool': 'Kahuku', 'city': 'Kahuku', 'state': 'HI', 'position': 'SDE', 'height': 75.0, 'weight': '265', 'compRating': '0.9747', 'compStars': 4, 'nationalRank': '60', 'positionRank': '3', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2002', 'playerName': 'Jonathan Wade', 'highSchool': 'Evangel Christian Academy', 'city': 'Shreveport', 'state': 'LA', 'position': 'ATH', 'height': 71.0, 'weight': '180', 'compRating': '0.9687', 'compStars': 4, 'nationalRank': '76', 'positionRank': '6', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2002', 'playerName': 'Heath Benedict', 'highSchool': 'The Peddie School', 'city': 'Hightstown', 'state': 'NJ', 'position': 'OT', 'height': 78.0, 'weight': '285', 'compRating': '0.9675', 'compStars': 4, 'nationalRank': '80', 'positionRank': '6', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2002', 'playerName': 'Mondre Dickerson', 'highSchool': 'Coffeyville C.C.', 'city': 'Coffeyville', 'state': 'KS', 'position': 'SDE', 'height': 76.0, 'weight': '268', 'compRating': '0.9667', 'compStars': 4, 'nationalRank': '4', 'positionRank': '1', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2002', 'playerName': 'Aaron Kirkland', 'highSchool': 'Jack Britt', 'city': 'Fayetteville', 'state': 'NC', 'position': 'TE', 'height': 77.0, 'weight': '240', 'compRating': '0.9665', 'compStars': 4, 'nationalRank': '85', 'positionRank': '3', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2002', 'playerName': 'James Wilhoit', 'highSchool': 'Hendersonville', 'city': 'Hendersonville', 'state': 'TN', 'position': 'K', 'height': 73.0, 'weight': '180', 'compRating': '0.9333', 'compStars': 4, 'nationalRank': '112', 'positionRank': '2', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2002', 'playerName': 'Gibril Wilson', 'highSchool': 'City College of San Francisco', 'city': 'San Francisco', 'state': 'CA', 'position': 'S', 'height': 73.0, 'weight': '190', 'compRating': '0.9333', 'compStars': 4, 'nationalRank': '21', 'positionRank': '1', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2002', 'playerName': 'Rob Smith', 'highSchool': 'Highlands', 'city': 'Fort Thomas', 'state': 'KY', 'position': 'OG', 'height': 76.0, 'weight': '290', 'compRating': '0.9311', 'compStars': 4, 'nationalRank': '117', 'positionRank': '5', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2002', 'playerName': 'Omar Gaither', 'highSchool': 'Myers Park', 'city': 'Charlotte', 'state': 'NC', 'position': 'OLB', 'height': 74.0, 'weight': '210', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '195', 'positionRank': '10', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2002', 'playerName': 'Cody Douglas', 'highSchool': 'La Marque', 'city': 'La Marque', 'state': 'TX', 'position': 'OG', 'height': 76.0, 'weight': '310', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '209', 'positionRank': '9', 'stateRank': '31', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2002', 'playerName': 'Justin Harrell', 'highSchool': 'Westview', 'city': 'Martin', 'state': 'TN', 'position': 'DT', 'height': 77.0, 'weight': '300', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '266', 'positionRank': '27', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2002', 'playerName': 'LaRon Harris', 'highSchool': 'Kingsbury', 'city': 'Memphis', 'state': 'TN', 'position': 'DT', 'height': 75.0, 'weight': '305', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '281', 'positionRank': '29', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2002', 'playerName': 'David Ligon', 'highSchool': 'Christian Brothers', 'city': 'Memphis', 'state': 'TN', 'position': 'SDE', 'height': 77.0, 'weight': '275', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '325', 'positionRank': '17', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2002', 'playerName': 'Chris Hannon', 'highSchool': 'Riverview', 'city': 'Sarasota', 'state': 'FL', 'position': 'ATH', 'height': 76.0, 'weight': '190', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '384', 'positionRank': '25', 'stateRank': '51', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2002', 'playerName': 'Ruben Mayes', 'highSchool': 'Ridgeway', 'city': 'Memphis', 'state': 'TN', 'position': 'FB', 'height': 74.0, 'weight': '240', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '390', 'positionRank': '8', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2002', 'playerName': 'Marvin Mitchell', 'highSchool': 'Lake Taylor', 'city': 'Norfolk', 'state': 'VA', 'position': 'ILB', 'height': 75.0, 'weight': '230', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '448', 'positionRank': '25', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2002', 'playerName': 'Antwan Stewart', 'highSchool': 'Potomac', 'city': 'Dumfries', 'state': 'VA', 'position': 'ATH', 'height': 72.0, 'weight': '180', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '613', 'positionRank': '34', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2002', 'playerName': 'Greg Jones', 'highSchool': 'Jonesboro', 'city': 'Jonesboro', 'state': 'AR', 'position': 'DT', 'height': 78.0, 'weight': '265', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2002', 'playerName': 'Jason Hall', 'highSchool': 'McCallie School', 'city': 'Chattanooga', 'state': 'TN', 'position': 'SDE', 'height': 76.0, 'weight': '245', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2006', 'playerName': 'Keiland Williams', 'highSchool': 'Hargrave Military Academy', 'city': 'None', 'state': 'None', 'position': 'RB', 'height': 72.0, 'weight': '215', 'compRating': '0.9805', 'compStars': 4, 'nationalRank': '40', 'positionRank': '11', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2006', 'playerName': 'Charles Deas', 'highSchool': 'Dillard', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'DT', 'height': 76.0, 'weight': '315', 'compRating': '0.9685', 'compStars': 4, 'nationalRank': '73', 'positionRank': '4', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2006', 'playerName': 'Richard Dickson', 'highSchool': 'Ocean Springs', 'city': 'Pascagoula', 'state': 'MS', 'position': 'TE', 'height': 75.0, 'weight': '235', 'compRating': '0.9448', 'compStars': 4, 'nationalRank': '101', 'positionRank': '6', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2006', 'playerName': 'Ricky Dixon', 'highSchool': 'East St. John', 'city': 'Reserve', 'state': 'LA', 'position': 'WR', 'height': 74.0, 'weight': '202', 'compRating': '0.9421', 'compStars': 4, 'nationalRank': '108', 'positionRank': '12', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2006', 'playerName': 'Chris Mitchell', 'highSchool': 'John Ehret', 'city': 'Marrero', 'state': 'LA', 'position': 'WR', 'height': 74.0, 'weight': '195', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '208', 'positionRank': '28', 'stateRank': '37', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2006', 'playerName': 'Shomari Clemons', 'highSchool': 'West Monroe', 'city': 'West Monroe', 'state': 'LA', 'position': 'S', 'height': 73.0, 'weight': '208', 'compRating': '0.8938', 'compStars': 4, 'nationalRank': '219', 'positionRank': '14', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2006', 'playerName': 'Troy Giddens', 'highSchool': 'Hammond', 'city': 'Hammond', 'state': 'LA', 'position': 'ATH', 'height': 72.0, 'weight': '201', 'compRating': '0.8826', 'compStars': 3, 'nationalRank': '275', 'positionRank': '17', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2006', 'playerName': 'Zhamal Thomas', 'highSchool': 'New Iberia', 'city': 'New Iberia', 'state': 'LA', 'position': 'OG', 'height': 76.0, 'weight': '335', 'compRating': '0.8813', 'compStars': 3, 'nationalRank': '286', 'positionRank': '13', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2006', 'playerName': 'Jacob Cutrera', 'highSchool': 'Acadiana', 'city': 'Lafayette', 'state': 'LA', 'position': 'ILB', 'height': 76.0, 'weight': '224', 'compRating': '0.8795', 'compStars': 3, 'nationalRank': '291', 'positionRank': '19', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2006', 'playerName': 'Steven Singleton', 'highSchool': 'Buford', 'city': 'Buford', 'state': 'GA', 'position': 'OG', 'height': 75.0, 'weight': '285', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '325', 'positionRank': '17', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2006', 'playerName': 'Jason Teague', 'highSchool': 'Carthage', 'city': 'Carthage', 'state': 'TX', 'position': 'CB', 'height': 74.0, 'weight': '190', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '327', 'positionRank': '27', 'stateRank': '41', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2006', 'playerName': 'Danny McCray', 'highSchool': 'Westside', 'city': 'Houston', 'state': 'TX', 'position': 'S', 'height': 73.0, 'weight': '205', 'compRating': '0.8662', 'compStars': 3, 'nationalRank': '403', 'positionRank': '30', 'stateRank': '61', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2006', 'playerName': 'Lazarius Levingston', 'highSchool': 'Ruston', 'city': 'Ruston', 'state': 'LA', 'position': 'SDE', 'height': 76.0, 'weight': '265', 'compRating': '0.8537', 'compStars': 3, 'nationalRank': '550', 'positionRank': '37', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2006', 'playerName': 'Kelvin Sheppard', 'highSchool': 'Stephenson', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'ILB', 'height': 74.0, 'weight': '220', 'compRating': '0.8510', 'compStars': 3, 'nationalRank': '575', 'positionRank': '35', 'stateRank': '28', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2006', 'playerName': 'Mark Synder', 'highSchool': 'West Monroe', 'city': 'West Monroe', 'state': 'LA', 'position': 'OT', 'height': 79.0, 'weight': '270', 'compRating': '0.8417', 'compStars': 3, 'nationalRank': '670', 'positionRank': '42', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2006', 'playerName': 'Perry Riley', 'highSchool': 'Stephenson', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'OLB', 'height': 73.0, 'weight': '205', 'compRating': '0.7844', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '83', 'stateRank': '73', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2006', 'playerName': 'Matt Allen', 'highSchool': 'Klein Collins', 'city': 'Spring', 'state': 'TX', 'position': 'OG', 'height': 74.0, 'weight': '295', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2006', 'playerName': "Jacob O'Hair", 'highSchool': 'Mt. San Antonio College', 'city': 'Walnut', 'state': 'CA', 'position': 'OT', 'height': 73.0, 'weight': '250', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2006', 'playerName': 'Al Woods', 'highSchool': 'Elton', 'city': 'Elton', 'state': 'LA', 'position': 'DT', 'height': 76.0, 'weight': '330', 'compRating': '0.9942', 'compStars': 5, 'nationalRank': '12', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2006', 'playerName': 'Charles Scott', 'highSchool': 'Jonesboro-Hodge', 'city': 'Jonesboro', 'state': 'LA', 'position': 'RB', 'height': 72.0, 'weight': '220', 'compRating': '0.9738', 'compStars': 4, 'nationalRank': '61', 'positionRank': '14', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2006', 'playerName': 'Jai Eugene', 'highSchool': 'Destrehan', 'city': 'Destrehan', 'state': 'LA', 'position': 'CB', 'height': 71.0, 'weight': '175', 'compRating': '0.9629', 'compStars': 4, 'nationalRank': '81', 'positionRank': '6', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2006', 'playerName': 'Jared Mitchell', 'highSchool': 'Westgate', 'city': 'New Iberia', 'state': 'LA', 'position': 'WR', 'height': 71.0, 'weight': '195', 'compRating': '0.9614', 'compStars': 4, 'nationalRank': '82', 'positionRank': '8', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2006', 'playerName': 'Derrick Odom', 'highSchool': 'Callaway', 'city': 'Jackson', 'state': 'MS', 'position': 'OLB', 'height': 74.0, 'weight': '205', 'compRating': '0.9181', 'compStars': 4, 'nationalRank': '177', 'positionRank': '10', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2016', 'playerName': 'Brandon McIlwain', 'highSchool': 'Council Rock North', 'city': 'Newtown', 'state': 'PA', 'position': 'DUAL', 'height': 72.0, 'weight': '200', 'compRating': '0.9273', 'compStars': 4, 'nationalRank': '175', 'positionRank': '2', 'stateRank': '6', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '156', '247positionRank': '2', '247stateRank': '3'}, {'school': 'south-carolina', 'year': '2016', 'playerName': 'Bryan Edwards', 'highSchool': 'Conway', 'city': 'Conway', 'state': 'SC', 'position': 'WR', 'height': 75.0, 'weight': '208', 'compRating': '0.9169', 'compStars': 4, 'nationalRank': '217', 'positionRank': '42', 'stateRank': '3', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '121', '247positionRank': '17', '247stateRank': '4'}, {'school': 'south-carolina', 'year': '2016', 'playerName': 'Jake Bentley', 'highSchool': 'Opelika', 'city': 'Opelika', 'state': 'AL', 'position': 'PRO', 'height': 75.5, 'weight': '219', 'compRating': '0.9068', 'compStars': 4, 'nationalRank': '263', 'positionRank': '12', 'stateRank': '6', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '199', '247positionRank': '10', '247stateRank': '5'}, {'school': 'south-carolina', 'year': '2016', 'playerName': 'Stephon Taylor', 'highSchool': 'McDonogh 35', 'city': 'New Orleans', 'state': 'LA', 'position': 'DT', 'height': 76.0, 'weight': '292', 'compRating': '0.9031', 'compStars': 4, 'nationalRank': '284', 'positionRank': '30', 'stateRank': '18', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '26', '247stateRank': '16'}, {'school': 'south-carolina', 'year': '2016', 'playerName': 'Jamarcus King', 'highSchool': 'Coffeyville C.C.', 'city': 'Coffeyville', 'state': 'KS', 'position': 'CB', 'height': 73.0, 'weight': '180', 'compRating': '0.8981', 'compStars': 4, 'nationalRank': '13', 'positionRank': '1', 'stateRank': '3', '247Rating': ' 87 ', '247Stars': 3, '247nationalRank': '44', '247positionRank': '6', '247stateRank': '9'}, {'school': 'south-carolina', 'year': '2016', 'playerName': 'Keir Thomas', 'highSchool': 'Miami Central', 'city': 'Miami', 'state': 'FL', 'position': 'SDE', 'height': 74.0, 'weight': '249', 'compRating': '0.8818', 'compStars': 3, 'nationalRank': '387', 'positionRank': '18', 'stateRank': '52', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '25', '247stateRank': '66'}, {'school': 'south-carolina', 'year': '2016', 'playerName': 'Kiel Pollard', 'highSchool': 'Colquitt County', 'city': 'Moultrie', 'state': 'GA', 'position': 'WR', 'height': 73.0, 'weight': '200', 'compRating': '0.8782', 'compStars': 3, 'nationalRank': '417', 'positionRank': '71', 'stateRank': '36', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '150', '247stateRank': '89'}, {'school': 'south-carolina', 'year': '2016', 'playerName': 'Randrecous Davis', 'highSchool': 'Mays', 'city': 'Atlanta', 'state': 'GA', 'position': 'WR', 'height': 70.5, 'weight': '169', 'compRating': '0.8780', 'compStars': 3, 'nationalRank': '418', 'positionRank': '72', 'stateRank': '37', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '78', '247stateRank': '44'}, {'school': 'south-carolina', 'year': '2016', 'playerName': 'Darius Whitfield', 'highSchool': "St. Paul's Episcopal", 'city': 'Mobile', 'state': 'AL', 'position': 'SDE', 'height': 75.0, 'weight': '265', 'compRating': '0.8676', 'compStars': 3, 'nationalRank': '520', 'positionRank': '25', 'stateRank': '19'}, {'school': 'south-carolina', 'year': '2016', 'playerName': 'Rico Dowdle', 'highSchool': 'A C Reynolds', 'city': 'Asheville', 'state': 'NC', 'position': 'RB', 'height': 71.0, 'weight': '207', 'compRating': '0.8628', 'compStars': 3, 'nationalRank': '580', 'positionRank': '35', 'stateRank': '24', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '13', '247stateRank': '12'}, {'school': 'south-carolina', 'year': '2016', 'playerName': 'CJ Freeman', 'highSchool': 'Northern Guilford', 'city': 'Greensboro', 'state': 'NC', 'position': 'RB', 'height': 71.0, 'weight': '200', 'compRating': '0.8616', 'compStars': 3, 'nationalRank': '592', 'positionRank': '36', 'stateRank': '25', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '36', '247stateRank': '25'}, {'school': 'south-carolina', 'year': '2016', 'playerName': 'Kobe Smith', 'highSchool': 'Archer', 'city': 'Lawrenceville', 'state': 'GA', 'position': 'DT', 'height': 76.0, 'weight': '295', 'compRating': '0.8605', 'compStars': 3, 'nationalRank': '616', 'positionRank': '45', 'stateRank': '52', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '63', '247stateRank': '87'}, {'school': 'south-carolina', 'year': '2016', 'playerName': 'Evan Hinson', 'highSchool': 'Deltona', 'city': 'Deltona', 'state': 'FL', 'position': 'TE', 'height': 77.0, 'weight': '215', 'compRating': '0.8603', 'compStars': 3, 'nationalRank': '621', 'positionRank': '31', 'stateRank': '89', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '18', '247stateRank': '52'}, {'school': 'south-carolina', 'year': '2016', 'playerName': 'Aaron Thompson', 'highSchool': 'Dillard', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'SDE', 'height': 76.0, 'weight': '265', 'compRating': '0.8584', 'compStars': 3, 'nationalRank': '654', 'positionRank': '31', 'stateRank': '94', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '31', '247stateRank': '78'}, {'school': 'south-carolina', 'year': '2016', 'playerName': 'Korey Banks', 'highSchool': 'Sandy Creek', 'city': 'Tyrone', 'state': 'GA', 'position': 'WR', 'height': 72.0, 'weight': '170', 'compRating': '0.8519', 'compStars': 3, 'nationalRank': '790', 'positionRank': '121', 'stateRank': '73', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '113', '247stateRank': '61'}, {'school': 'south-carolina', 'year': '2016', 'playerName': 'T.J. Brunson', 'highSchool': 'Richland Northeast', 'city': 'Columbia', 'state': 'SC', 'position': 'ILB', 'height': 73.0, 'weight': '225', 'compRating': '0.8497', 'compStars': 3, 'nationalRank': '844', 'positionRank': '33', 'stateRank': '15', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '29', '247stateRank': '13'}, {'school': 'south-carolina', 'year': '2016', 'playerName': 'Chavis Dawkins', 'highSchool': 'Byrnes', 'city': 'Duncan', 'state': 'SC', 'position': 'WR', 'height': 75.0, 'weight': '195', 'compRating': '0.8457', 'compStars': 3, 'nationalRank': '934', 'positionRank': '139', 'stateRank': '19', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '135', '247stateRank': '16'}, {'school': 'south-carolina', 'year': '2016', 'playerName': 'Robert Tucker', 'highSchool': 'Best Academy', 'city': 'Atlanta', 'state': 'GA', 'position': 'ILB', 'height': 75.0, 'weight': '230', 'compRating': '0.8455', 'compStars': 3, 'nationalRank': '940', 'positionRank': '36', 'stateRank': '87', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '24', '247stateRank': '59'}, {'school': 'south-carolina', 'year': '2016', 'playerName': 'Pika Leota', 'highSchool': 'Asheville', 'city': 'Asheville', 'state': 'NC', 'position': 'OT', 'height': 76.5, 'weight': '300', 'compRating': '0.8340', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '104', 'stateRank': '48', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '46', '247stateRank': '23'}, {'school': 'south-carolina', 'year': '2016', 'playerName': 'D.J. Wonnum', 'highSchool': 'Stephenson', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'WDE', 'height': 76.0, 'weight': '225', 'compRating': '0.8325', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '77', 'stateRank': '115', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '90', '247stateRank': '135'}, {'school': 'south-carolina', 'year': '2016', 'playerName': 'Sadarius Hutcherson', 'highSchool': 'Huntingdon', 'city': 'Huntingdon', 'state': 'TN', 'position': 'SDE', 'height': 78.0, 'weight': '270', 'compRating': '0.8305', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '63', 'stateRank': '25', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '39', '247stateRank': '21'}, {'school': 'south-carolina', 'year': '2016', 'playerName': 'Will Putnam', 'highSchool': 'Hickory Ridge', 'city': 'Harrisburg', 'state': 'NC', 'position': 'OT', 'height': 77.0, 'weight': '270', 'compRating': '0.8241', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '124', 'stateRank': '57', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '113', '247stateRank': '52'}, {'school': 'south-carolina', 'year': '2016', 'playerName': 'Chris Smith', 'highSchool': 'South Pointe', 'city': 'Rock Hill', 'state': 'SC', 'position': 'CB', 'height': 70.0, 'weight': '168', 'compRating': '0.8231', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '145', 'stateRank': '26', '247Rating': ' 78 ', '247Stars': 2, '247positionRank': '211', '247stateRank': '45'}, {'school': 'south-carolina', 'year': '2016', 'playerName': 'Griffin Gentry', 'highSchool': 'Homewood', 'city': 'Birmingham', 'state': 'AL', 'position': 'SDE', 'height': 74.0, 'weight': '255', 'compRating': '0.7886', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '113', 'stateRank': '88', '247Rating': ' 75 ', '247Stars': 2, '247positionRank': '134', '247stateRank': '122'}, {'school': 'south-carolina', 'year': '2016', 'playerName': 'Akeem Cooperwood', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'OT', 'height': 79.0, 'weight': '325', 'compRating': '0.8535', 'compStars': 3, 'nationalRank': '84', 'positionRank': '13', 'stateRank': '1'}, {'school': 'south-carolina', 'year': '2016', 'playerName': 'Parker White', 'highSchool': 'Wando', 'city': 'Mount Pleasant', 'state': 'SC', 'position': 'K', 'height': 76.0, 'weight': '175', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2013', 'playerName': 'Montravius Adams', 'highSchool': 'Dooly County', 'city': 'Vienna', 'state': 'GA', 'position': 'DT', 'height': 76.0, 'weight': '310', 'compRating': '0.9947', 'compStars': 5, 'nationalRank': '10', 'positionRank': '3', 'stateRank': '2', '247Rating': ' 99 ', '247Stars': 5, '247nationalRank': '10', '247positionRank': '2', '247stateRank': '2'}, {'school': 'auburn', 'year': '2013', 'playerName': 'Carl Lawson', 'highSchool': 'Milton', 'city': 'Alpharetta', 'state': 'GA', 'position': 'WDE', 'height': 75.0, 'weight': '245', 'compRating': '0.9897', 'compStars': 5, 'nationalRank': '22', 'positionRank': '1', 'stateRank': '3', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '24', '247positionRank': '1', '247stateRank': '3'}, {'school': 'auburn', 'year': '2013', 'playerName': 'Elijah Daniel', 'highSchool': 'Avon', 'city': 'Avon', 'state': 'IN', 'position': 'SDE', 'height': 76.0, 'weight': '250', 'compRating': '0.9746', 'compStars': 4, 'nationalRank': '55', 'positionRank': '6', 'stateRank': '2', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '27', '247positionRank': '3', '247stateRank': '2'}, {'school': 'auburn', 'year': '2013', 'playerName': 'Tony Stevens', 'highSchool': 'Evans', 'city': 'Orlando', 'state': 'FL', 'position': 'WR', 'height': 75.0, 'weight': '175', 'compRating': '0.9386', 'compStars': 4, 'nationalRank': '130', 'positionRank': '16', 'stateRank': '23', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '168', '247positionRank': '24', '247stateRank': '23'}, {'school': 'auburn', 'year': '2013', 'playerName': 'Jovon Robinson', 'highSchool': 'Wooddale', 'city': 'Memphis', 'state': 'TN', 'position': 'RB', 'height': 71.0, 'weight': '220', 'compRating': '0.9313', 'compStars': 4, 'nationalRank': '157', 'positionRank': '13', 'stateRank': '3'}, {'school': 'auburn', 'year': '2013', 'playerName': 'Jeremy Johnson', 'highSchool': 'Carver', 'city': 'Montgomery', 'state': 'AL', 'position': 'PRO', 'height': 77.0, 'weight': '215', 'compRating': '0.9295', 'compStars': 4, 'nationalRank': '164', 'positionRank': '11', 'stateRank': '7', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '246', '247positionRank': '14', '247stateRank': '12'}, {'school': 'auburn', 'year': '2013', 'playerName': 'Ben Bradley', 'highSchool': 'Hutchinson C.C.', 'city': 'Hutchinson', 'state': 'KS', 'position': 'DT', 'height': 74.0, 'weight': '302', 'compRating': '0.8959', 'compStars': 4, 'nationalRank': '16', 'positionRank': '6', 'stateRank': '3', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '52', '247positionRank': '8', '247stateRank': '8'}, {'school': 'auburn', 'year': '2013', 'playerName': 'Rudy Ford', 'highSchool': 'New Hope', 'city': 'New Hope', 'state': 'AL', 'position': 'RB', 'height': 71.0, 'weight': '194', 'compRating': '0.8950', 'compStars': 4, 'nationalRank': '306', 'positionRank': '22', 'stateRank': '13', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '240', '247positionRank': '18', '247stateRank': '11'}, {'school': 'auburn', 'year': '2013', 'playerName': 'Nick Marshall', 'highSchool': 'Garden City C.C.', 'city': 'Garden City', 'state': 'KS', 'position': 'ATH', 'height': 74.0, 'weight': '205', 'compRating': '0.8809', 'compStars': 3, 'nationalRank': '27', 'positionRank': '3', 'stateRank': '6', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '209', '247positionRank': '20', '247stateRank': '17'}, {'school': 'auburn', 'year': '2013', 'playerName': 'Cameron Toney', 'highSchool': 'Huntsville', 'city': 'Huntsville', 'state': 'AL', 'position': 'ILB', 'height': 74.0, 'weight': '230', 'compRating': '0.8746', 'compStars': 3, 'nationalRank': '433', 'positionRank': '28', 'stateRank': '15', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '21', '247stateRank': '14'}, {'school': 'auburn', 'year': '2013', 'playerName': 'Deon Mix', 'highSchool': 'South Panola', 'city': 'Batesville', 'state': 'MS', 'position': 'OG', 'height': 76.0, 'weight': '315', 'compRating': '0.8717', 'compStars': 3, 'nationalRank': '459', 'positionRank': '25', 'stateRank': '7', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '35', '247stateRank': '10'}, {'school': 'auburn', 'year': '2013', 'playerName': 'Peyton Barber', 'highSchool': 'Milton', 'city': 'Alpharetta', 'state': 'GA', 'position': 'RB', 'height': 71.0, 'weight': '215', 'compRating': '0.8696', 'compStars': 3, 'nationalRank': '482', 'positionRank': '30', 'stateRank': '42', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '34', '247stateRank': '48'}, {'school': 'auburn', 'year': '2013', 'playerName': 'Dominic Walker', 'highSchool': 'Evans', 'city': 'Orlando', 'state': 'FL', 'position': 'WR', 'height': 74.0, 'weight': '189', 'compRating': '0.8679', 'compStars': 3, 'nationalRank': '500', 'positionRank': '71', 'stateRank': '76', '247Rating': ' 82 ', '247Stars': 3, '247nationalRank': '171', '247positionRank': '32', '247stateRank': '28'}, {'school': 'auburn', 'year': '2013', 'playerName': 'Kamryn Melton', 'highSchool': 'Dothan', 'city': 'Dothan', 'state': 'AL', 'position': 'CB', 'height': 71.0, 'weight': '174', 'compRating': '0.8656', 'compStars': 3, 'nationalRank': '542', 'positionRank': '40', 'stateRank': '18', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '48', '247stateRank': '20'}, {'school': 'auburn', 'year': '2013', 'playerName': 'Mackenro Alexander', 'highSchool': 'Immokalee', 'city': 'Immokalee', 'state': 'FL', 'position': 'S', 'height': 72.0, 'weight': '186', 'compRating': '0.8624', 'compStars': 3, 'nationalRank': '585', 'positionRank': '40', 'stateRank': '86', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2013', 'playerName': 'Cameron Artis-Payne', 'highSchool': 'Allan Hancock College', 'city': 'Santa Maria', 'state': 'CA', 'position': 'RB', 'height': 71.0, 'weight': '212', 'compRating': '0.8611', 'compStars': 3, 'nationalRank': '60', 'positionRank': '3', 'stateRank': '17', '247Rating': ' 89 ', '247Stars': 3, '247nationalRank': '42', '247positionRank': '1', '247stateRank': '18'}, {'school': 'auburn', 'year': '2013', 'playerName': 'Khari Harding', 'highSchool': 'Santa Fe', 'city': 'Edmond', 'state': 'OK', 'position': 'S', 'height': 73.0, 'weight': '205', 'compRating': '0.8595', 'compStars': 3, 'nationalRank': '635', 'positionRank': '45', 'stateRank': '5', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '31', '247stateRank': '3'}, {'school': 'auburn', 'year': '2013', 'playerName': 'Kenny Flowers', 'highSchool': 'Hutchinson C.C.', 'city': 'Hutchinson', 'state': 'KS', 'position': 'ILB', 'height': 74.0, 'weight': '230', 'compRating': '0.8594', 'compStars': 3, 'nationalRank': '67', 'positionRank': '3', 'stateRank': '13', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '60', '247positionRank': '2', '247stateRank': '10'}, {'school': 'auburn', 'year': '2013', 'playerName': 'Marcus Davis', 'highSchool': 'American Heritage B/D', 'city': 'Delray Beach', 'state': 'FL', 'position': 'CB', 'height': 70.0, 'weight': '165', 'compRating': '0.8468', 'compStars': 3, 'nationalRank': '865', 'positionRank': '69', 'stateRank': '126', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '91', '247stateRank': '171'}, {'school': 'auburn', 'year': '2013', 'playerName': 'Devonte Danzey', 'highSchool': 'Hutchinson C.C.', 'city': 'Hutchinson', 'state': 'KS', 'position': 'OG', 'height': 75.0, 'weight': '303', 'compRating': '0.8448', 'compStars': 3, 'nationalRank': '106', 'positionRank': '2', 'stateRank': '18', '247Rating': ' 89 ', '247Stars': 3, '247nationalRank': '43', '247positionRank': '1', '247stateRank': '5'}, {'school': 'auburn', 'year': '2013', 'playerName': 'Daniel Carlson', 'highSchool': 'The Classical Academy', 'city': 'Pike Ntl Forest', 'state': 'CO', 'position': 'K', 'height': 77.0, 'weight': '190', 'compRating': '0.8368', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '2', 'stateRank': '6', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '8', '247stateRank': '10'}, {'school': 'auburn', 'year': '2013', 'playerName': 'Jimmy Hutchinson', 'highSchool': 'Harrison', 'city': 'Kennesaw', 'state': 'GA', 'position': 'P', 'height': 74.0, 'weight': '175', 'compRating': '0.8243', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '1', 'stateRank': '118', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '1', '247stateRank': '122'}, {'school': 'auburn', 'year': '2013', 'playerName': 'Brandon King', 'highSchool': 'Highland C.C.', 'city': 'Highland', 'state': 'KS', 'position': 'S', 'height': 74.0, 'weight': '215', 'compRating': '0.8184', 'compStars': 3, 'nationalRank': '176', 'positionRank': '14', 'stateRank': '28', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2013', 'playerName': 'Jason Smith', 'highSchool': 'McGill Toolen', 'city': 'Mobile', 'state': 'AL', 'position': 'WR', 'height': 73.0, 'weight': '180', 'compRating': '0.9169', 'compStars': 4, 'nationalRank': '209', 'positionRank': '29', 'stateRank': '9', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '8', '247positionRank': '1', '247stateRank': '4'}, {'school': 'auburn', 'year': '2013', 'playerName': 'Earnest Robinson', 'highSchool': 'Pinson Valley', 'city': 'Pinson', 'state': 'AL', 'position': 'WR', 'height': 73.0, 'weight': '192', 'compRating': '0.8961', 'compStars': 4, 'nationalRank': '296', 'positionRank': '43', 'stateRank': '11'}, {'school': 'auburn', 'year': '2013', 'playerName': 'Casey Dunn', 'highSchool': 'Hewitt-Trussville', 'city': 'Trussville', 'state': 'AL', 'position': 'OC', 'height': 75.0, 'weight': '285', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2012', 'playerName': 'Keith Marshall', 'highSchool': 'Millbrook', 'city': 'Raleigh', 'state': 'NC', 'position': 'APB', 'height': 71.0, 'weight': '195', 'compRating': '0.9919', 'compStars': 5, 'nationalRank': '13', 'positionRank': '1', 'stateRank': '3', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '21', '247positionRank': '1', '247stateRank': '2'}, {'school': 'georgia', 'year': '2012', 'playerName': 'John Theus', 'highSchool': 'The Bolles School', 'city': 'Jacksonville', 'state': 'FL', 'position': 'OT', 'height': 77.0, 'weight': '305', 'compRating': '0.9915', 'compStars': 5, 'nationalRank': '15', 'positionRank': '3', 'stateRank': '1', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '35', '247positionRank': '3', '247stateRank': '5'}, {'school': 'georgia', 'year': '2012', 'playerName': 'Josh Harvey-Clemons', 'highSchool': 'Lowndes', 'city': 'Valdosta', 'state': 'GA', 'position': 'OLB', 'height': 77.0, 'weight': '200', 'compRating': '0.9890', 'compStars': 5, 'nationalRank': '22', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '32', '247positionRank': '2', '247stateRank': '2'}, {'school': 'georgia', 'year': '2012', 'playerName': 'Jordan Jenkins', 'highSchool': 'Harris County', 'city': 'Hamilton', 'state': 'GA', 'position': 'WDE', 'height': 75.0, 'weight': '242', 'compRating': '0.9845', 'compStars': 5, 'nationalRank': '34', 'positionRank': '4', 'stateRank': '2', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '28', '247positionRank': '5', '247stateRank': '1'}, {'school': 'georgia', 'year': '2012', 'playerName': 'Jonathan Taylor', 'highSchool': 'Jenkins County', 'city': 'Millen', 'state': 'GA', 'position': 'DT', 'height': 76.0, 'weight': '317', 'compRating': '0.9761', 'compStars': 4, 'nationalRank': '53', 'positionRank': '5', 'stateRank': '4', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '20', '247positionRank': '2', '247stateRank': '8'}, {'school': 'georgia', 'year': '2012', 'playerName': 'Todd Gurley', 'highSchool': 'Tarboro', 'city': 'Tarboro', 'state': 'NC', 'position': 'RB', 'height': 73.0, 'weight': '209', 'compRating': '0.9672', 'compStars': 4, 'nationalRank': '73', 'positionRank': '6', 'stateRank': '5', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '56', '247positionRank': '6', '247stateRank': '5'}, {'school': 'georgia', 'year': '2012', 'playerName': 'Sheldon Dawson', 'highSchool': 'Ridgeway', 'city': 'Memphis', 'state': 'TN', 'position': 'ATH', 'height': 71.0, 'weight': '178', 'compRating': '0.9299', 'compStars': 4, 'nationalRank': '183', 'positionRank': '16', 'stateRank': '1', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '92', '247positionRank': '8', '247stateRank': '1'}, {'school': 'georgia', 'year': '2012', 'playerName': 'Josh Dawson', 'highSchool': 'Tucker', 'city': 'Tucker', 'state': 'GA', 'position': 'WDE', 'height': 76.0, 'weight': '220', 'compRating': '0.9125', 'compStars': 4, 'nationalRank': '258', 'positionRank': '17', 'stateRank': '21', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '27', '247stateRank': '30'}, {'school': 'georgia', 'year': '2012', 'playerName': 'Greg Pyke', 'highSchool': "The Boys' Latin School", 'city': 'Baltimore', 'state': 'MD', 'position': 'OT', 'height': 77.0, 'weight': '290', 'compRating': '0.8857', 'compStars': 3, 'nationalRank': '411', 'positionRank': '42', 'stateRank': '12', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '225', '247positionRank': '23', '247stateRank': '8'}, {'school': 'georgia', 'year': '2012', 'playerName': 'Quayvon Hicks', 'highSchool': 'Pierce County', 'city': 'Blackshear', 'state': 'GA', 'position': 'FB', 'height': 74.0, 'weight': '249', 'compRating': '0.8830', 'compStars': 3, 'nationalRank': '443', 'positionRank': '2', 'stateRank': '35', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '2', '247stateRank': '31'}, {'school': 'georgia', 'year': '2012', 'playerName': 'Faton Bauta', 'highSchool': 'Dwyer', 'city': 'Palm Beach Gardens', 'state': 'FL', 'position': 'DUAL', 'height': 74.0, 'weight': '222', 'compRating': '0.8829', 'compStars': 3, 'nationalRank': '445', 'positionRank': '10', 'stateRank': '58', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '7', '247stateRank': '61'}, {'school': 'georgia', 'year': '2012', 'playerName': 'Blake Tibbs', 'highSchool': 'Martin Luther King Jr.', 'city': 'Lithonia', 'state': 'GA', 'position': 'WR', 'height': 73.0, 'weight': '170', 'compRating': '0.8811', 'compStars': 3, 'nationalRank': '464', 'positionRank': '58', 'stateRank': '37', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '57', '247stateRank': '29'}, {'school': 'georgia', 'year': '2012', 'playerName': 'Ty Flournoy-Smith', 'highSchool': 'Colquitt County', 'city': 'Moultrie', 'state': 'GA', 'position': 'TE', 'height': 75.0, 'weight': '215', 'compRating': '0.8794', 'compStars': 3, 'nationalRank': '486', 'positionRank': '17', 'stateRank': '38', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '76', '247positionRank': '2', '247stateRank': '5'}, {'school': 'georgia', 'year': '2012', 'playerName': 'James DeLoach', 'highSchool': 'Jenkins County', 'city': 'Millen', 'state': 'GA', 'position': 'SDE', 'height': 74.0, 'weight': '249', 'compRating': '0.8715', 'compStars': 3, 'nationalRank': '602', 'positionRank': '33', 'stateRank': '47', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '37', '247stateRank': '46'}, {'school': 'georgia', 'year': '2012', 'playerName': 'Marshall Morgan', 'highSchool': 'American Heritage', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'K', 'height': 75.0, 'weight': '195', 'compRating': '0.8537', 'compStars': 3, 'nationalRank': '814', 'positionRank': '4', 'stateRank': '98', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '6', '247stateRank': '154'}, {'school': 'georgia', 'year': '2012', 'playerName': 'Mark Beard', 'highSchool': 'Coffeyville C.C.', 'city': 'Coffeyville', 'state': 'KS', 'position': 'OT', 'height': 77.0, 'weight': '294', 'compRating': '0.8530', 'compStars': 3, 'nationalRank': '49', 'positionRank': '10', 'stateRank': '6', '247Rating': ' 87 ', '247Stars': 3, '247nationalRank': '48', '247positionRank': '9', '247stateRank': '7'}, {'school': 'georgia', 'year': '2012', 'playerName': 'Collin Barber', 'highSchool': 'Cartersville', 'city': 'Cartersville', 'state': 'GA', 'position': 'P', 'height': 73.0, 'weight': '190', 'compRating': '0.8101', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '4', 'stateRank': '121', '247Rating': ' 75 ', '247Stars': 2, '247positionRank': '6', '247stateRank': '152'}, {'school': 'georgia', 'year': '2012', 'playerName': 'Leonard Floyd', 'highSchool': 'Dodge County', 'city': 'Eastman', 'state': 'GA', 'position': 'OLB', 'height': 77.0, 'weight': '211', 'compRating': '0.9434', 'compStars': 4, 'nationalRank': '142', 'positionRank': '14', 'stateRank': '12', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '123', '247positionRank': '10', '247stateRank': '11'}, {'school': 'georgia', 'year': '2012', 'playerName': 'John Atkins', 'highSchool': 'Thomson', 'city': 'Thomson', 'state': 'GA', 'position': 'DT', 'height': 75.0, 'weight': '305', 'compRating': '0.8984', 'compStars': 4, 'nationalRank': '327', 'positionRank': '23', 'stateRank': '28', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '5', '247positionRank': '1', '247stateRank': '5'}, {'school': 'tennessee', 'year': '2014', 'playerName': 'Josh Malone', 'highSchool': 'Station Camp', 'city': 'Gallatin', 'state': 'TN', 'position': 'WR', 'height': 74.25, 'weight': '191', 'compRating': '0.9826', 'compStars': 4, 'nationalRank': '37', 'positionRank': '5', 'stateRank': '1', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '49', '247positionRank': '6', '247stateRank': '2'}, {'school': 'tennessee', 'year': '2014', 'playerName': 'Jalen Hurd', 'highSchool': 'Beech', 'city': 'Hendersonville', 'state': 'TN', 'position': 'ATH', 'height': 75.0, 'weight': '230', 'compRating': '0.9805', 'compStars': 4, 'nationalRank': '39', 'positionRank': '4', 'stateRank': '2', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '32', '247positionRank': '2', '247stateRank': '1'}, {'school': 'tennessee', 'year': '2014', 'playerName': 'Todd Kelly Jr.', 'highSchool': 'Webb School of Knoxville', 'city': 'Knoxville', 'state': 'TN', 'position': 'S', 'height': 71.75, 'weight': '192', 'compRating': '0.9696', 'compStars': 4, 'nationalRank': '64', 'positionRank': '5', 'stateRank': '3', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '71', '247positionRank': '5', '247stateRank': '3'}, {'school': 'tennessee', 'year': '2014', 'playerName': 'Dillon Bates', 'highSchool': 'Ponte Vedra', 'city': 'Ponte Vedra Beach', 'state': 'FL', 'position': 'OLB', 'height': 76.0, 'weight': '230', 'compRating': '0.9554', 'compStars': 4, 'nationalRank': '96', 'positionRank': '7', 'stateRank': '15', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '103', '247positionRank': '7', '247stateRank': '15'}, {'school': 'tennessee', 'year': '2014', 'playerName': 'Dewayne Hendrix', 'highSchool': 'O Fallon', 'city': "O'Fallon", 'state': 'IL', 'position': 'SDE', 'height': 77.0, 'weight': '254', 'compRating': '0.9457', 'compStars': 4, 'nationalRank': '114', 'positionRank': '7', 'stateRank': '4', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '171', '247positionRank': '9', '247stateRank': '6'}, {'school': 'tennessee', 'year': '2014', 'playerName': 'Derrell Scott', 'highSchool': 'Havelock', 'city': 'Havelock', 'state': 'NC', 'position': 'APB', 'height': 71.0, 'weight': '180', 'compRating': '0.9426', 'compStars': 4, 'nationalRank': '127', 'positionRank': '3', 'stateRank': '6', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '141', '247positionRank': '3', '247stateRank': '6'}, {'school': 'tennessee', 'year': '2014', 'playerName': 'Von Pearson', 'highSchool': 'Feather River College', 'city': 'Plumas Ntl Forest', 'state': 'CA', 'position': 'WR', 'height': 73.0, 'weight': '180', 'compRating': '0.9293', 'compStars': 4, 'nationalRank': '4', 'positionRank': '2', 'stateRank': '2', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '7', '247positionRank': '2', '247stateRank': '1'}, {'school': 'tennessee', 'year': '2014', 'playerName': 'Cortez McDowell', 'highSchool': 'Locust Grove', 'city': 'Locust Grove', 'state': 'GA', 'position': 'S', 'height': 73.0, 'weight': '200', 'compRating': '0.9266', 'compStars': 4, 'nationalRank': '177', 'positionRank': '11', 'stateRank': '14', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '145', '247positionRank': '10', '247stateRank': '10'}, {'school': 'tennessee', 'year': '2014', 'playerName': 'Daniel Helm', 'highSchool': 'Glenwood', 'city': 'Chatham', 'state': 'IL', 'position': 'TE', 'height': 76.0, 'weight': '225', 'compRating': '0.9182', 'compStars': 4, 'nationalRank': '208', 'positionRank': '5', 'stateRank': '8', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '13', '247stateRank': '16'}, {'school': 'tennessee', 'year': '2014', 'playerName': 'Derek Barnett', 'highSchool': 'Brentwood Academy', 'city': 'Brentwood', 'state': 'TN', 'position': 'SDE', 'height': 75.5, 'weight': '275', 'compRating': '0.9181', 'compStars': 4, 'nationalRank': '209', 'positionRank': '13', 'stateRank': '5', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '152', '247positionRank': '8', '247stateRank': '4'}, {'school': 'tennessee', 'year': '2014', 'playerName': 'Dontavius Blair', 'highSchool': 'Garden City C.C.', 'city': 'Garden City', 'state': 'KS', 'position': 'OT', 'height': 80.0, 'weight': '303', 'compRating': '0.9100', 'compStars': 4, 'nationalRank': '8', 'positionRank': '4', 'stateRank': '2', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '14', '247positionRank': '6', '247stateRank': '3'}, {'school': 'tennessee', 'year': '2014', 'playerName': "D'Andre Payne", 'highSchool': 'Woodson H.D.', 'city': 'Washington', 'state': 'DC', 'position': 'CB', 'height': 69.5, 'weight': '175', 'compRating': '0.9019', 'compStars': 4, 'nationalRank': '258', 'positionRank': '22', 'stateRank': '2', '247Rating': ' 83 ', '247Stars': 3, '247nationalRank': '157', '247positionRank': '18', '247stateRank': '14'}, {'school': 'tennessee', 'year': '2014', 'playerName': 'Gavin Bryant', 'highSchool': 'Jackson', 'city': 'Jackson', 'state': 'AL', 'position': 'ILB', 'height': 73.5, 'weight': '230', 'compRating': '0.9014', 'compStars': 4, 'nationalRank': '262', 'positionRank': '10', 'stateRank': '9', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '242', '247positionRank': '10', '247stateRank': '10'}, {'school': 'tennessee', 'year': '2014', 'playerName': 'Chris Weatherd', 'highSchool': 'Trinity Valley C.C.', 'city': 'Athens', 'state': 'TX', 'position': 'OLB', 'height': 75.5, 'weight': '220', 'compRating': '0.8969', 'compStars': 4, 'nationalRank': '19', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 90 ', '247Stars': 4, '247nationalRank': '28', '247positionRank': '1', '247stateRank': '1'}, {'school': 'tennessee', 'year': '2014', 'playerName': 'Evan Berry', 'highSchool': 'Creekside', 'city': 'Fairburn', 'state': 'GA', 'position': 'ATH', 'height': 71.0, 'weight': '195', 'compRating': '0.8957', 'compStars': 4, 'nationalRank': '291', 'positionRank': '28', 'stateRank': '21', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '39', '247stateRank': '46'}, {'school': 'tennessee', 'year': '2014', 'playerName': 'Charles Mosley', 'highSchool': 'Brighton', 'city': 'Brighton', 'state': 'TN', 'position': 'DT', 'height': 77.0, 'weight': '350', 'compRating': '0.8948', 'compStars': 4, 'nationalRank': '294', 'positionRank': '23', 'stateRank': '6', '247Rating': ' 92 ', '247Stars': 4, '247positionRank': '20', '247stateRank': '6'}, {'school': 'tennessee', 'year': '2014', 'playerName': 'Ethan Wolf', 'highSchool': 'Minster', 'city': 'Minster', 'state': 'OH', 'position': 'TE', 'height': 77.5, 'weight': '247', 'compRating': '0.8890', 'compStars': 3, 'nationalRank': '337', 'positionRank': '14', 'stateRank': '16', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '18', '247stateRank': '22'}, {'school': 'tennessee', 'year': '2014', 'playerName': 'Michael Sawyers', 'highSchool': 'Ensworth', 'city': 'Nashville', 'state': 'TN', 'position': 'DT', 'height': 74.0, 'weight': '300', 'compRating': '0.8830', 'compStars': 3, 'nationalRank': '379', 'positionRank': '30', 'stateRank': '8'}, {'school': 'tennessee', 'year': '2014', 'playerName': 'Joe Henderson', 'highSchool': 'Shaker Heights', 'city': 'Cleveland', 'state': 'OH', 'position': 'WDE', 'height': 75.0, 'weight': '240', 'compRating': '0.8816', 'compStars': 3, 'nationalRank': '389', 'positionRank': '20', 'stateRank': '20'}, {'school': 'tennessee', 'year': '2014', 'playerName': 'Rashaan Gaulden', 'highSchool': 'Independence', 'city': "Thompson's Station", 'state': 'TN', 'position': 'S', 'height': 73.0, 'weight': '178', 'compRating': '0.8773', 'compStars': 3, 'nationalRank': '420', 'positionRank': '32', 'stateRank': '9', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '30', '247stateRank': '9'}, {'school': 'tennessee', 'year': '2014', 'playerName': 'Treyvon Paulk', 'highSchool': 'Milton', 'city': 'Alpharetta', 'state': 'GA', 'position': 'RB', 'height': 69.0, 'weight': '203', 'compRating': '0.8737', 'compStars': 3, 'nationalRank': '444', 'positionRank': '29', 'stateRank': '33'}, {'school': 'tennessee', 'year': '2014', 'playerName': 'Vic Wharton', 'highSchool': 'Independence', 'city': "Thompson's Station", 'state': 'TN', 'position': 'ATH', 'height': 71.0, 'weight': '193', 'compRating': '0.8692', 'compStars': 3, 'nationalRank': '495', 'positionRank': '44', 'stateRank': '10', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '72', '247stateRank': '17'}, {'school': 'tennessee', 'year': '2014', 'playerName': 'Jashon Robertson', 'highSchool': 'Montgomery Bell Academy', 'city': 'Nashville', 'state': 'TN', 'position': 'OG', 'height': 75.0, 'weight': '295', 'compRating': '0.8625', 'compStars': 3, 'nationalRank': '570', 'positionRank': '30', 'stateRank': '11', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '29', '247stateRank': '10'}, {'school': 'tennessee', 'year': '2014', 'playerName': 'Dimarya Mixon', 'highSchool': 'West Mesquite', 'city': 'Mesquite', 'state': 'TX', 'position': 'DT', 'height': 75.5, 'weight': '265', 'compRating': '0.8618', 'compStars': 3, 'nationalRank': '585', 'positionRank': '40', 'stateRank': '74', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '41', '247stateRank': '66'}, {'school': 'tennessee', 'year': '2014', 'playerName': 'Coleman Thomas', 'highSchool': 'Fort Chiswell', 'city': 'Max Meadows', 'state': 'VA', 'position': 'OC', 'height': 78.0, 'weight': '297', 'compRating': '0.8583', 'compStars': 3, 'nationalRank': '647', 'positionRank': '8', 'stateRank': '25', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '10', '247stateRank': '26'}, {'school': 'tennessee', 'year': '2014', 'playerName': 'Neiko Creamer', 'highSchool': 'Eastern Christian', 'city': 'Elkton', 'state': 'MD', 'position': 'ATH', 'height': 75.0, 'weight': '218', 'compRating': '0.8583', 'compStars': 3, 'nationalRank': '648', 'positionRank': '52', 'stateRank': '17', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '64', '247stateRank': '22'}, {'school': 'tennessee', 'year': '2014', 'playerName': 'Jakob Johnson', 'highSchool': 'Jean Ribault', 'city': 'Jacksonville', 'state': 'FL', 'position': 'ILB', 'height': 75.5, 'weight': '236', 'compRating': '0.8582', 'compStars': 3, 'nationalRank': '650', 'positionRank': '28', 'stateRank': '89', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '12', '247stateRank': '37'}, {'school': 'tennessee', 'year': '2014', 'playerName': 'Elliott Berry', 'highSchool': 'Creekside', 'city': 'Fairburn', 'state': 'GA', 'position': 'OLB', 'height': 71.5, 'weight': '206', 'compRating': '0.8527', 'compStars': 3, 'nationalRank': '758', 'positionRank': '63', 'stateRank': '69', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '70', '247stateRank': '86'}, {'school': 'tennessee', 'year': '2014', 'playerName': 'Ray Raulerson', 'highSchool': 'Plant', 'city': 'Tampa', 'state': 'FL', 'position': 'OT', 'height': 76.0, 'weight': '278', 'compRating': '0.8472', 'compStars': 3, 'nationalRank': '864', 'positionRank': '78', 'stateRank': '125', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '82', '247stateRank': '119'}, {'school': 'tennessee', 'year': '2014', 'playerName': 'Emmanuel Moseley', 'highSchool': 'Dudley', 'city': 'Greensboro', 'state': 'NC', 'position': 'CB', 'height': 72.0, 'weight': '160', 'compRating': '0.8463', 'compStars': 3, 'nationalRank': '880', 'positionRank': '61', 'stateRank': '29', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '82', '247stateRank': '30'}, {'school': 'tennessee', 'year': '2014', 'playerName': 'Owen Williams', 'highSchool': 'Butler C.C.', 'city': 'El Dorado', 'state': 'KS', 'position': 'DT', 'height': 73.0, 'weight': '280', 'compRating': '0.8443', 'compStars': 3, 'nationalRank': '115', 'positionRank': '17', 'stateRank': '17', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '63', '247positionRank': '14', '247stateRank': '12'}, {'school': 'tennessee', 'year': '2014', 'playerName': 'Aaron Medley', 'highSchool': 'Marshall County', 'city': 'Lewisburg', 'state': 'TN', 'position': 'K', 'height': 75.0, 'weight': '180', 'compRating': '0.8318', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '4', 'stateRank': '21', '247Rating': ' 78 ', '247Stars': 2, '247positionRank': '10', '247stateRank': '38'}, {'school': 'lsu', 'year': '2010', 'playerName': 'Eric Reid', 'highSchool': 'Dutchtown', 'city': 'Geismar', 'state': 'LA', 'position': 'S', 'height': 74.0, 'weight': '210', 'compRating': '0.9707', 'compStars': 4, 'nationalRank': '57', 'positionRank': '6', 'stateRank': '2', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '81', '247positionRank': '8', '247stateRank': '2'}, {'school': 'lsu', 'year': '2010', 'playerName': 'Ego Ferguson', 'highSchool': 'Hargrave Military Academy', 'city': 'None', 'state': 'None', 'position': 'SDE', 'height': 75.0, 'weight': '272', 'compRating': '0.9629', 'compStars': 4, 'nationalRank': '78', 'positionRank': '7', 'stateRank': '3', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '129', '247positionRank': '10', '247stateRank': '3'}, {'school': 'lsu', 'year': '2010', 'playerName': 'Spencer Ware', 'highSchool': 'Princeton', 'city': 'Cincinnati', 'state': 'OH', 'position': 'ATH', 'height': 71.0, 'weight': '223', 'compRating': '0.9593', 'compStars': 4, 'nationalRank': '85', 'positionRank': '9', 'stateRank': '3', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '49', '247positionRank': '4', '247stateRank': '4'}, {'school': 'lsu', 'year': '2010', 'playerName': 'Kadron Boone', 'highSchool': 'Trinity Catholic', 'city': 'Ocala', 'state': 'FL', 'position': 'WR', 'height': 73.0, 'weight': '190', 'compRating': '0.9560', 'compStars': 4, 'nationalRank': '91', 'positionRank': '11', 'stateRank': '17', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '139', '247positionRank': '17', '247stateRank': '22'}, {'school': 'lsu', 'year': '2010', 'playerName': 'Tharold Simon', 'highSchool': 'Eunice', 'city': 'Eunice', 'state': 'LA', 'position': 'ATH', 'height': 76.0, 'weight': '185', 'compRating': '0.9409', 'compStars': 4, 'nationalRank': '125', 'positionRank': '12', 'stateRank': '3', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '181', '247positionRank': '15', '247stateRank': '5'}, {'school': 'lsu', 'year': '2010', 'playerName': 'Justin Maclin', 'highSchool': 'Ridgeway', 'city': 'Memphis', 'state': 'TN', 'position': 'WDE', 'height': 76.0, 'weight': '215', 'compRating': '0.9262', 'compStars': 4, 'nationalRank': '168', 'positionRank': '8', 'stateRank': '4', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '124', '247positionRank': '4', '247stateRank': '1'}, {'school': 'lsu', 'year': '2010', 'playerName': 'Evan Washington', 'highSchool': 'DeSoto', 'city': 'DeSoto', 'state': 'TX', 'position': 'OT', 'height': 77.0, 'weight': '290', 'compRating': '0.9256', 'compStars': 4, 'nationalRank': '171', 'positionRank': '18', 'stateRank': '23', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '170', '247positionRank': '19', '247stateRank': '29'}, {'school': 'lsu', 'year': '2010', 'playerName': 'Jordan Allen', 'highSchool': 'West Monroe', 'city': 'West Monroe', 'state': 'LA', 'position': 'SDE', 'height': 78.0, 'weight': '266', 'compRating': '0.9261', 'compStars': 4, 'nationalRank': '169', 'positionRank': '14', 'stateRank': '4', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '224', '247positionRank': '18', '247stateRank': '7'}, {'school': 'lsu', 'year': '2010', 'playerName': 'Travis Dickson', 'highSchool': 'Ocean Springs', 'city': 'Pascagoula', 'state': 'MS', 'position': 'TE', 'height': 75.0, 'weight': '235', 'compRating': '0.9208', 'compStars': 4, 'nationalRank': '190', 'positionRank': '9', 'stateRank': '4', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '236', '247positionRank': '11', '247stateRank': '5'}, {'school': 'lsu', 'year': '2010', 'playerName': 'Ronnie Vinson', 'highSchool': 'Isidore Newman', 'city': 'New Orleans', 'state': 'LA', 'position': 'ATH', 'height': 71.0, 'weight': '186', 'compRating': '0.9158', 'compStars': 4, 'nationalRank': '210', 'positionRank': '14', 'stateRank': '5', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '147', '247positionRank': '13', '247stateRank': '4'}, {'school': 'lsu', 'year': '2010', 'playerName': 'Tyrann Mathieu', 'highSchool': 'St. Augustine', 'city': 'New Orleans', 'state': 'LA', 'position': 'CB', 'height': 70.0, 'weight': '175', 'compRating': '0.9132', 'compStars': 4, 'nationalRank': '218', 'positionRank': '15', 'stateRank': '6', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '133', '247positionRank': '6', '247stateRank': '3'}, {'school': 'lsu', 'year': '2010', 'playerName': 'Jakhari Gore', 'highSchool': 'Columbus', 'city': 'Miami', 'state': 'FL', 'position': 'APB', 'height': 70.0, 'weight': '170', 'compRating': '0.9008', 'compStars': 4, 'nationalRank': '275', 'positionRank': '7', 'stateRank': '36', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2010', 'playerName': 'James Wright', 'highSchool': 'Belle Chasse', 'city': 'Belle Chasse', 'state': 'LA', 'position': 'WR', 'height': 74.0, 'weight': '180', 'compRating': '0.8938', 'compStars': 4, 'nationalRank': '321', 'positionRank': '45', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2010', 'playerName': 'J.C. Copeland', 'highSchool': 'Troup County', 'city': 'Lagrange', 'state': 'GA', 'position': 'WDE', 'height': 74.0, 'weight': '240', 'compRating': '0.8906', 'compStars': 4, 'nationalRank': '336', 'positionRank': '23', 'stateRank': '30', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2010', 'playerName': 'Jarrett Fobbs', 'highSchool': 'Huntington', 'city': 'Shreveport', 'state': 'LA', 'position': 'ATH', 'height': 71.0, 'weight': '180', 'compRating': '0.8844', 'compStars': 3, 'nationalRank': '395', 'positionRank': '29', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2010', 'playerName': 'Zach Lee', 'highSchool': 'McKinney', 'city': 'McKinney', 'state': 'TX', 'position': 'PRO', 'height': 76.0, 'weight': '195', 'compRating': '0.8780', 'compStars': 3, 'nationalRank': '443', 'positionRank': '21', 'stateRank': '66', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2010', 'playerName': 'Elliott Porter', 'highSchool': 'Archbishop Shaw', 'city': 'Marrero', 'state': 'LA', 'position': 'OG', 'height': 76.0, 'weight': '280', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '446', 'positionRank': '22', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2010', 'playerName': 'Nic Jacobs', 'highSchool': 'Many', 'city': 'Many', 'state': 'LA', 'position': 'TE', 'height': 77.0, 'weight': '245', 'compRating': '0.8706', 'compStars': 3, 'nationalRank': '550', 'positionRank': '22', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2010', 'playerName': 'Sam Gibson', 'highSchool': 'Prattville', 'city': 'Prattville', 'state': 'AL', 'position': 'ATH', 'height': 74.0, 'weight': '200', 'compRating': '0.8701', 'compStars': 3, 'nationalRank': '578', 'positionRank': '38', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2010', 'playerName': 'Luke Muncie', 'highSchool': 'Klein Oak', 'city': 'Spring', 'state': 'TX', 'position': 'OLB', 'height': 75.0, 'weight': '215', 'compRating': '0.8684', 'compStars': 3, 'nationalRank': '594', 'positionRank': '36', 'stateRank': '97', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2010', 'playerName': 'Armand Williams', 'highSchool': 'Slidell', 'city': 'Slidell', 'state': 'LA', 'position': 'WR', 'height': 75.0, 'weight': '185', 'compRating': '0.8653', 'compStars': 3, 'nationalRank': '678', 'positionRank': '92', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2010', 'playerName': 'Brandon Worle', 'highSchool': 'Troup County', 'city': 'Lagrange', 'state': 'GA', 'position': 'FB', 'height': 73.0, 'weight': '227', 'compRating': '0.8622', 'compStars': 3, 'nationalRank': '731', 'positionRank': '3', 'stateRank': '63', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2010', 'playerName': 'D.J. Welter', 'highSchool': 'Notre Dame', 'city': 'Crowley', 'state': 'LA', 'position': 'OLB', 'height': 73.0, 'weight': '225', 'compRating': '0.8622', 'compStars': 3, 'nationalRank': '733', 'positionRank': '49', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2010', 'playerName': 'Cameron Fordham', 'highSchool': 'Northview', 'city': 'Duluth', 'state': 'GA', 'position': 'TE', 'height': 76.0, 'weight': '243', 'compRating': '0.8622', 'compStars': 3, 'nationalRank': '749', 'positionRank': '29', 'stateRank': '65', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2010', 'playerName': 'Alfred Blue', 'highSchool': 'Hahnville', 'city': 'Boutte', 'state': 'LA', 'position': 'RB', 'height': 74.0, 'weight': '203', 'compRating': '0.8622', 'compStars': 3, 'nationalRank': '758', 'positionRank': '66', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2010', 'playerName': 'Ken Adams', 'highSchool': 'Copiah-Lincoln C.C.', 'city': 'Wesson', 'state': 'MS', 'position': 'TE', 'height': 77.0, 'weight': '240', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '49', 'positionRank': '1', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2010', 'playerName': 'Brad Wing', 'highSchool': 'Parkview Baptist School', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'K', 'height': 75.0, 'weight': '175', 'compRating': '0.8417', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '12', 'stateRank': '35', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2014', 'playerName': 'Myles Garrett', 'highSchool': 'Martin', 'city': 'Arlington', 'state': 'TX', 'position': 'WDE', 'height': 76.0, 'weight': '240', 'compRating': '0.9993', 'compStars': 5, 'nationalRank': '2', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 101 ', '247Stars': 5, '247nationalRank': '1', '247positionRank': '1', '247stateRank': '1'}, {'school': 'texas-am', 'year': '2014', 'playerName': 'Kyle Allen', 'highSchool': 'Desert Mountain', 'city': 'Scottsdale', 'state': 'AZ', 'position': 'PRO', 'height': 75.0, 'weight': '200', 'compRating': '0.9956', 'compStars': 5, 'nationalRank': '8', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 100 ', '247Stars': 5, '247nationalRank': '5', '247positionRank': '1', '247stateRank': '1'}, {'school': 'texas-am', 'year': '2014', 'playerName': 'Speedy Noil', 'highSchool': 'Edna Karr', 'city': 'New Orleans', 'state': 'LA', 'position': 'WR', 'height': 70.5, 'weight': '176', 'compRating': '0.9952', 'compStars': 5, 'nationalRank': '10', 'positionRank': '1', 'stateRank': '3', '247Rating': ' 100 ', '247Stars': 5, '247nationalRank': '6', '247positionRank': '1', '247stateRank': '3'}, {'school': 'texas-am', 'year': '2014', 'playerName': 'Nick Harvey', 'highSchool': 'Fort Bend Travis', 'city': 'Richmond', 'state': 'TX', 'position': 'CB', 'height': 69.0, 'weight': '175', 'compRating': '0.9708', 'compStars': 4, 'nationalRank': '60', 'positionRank': '7', 'stateRank': '8', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '114', '247positionRank': '11', '247stateRank': '13'}, {'school': 'texas-am', 'year': '2014', 'playerName': 'Frank Iheanacho', 'highSchool': 'Westside', 'city': 'Houston', 'state': 'TX', 'position': 'WR', 'height': 78.0, 'weight': '220', 'compRating': '0.9604', 'compStars': 4, 'nationalRank': '88', 'positionRank': '13', 'stateRank': '12', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '84', '247positionRank': '11', '247stateRank': '9'}, {'school': 'texas-am', 'year': '2014', 'playerName': 'DeShawn Washington', 'highSchool': 'Nederland', 'city': 'Nederland', 'state': 'TX', 'position': 'DT', 'height': 75.0, 'weight': '277', 'compRating': '0.9358', 'compStars': 4, 'nationalRank': '148', 'positionRank': '11', 'stateRank': '17', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '32', '247stateRank': '43'}, {'school': 'texas-am', 'year': '2014', 'playerName': 'Qualen Cunningham', 'highSchool': 'Hamilton', 'city': 'Chandler', 'state': 'AZ', 'position': 'WDE', 'height': 76.0, 'weight': '220', 'compRating': '0.9323', 'compStars': 4, 'nationalRank': '157', 'positionRank': '8', 'stateRank': '6', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '167', '247positionRank': '9', '247stateRank': '4'}, {'school': 'texas-am', 'year': '2014', 'playerName': 'Otaro Alaka', 'highSchool': 'Cy Falls', 'city': 'Houston', 'state': 'TX', 'position': 'OLB', 'height': 75.0, 'weight': '205', 'compRating': '0.9304', 'compStars': 4, 'nationalRank': '162', 'positionRank': '12', 'stateRank': '18', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '223', '247positionRank': '16', '247stateRank': '26'}, {'school': 'texas-am', 'year': '2014', 'playerName': 'Armani Watts', 'highSchool': 'North Forney', 'city': 'Forney', 'state': 'TX', 'position': 'S', 'height': 70.5, 'weight': '179', 'compRating': '0.9201', 'compStars': 4, 'nationalRank': '201', 'positionRank': '14', 'stateRank': '24', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '154', '247positionRank': '12', '247stateRank': '17'}, {'school': 'texas-am', 'year': '2014', 'playerName': 'Jermaine Eluemunor', 'highSchool': 'Lackawanna C.C.', 'city': 'Scranton', 'state': 'PA', 'position': 'OT', 'height': 77.0, 'weight': '300', 'compRating': '0.9144', 'compStars': 4, 'nationalRank': '7', 'positionRank': '3', 'stateRank': '1', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '2', '247positionRank': '1', '247stateRank': '1'}, {'school': 'texas-am', 'year': '2014', 'playerName': 'Zaycoven Henderson', 'highSchool': 'Longview', 'city': 'Longview', 'state': 'TX', 'position': 'DT', 'height': 73.0, 'weight': '280', 'compRating': '0.9118', 'compStars': 4, 'nationalRank': '226', 'positionRank': '19', 'stateRank': '28', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '26', '247stateRank': '37'}, {'school': 'texas-am', 'year': '2014', 'playerName': 'Josh Walker', 'highSchool': 'Gilmer', 'city': 'Gilmer', 'state': 'TX', 'position': 'OLB', 'height': 73.0, 'weight': '220', 'compRating': '0.9095', 'compStars': 4, 'nationalRank': '234', 'positionRank': '21', 'stateRank': '29', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '179', '247positionRank': '11', '247stateRank': '22'}, {'school': 'texas-am', 'year': '2014', 'playerName': 'Avery Gennesy', 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'OT', 'height': 77.0, 'weight': '307', 'compRating': '0.9069', 'compStars': 4, 'nationalRank': '9', 'positionRank': '5', 'stateRank': '2', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '12', '247positionRank': '5', '247stateRank': '2'}, {'school': 'texas-am', 'year': '2014', 'playerName': 'Jarrett Johnson', 'highSchool': 'Seven Lakes', 'city': 'Katy', 'state': 'TX', 'position': 'WDE', 'height': 75.0, 'weight': '226', 'compRating': '0.8916', 'compStars': 4, 'nationalRank': '320', 'positionRank': '16', 'stateRank': '38', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '22', '247stateRank': '40'}, {'school': 'texas-am', 'year': '2014', 'playerName': 'Zach Ledwik', 'highSchool': 'La Grange', 'city': 'La Grange', 'state': 'TX', 'position': 'OT', 'height': 76.5, 'weight': '271', 'compRating': '0.8893', 'compStars': 3, 'nationalRank': '335', 'positionRank': '29', 'stateRank': '39', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '73', '247stateRank': '94'}, {'school': 'texas-am', 'year': '2014', 'playerName': 'Josh Reynolds', 'highSchool': 'Tyler J.C.', 'city': 'Tyler', 'state': 'TX', 'position': 'WR', 'height': 74.5, 'weight': '185', 'compRating': '0.8746', 'compStars': 3, 'nationalRank': '38', 'positionRank': '5', 'stateRank': '3', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '101', '247stateRank': '112'}, {'school': 'texas-am', 'year': '2014', 'playerName': 'Koda Martin', 'highSchool': 'Manvel', 'city': 'Manvel', 'state': 'TX', 'position': 'OT', 'height': 78.5, 'weight': '245', 'compRating': '0.8696', 'compStars': 3, 'nationalRank': '490', 'positionRank': '41', 'stateRank': '60', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '47', '247stateRank': '47'}, {'school': 'texas-am', 'year': '2014', 'playerName': 'Tank Davis', 'highSchool': 'Lakeview Centennial', 'city': 'Garland', 'state': 'TX', 'position': 'OT', 'height': 76.5, 'weight': '247', 'compRating': '0.8630', 'compStars': 3, 'nationalRank': '565', 'positionRank': '52', 'stateRank': '71', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '72', '247stateRank': '92'}, {'school': 'texas-am', 'year': '2014', 'playerName': 'Jamal Jeffery', 'highSchool': 'Lufkin', 'city': 'Lufkin', 'state': 'TX', 'position': 'WR', 'height': 69.0, 'weight': '168', 'compRating': '0.8600', 'compStars': 3, 'nationalRank': '606', 'positionRank': '85', 'stateRank': '75', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '81', '247stateRank': '73'}, {'school': 'texas-am', 'year': '2014', 'playerName': 'Donovan Wilson', 'highSchool': 'Woodlawn', 'city': 'Shreveport', 'state': 'LA', 'position': 'S', 'height': 72.5, 'weight': '180', 'compRating': '0.8390', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '88', 'stateRank': '42', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '103', '247stateRank': '45'}, {'school': 'texas-am', 'year': '2014', 'playerName': 'Darrell Jackson', 'highSchool': 'Blinn College', 'city': 'Brenham', 'state': 'TX', 'position': 'WDE', 'height': 76.5, 'weight': '224', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '141', 'positionRank': '8', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2014', 'playerName': 'Cedric Collins', 'highSchool': 'Skyline', 'city': 'Dallas', 'state': 'TX', 'position': 'CB', 'height': 70.0, 'weight': '175', 'compRating': '0.8344', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '88', 'stateRank': '144'}, {'school': 'auburn', 'year': '2018', 'playerName': 'Joey Gatewood', 'highSchool': 'Bartram Trail', 'city': 'Jacksonville', 'state': 'FL', 'position': 'ATH', 'height': 76.0, 'weight': '232', 'compRating': '0.9759', 'compStars': 4, 'nationalRank': '49', 'positionRank': '1', 'stateRank': '9', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '91', '247positionRank': '2', '247stateRank': '12'}, {'school': 'auburn', 'year': '2018', 'playerName': 'Matthew Hill', 'highSchool': 'Brookwood', 'city': 'Snellville', 'state': 'GA', 'position': 'WR', 'height': 74.0, 'weight': '185', 'compRating': '0.9562', 'compStars': 4, 'nationalRank': '92', 'positionRank': '17', 'stateRank': '13', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '102', '247positionRank': '16', '247stateRank': '14'}, {'school': 'auburn', 'year': '2018', 'playerName': 'Coynis Miller', 'highSchool': 'Jackson-Olin', 'city': 'Birmingham', 'state': 'AL', 'position': 'DT', 'height': 73.5, 'weight': '300', 'compRating': '0.9475', 'compStars': 4, 'nationalRank': '120', 'positionRank': '10', 'stateRank': '3', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '100', '247positionRank': '8', '247stateRank': '2'}, {'school': 'auburn', 'year': '2018', 'playerName': 'Harold Joiner', 'highSchool': 'Mountain Brook', 'city': 'Birmingham', 'state': 'AL', 'position': 'RB', 'height': 75.0, 'weight': '218', 'compRating': '0.9375', 'compStars': 4, 'nationalRank': '152', 'positionRank': '5', 'stateRank': '4', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '133', '247positionRank': '5', '247stateRank': '4'}, {'school': 'auburn', 'year': '2018', 'playerName': 'Smoke Monday', 'highSchool': 'Carver', 'city': 'Atlanta', 'state': 'GA', 'position': 'ATH', 'height': 75.0, 'weight': '185', 'compRating': '0.9360', 'compStars': 4, 'nationalRank': '158', 'positionRank': '6', 'stateRank': '21', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '180', '247positionRank': '9', '247stateRank': '20'}, {'school': 'auburn', 'year': '2018', 'playerName': 'Anthony Schwartz', 'highSchool': 'American Heritage', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'WR', 'height': 72.0, 'weight': '172', 'compRating': '0.9334', 'compStars': 4, 'nationalRank': '163', 'positionRank': '30', 'stateRank': '28', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '74', '247stateRank': '58'}, {'school': 'auburn', 'year': '2018', 'playerName': 'Seth Williams', 'highSchool': 'Paul W Bryant', 'city': 'Cottondale', 'state': 'AL', 'position': 'WR', 'height': 75.0, 'weight': '212', 'compRating': '0.9259', 'compStars': 4, 'nationalRank': '185', 'positionRank': '35', 'stateRank': '5', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '236', '247positionRank': '39', '247stateRank': '7'}, {'school': 'auburn', 'year': '2018', 'playerName': 'Zakoby McClain', 'highSchool': 'Valdosta', 'city': 'Valdosta', 'state': 'GA', 'position': 'OLB', 'height': 72.0, 'weight': '205', 'compRating': '0.9221', 'compStars': 4, 'nationalRank': '197', 'positionRank': '13', 'stateRank': '24', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '163', '247positionRank': '13', '247stateRank': '18'}, {'school': 'auburn', 'year': '2018', 'playerName': 'Asa Martin', 'highSchool': 'Austin', 'city': 'Decatur', 'state': 'AL', 'position': 'RB', 'height': 71.5, 'weight': '200', 'compRating': '0.9207', 'compStars': 4, 'nationalRank': '202', 'positionRank': '9', 'stateRank': '6', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '10', '247stateRank': '8'}, {'school': 'auburn', 'year': '2018', 'playerName': 'Jamien Sherwood', 'highSchool': 'Jensen Beach', 'city': 'Jensen Beach', 'state': 'FL', 'position': 'S', 'height': 74.0, 'weight': '195', 'compRating': '0.9079', 'compStars': 4, 'nationalRank': '257', 'positionRank': '21', 'stateRank': '47', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '182', '247positionRank': '15', '247stateRank': '23'}, {'school': 'auburn', 'year': '2018', 'playerName': 'Christian Tutt', 'highSchool': 'Thomson', 'city': 'Thomson', 'state': 'GA', 'position': 'CB', 'height': 70.5, 'weight': '193', 'compRating': '0.9045', 'compStars': 4, 'nationalRank': '276', 'positionRank': '28', 'stateRank': '30', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '36', '247stateRank': '38'}, {'school': 'auburn', 'year': '2018', 'playerName': 'Michael Harris', 'highSchool': 'Tucker', 'city': 'Tucker', 'state': 'GA', 'position': 'ILB', 'height': 74.0, 'weight': '213', 'compRating': '0.9033', 'compStars': 4, 'nationalRank': '281', 'positionRank': '15', 'stateRank': '32', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '247', '247positionRank': '14', '247stateRank': '26'}, {'school': 'auburn', 'year': '2018', 'playerName': 'Richard Jibunor', 'highSchool': 'Athens Christian', 'city': 'Athens', 'state': 'GA', 'position': 'ATH', 'height': 75.0, 'weight': '206', 'compRating': '0.8985', 'compStars': 4, 'nationalRank': '309', 'positionRank': '13', 'stateRank': '35', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '14', '247stateRank': '27'}, {'school': 'auburn', 'year': '2018', 'playerName': 'Daquan Newkirk', 'highSchool': 'Mississippi Gulf Coast C.C.', 'city': 'Perkinston', 'state': 'MS', 'position': 'DT', 'height': 75.0, 'weight': '282', 'compRating': '0.8959', 'compStars': 4, 'nationalRank': '15', 'positionRank': '6', 'stateRank': '4', '247Rating': ' 90 ', '247Stars': 4, '247nationalRank': '14', '247positionRank': '5', '247stateRank': '7'}, {'school': 'auburn', 'year': '2018', 'playerName': 'Shaun Shivers', 'highSchool': 'Chaminade-Madonna Prep', 'city': 'Hollywood', 'state': 'FL', 'position': 'APB', 'height': 67.0, 'weight': '174', 'compRating': '0.8939', 'compStars': 4, 'nationalRank': '344', 'positionRank': '10', 'stateRank': '59', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '16', '247stateRank': '71'}, {'school': 'auburn', 'year': '2018', 'playerName': 'Shedrick Jackson', 'highSchool': 'Hoover', 'city': 'Hoover', 'state': 'AL', 'position': 'WR', 'height': 73.5, 'weight': '195', 'compRating': '0.8884', 'compStars': 3, 'nationalRank': '392', 'positionRank': '67', 'stateRank': '12', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '54', '247stateRank': '9'}, {'school': 'auburn', 'year': '2018', 'playerName': 'Jalil Irvin', 'highSchool': 'Stephenson', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'OG', 'height': 75.0, 'weight': '296', 'compRating': '0.8804', 'compStars': 3, 'nationalRank': '482', 'positionRank': '22', 'stateRank': '49', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '30', '247stateRank': '78'}, {'school': 'auburn', 'year': '2018', 'playerName': 'Caleb Johnson', 'highSchool': 'Northside', 'city': 'Columbus', 'state': 'GA', 'position': 'WDE', 'height': 75.5, 'weight': '250', 'compRating': '0.8738', 'compStars': 3, 'nationalRank': '579', 'positionRank': '30', 'stateRank': '61', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '34', '247stateRank': '68'}, {'school': 'auburn', 'year': '2018', 'playerName': 'Kameron Stutts', 'highSchool': 'Brooks', 'city': 'Killen', 'state': 'AL', 'position': 'OT', 'height': 76.0, 'weight': '329', 'compRating': '0.8735', 'compStars': 3, 'nationalRank': '583', 'positionRank': '46', 'stateRank': '17', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '32', '247stateRank': '12'}, {'school': 'auburn', 'year': '2018', 'playerName': 'Kolbi Fuqua', 'highSchool': 'Cordova', 'city': 'Cordova', 'state': 'AL', 'position': 'ATH', 'height': 73.0, 'weight': '210', 'compRating': '0.8601', 'compStars': 3, 'nationalRank': '817', 'positionRank': '70', 'stateRank': '28', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '76', '247stateRank': '33'}, {'school': 'auburn', 'year': '2018', 'playerName': 'Roger McCreary', 'highSchool': 'Williamson', 'city': 'Mobile', 'state': 'AL', 'position': 'CB', 'height': 71.0, 'weight': '178', 'compRating': '0.8532', 'compStars': 3, 'nationalRank': '989', 'positionRank': '87', 'stateRank': '34', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '58', '247stateRank': '18'}, {'school': 'auburn', 'year': '2018', 'playerName': 'Josh Marsh', 'highSchool': 'Decatur', 'city': 'Decatur', 'state': 'AL', 'position': 'OLB', 'height': 73.5, 'weight': '215', 'compRating': '0.8456', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '81', 'stateRank': '41', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '58', '247stateRank': '30'}, {'school': 'auburn', 'year': '2018', 'playerName': 'Arryn Siposs', 'highSchool': 'ProKick Australia', 'city': 'Australia', 'state': 'AUST', 'position': 'P', 'height': 74.0, 'weight': '198', 'compRating': '0.8161', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '6', 'stateRank': '3', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '4', '247stateRank': '3'}, {'school': 'georgia', 'year': '2019', 'playerName': 'Nolan Smith', 'highSchool': 'IMG Academy', 'city': 'Bradenton', 'state': 'FL', 'position': 'WDE', 'height': 75.0, 'weight': '227', 'compRating': '0.9994', 'compStars': 5, 'nationalRank': '1', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 100 ', '247Stars': 5, '247nationalRank': '4', '247positionRank': '1', '247stateRank': '1'}, {'school': 'georgia', 'year': '2019', 'playerName': 'Nakobe Dean', 'highSchool': 'Horn Lake', 'city': 'Horn Lake', 'state': 'MS', 'position': 'ILB', 'height': 72.0, 'weight': '220', 'compRating': '0.9908', 'compStars': 5, 'nationalRank': '19', 'positionRank': '2', 'stateRank': '1', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '21', '247positionRank': '2', '247stateRank': '2'}, {'school': 'georgia', 'year': '2019', 'playerName': 'Travon Walker', 'highSchool': 'Upson-Lee', 'city': 'Thomaston', 'state': 'GA', 'position': 'DT', 'height': 77.0, 'weight': '285', 'compRating': '0.9901', 'compStars': 5, 'nationalRank': '22', 'positionRank': '3', 'stateRank': '2', '247Rating': ' 99 ', '247Stars': 5, '247nationalRank': '5', '247positionRank': '2', '247stateRank': '1'}, {'school': 'georgia', 'year': '2019', 'playerName': 'George Pickens', 'highSchool': 'Hoover', 'city': 'Hoover', 'state': 'AL', 'position': 'WR', 'height': 75.5, 'weight': '190', 'compRating': '0.9880', 'compStars': 5, 'nationalRank': '24', 'positionRank': '4', 'stateRank': '1', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '41', '247positionRank': '5', '247stateRank': '1'}, {'school': 'georgia', 'year': '2019', 'playerName': 'Clay Webb', 'highSchool': 'Oxford', 'city': 'Oxford', 'state': 'AL', 'position': 'OC', 'height': 75.0, 'weight': '295', 'compRating': '0.9877', 'compStars': 5, 'nationalRank': '26', 'positionRank': '1', 'stateRank': '2', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '55', '247positionRank': '2', '247stateRank': '2'}, {'school': 'georgia', 'year': '2019', 'playerName': 'Dominick Blaylock', 'highSchool': 'Walton', 'city': 'Marietta', 'state': 'GA', 'position': 'WR', 'height': 73.0, 'weight': '195', 'compRating': '0.9831', 'compStars': 4, 'nationalRank': '36', 'positionRank': '5', 'stateRank': '8', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '44', '247positionRank': '7', '247stateRank': '7'}, {'school': 'georgia', 'year': '2019', 'playerName': 'Tyrique Stevenson', 'highSchool': 'Miami Southridge', 'city': 'Miami', 'state': 'FL', 'position': 'CB', 'height': 72.5, 'weight': '202', 'compRating': '0.9831', 'compStars': 4, 'nationalRank': '37', 'positionRank': '3', 'stateRank': '4', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '20', '247positionRank': '2', '247stateRank': '3'}, {'school': 'georgia', 'year': '2019', 'playerName': 'Lewis Cine', 'highSchool': 'Trinity Christian School', 'city': 'Cedar Hill', 'state': 'TX', 'position': 'S', 'height': 74.0, 'weight': '180', 'compRating': '0.9765', 'compStars': 4, 'nationalRank': '45', 'positionRank': '3', 'stateRank': '7', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '95', '247positionRank': '7', '247stateRank': '18'}, {'school': 'georgia', 'year': '2019', 'playerName': 'Rian Davis', 'highSchool': 'Wekiva', 'city': 'Apopka', 'state': 'FL', 'position': 'OLB', 'height': 73.5, 'weight': '240', 'compRating': '0.9590', 'compStars': 4, 'nationalRank': '89', 'positionRank': '5', 'stateRank': '11', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '103', '247positionRank': '7', '247stateRank': '13'}, {'school': 'georgia', 'year': '2019', 'playerName': 'Trezmen Marshall', 'highSchool': 'Clinch County', 'city': 'Homerville', 'state': 'GA', 'position': 'ILB', 'height': 72.0, 'weight': '236', 'compRating': '0.9464', 'compStars': 4, 'nationalRank': '122', 'positionRank': '7', 'stateRank': '14', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '144', '247positionRank': '8', '247stateRank': '17'}, {'school': 'georgia', 'year': '2019', 'playerName': 'Bill Norton', 'highSchool': 'Christian Brothers', 'city': 'Memphis', 'state': 'TN', 'position': 'SDE', 'height': 78.0, 'weight': '275', 'compRating': '0.9326', 'compStars': 4, 'nationalRank': '161', 'positionRank': '9', 'stateRank': '4', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '100', '247positionRank': '8', '247stateRank': '3'}, {'school': 'georgia', 'year': '2019', 'playerName': 'Jermaine Johnson', 'highSchool': 'Independence C.C.', 'city': 'Independence', 'state': 'KS', 'position': 'WDE', 'height': 78.0, 'weight': '250', 'compRating': '0.9303', 'compStars': 4, 'nationalRank': '1', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '1', '247positionRank': '1', '247stateRank': '1'}, {'school': 'georgia', 'year': '2019', 'playerName': 'Kenny McIntosh', 'highSchool': 'University School', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'RB', 'height': 72.5, 'weight': '218', 'compRating': '0.9233', 'compStars': 4, 'nationalRank': '187', 'positionRank': '11', 'stateRank': '24', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '30', '247stateRank': '41'}, {'school': 'georgia', 'year': '2019', 'playerName': 'Makiya Tongue', 'highSchool': 'University Lab', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'ATH', 'height': 74.0, 'weight': '210', 'compRating': '0.9194', 'compStars': 4, 'nationalRank': '196', 'positionRank': '9', 'stateRank': '12', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '23', '247stateRank': '15'}, {'school': 'georgia', 'year': '2019', 'playerName': 'Xavier Truss', 'highSchool': 'Bishop Hendricken', 'city': 'Warwick', 'state': 'RI', 'position': 'OT', 'height': 78.5, 'weight': '316', 'compRating': '0.9158', 'compStars': 4, 'nationalRank': '214', 'positionRank': '19', 'stateRank': '1', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '188', '247positionRank': '20', '247stateRank': '1'}, {'school': 'georgia', 'year': '2019', 'playerName': 'Warren McClendon', 'highSchool': 'Brunswick', 'city': 'Brunswick', 'state': 'GA', 'position': 'OT', 'height': 76.0, 'weight': '318', 'compRating': '0.9131', 'compStars': 4, 'nationalRank': '227', 'positionRank': '20', 'stateRank': '25', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '243', '247positionRank': '24', '247stateRank': '26'}, {'school': 'georgia', 'year': '2019', 'playerName': 'Ryland Goede', 'highSchool': 'Kennesaw Mountain', 'city': 'Acworth', 'state': 'GA', 'position': 'TE', 'height': 78.0, 'weight': '240', 'compRating': '0.9112', 'compStars': 4, 'nationalRank': '236', 'positionRank': '7', 'stateRank': '27', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '235', '247positionRank': '9', '247stateRank': '23'}, {'school': 'georgia', 'year': '2019', 'playerName': 'DJ Daniel', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'CB', 'height': 72.0, 'weight': '180', 'compRating': '0.9108', 'compStars': 4, 'nationalRank': '6', 'positionRank': '2', 'stateRank': '1', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '6', '247positionRank': '2', '247stateRank': '1'}, {'school': 'georgia', 'year': '2019', 'playerName': "D'Wan Mathis", 'highSchool': 'Oak Park', 'city': 'Oak Park', 'state': 'MI', 'position': 'PRO', 'height': 76.0, 'weight': '197', 'compRating': '0.8992', 'compStars': 4, 'nationalRank': '311', 'positionRank': '11', 'stateRank': '9', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '23', '247stateRank': '22'}, {'school': 'georgia', 'year': '2019', 'playerName': 'Zion Logue', 'highSchool': 'Lebanon', 'city': 'Lebanon', 'state': 'TN', 'position': 'SDE', 'height': 78.0, 'weight': '287', 'compRating': '0.8941', 'compStars': 4, 'nationalRank': '342', 'positionRank': '25', 'stateRank': '11', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '38', '247stateRank': '11'}, {'school': 'georgia', 'year': '2019', 'playerName': 'Tymon Mitchell', 'highSchool': 'Franklin Road Academy', 'city': 'Nashville', 'state': 'TN', 'position': 'DT', 'height': 75.0, 'weight': '309', 'compRating': '0.8870', 'compStars': 3, 'nationalRank': '422', 'positionRank': '31', 'stateRank': '14', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '46', '247stateRank': '18'}, {'school': 'georgia', 'year': '2019', 'playerName': 'Brett Seither', 'highSchool': 'Clearwater Central Catholic', 'city': 'Clearwater', 'state': 'FL', 'position': 'TE', 'height': 77.0, 'weight': '228', 'compRating': '0.8673', 'compStars': 3, 'nationalRank': '733', 'positionRank': '34', 'stateRank': '92', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '20', '247stateRank': '39'}, {'school': 'georgia', 'year': '2019', 'playerName': 'Tramel Walthour', 'highSchool': 'Hutchinson C.C.', 'city': 'Hutchinson', 'state': 'KS', 'position': 'DT', 'height': 76.0, 'weight': '277', 'compRating': '0.8582', 'compStars': 3, 'nationalRank': '65', 'positionRank': '7', 'stateRank': '16', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '53', '247positionRank': '6', '247stateRank': '13'}, {'school': 'georgia', 'year': '2019', 'playerName': 'Stetson Bennett IV', 'highSchool': 'Jones College', 'city': 'Ellisville', 'state': 'MS', 'position': 'PRO', 'height': 72.0, 'weight': '185', 'compRating': '0.8304', 'compStars': 3, 'nationalRank': '166', 'positionRank': '6', 'stateRank': '29', '247Rating': ' 83 ', '247Stars': 3, '247nationalRank': '170', '247positionRank': '8', '247stateRank': '30'}, {'school': 'georgia', 'year': '2019', 'playerName': 'Nathan Priestley', 'highSchool': 'Loyola', 'city': 'Los Angeles', 'state': 'CA', 'position': 'PRO', 'height': 76.0, 'weight': '200', 'compRating': '0.7497', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '162', 'stateRank': '467', '247Rating': ' 75 ', '247Stars': 2, '247positionRank': '149', '247stateRank': '463'}, {'school': 'ole-miss', 'year': '2017', 'playerName': 'D.D. Bowie', 'highSchool': 'Morton', 'city': 'Morton', 'state': 'MS', 'position': 'WR', 'height': 73.0, 'weight': '170', 'compRating': '0.9380', 'compStars': 4, 'nationalRank': '136', 'positionRank': '22', 'stateRank': '3', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '119', '247positionRank': '20', '247stateRank': '4'}, {'school': 'ole-miss', 'year': '2017', 'playerName': 'Breon Dixon', 'highSchool': 'Grayson', 'city': 'Loganville', 'state': 'GA', 'position': 'ILB', 'height': 72.0, 'weight': '218', 'compRating': '0.9055', 'compStars': 4, 'nationalRank': '257', 'positionRank': '12', 'stateRank': '26'}, {'school': 'ole-miss', 'year': '2017', 'playerName': 'Mohamed Sanogo', 'highSchool': 'Plano West', 'city': 'Plano', 'state': 'TX', 'position': 'ILB', 'height': 74.0, 'weight': '239', 'compRating': '0.8815', 'compStars': 3, 'nationalRank': '398', 'positionRank': '20', 'stateRank': '54', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '26', '247stateRank': '63'}, {'school': 'ole-miss', 'year': '2017', 'playerName': 'Tony Gray', 'highSchool': 'Grayson', 'city': 'Loganville', 'state': 'GA', 'position': 'OT', 'height': 77.0, 'weight': '290', 'compRating': '0.8794', 'compStars': 3, 'nationalRank': '416', 'positionRank': '45', 'stateRank': '44', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '53', '247stateRank': '54'}, {'school': 'ole-miss', 'year': '2017', 'playerName': 'Kam White', 'highSchool': 'Clinton', 'city': 'Clinton', 'state': 'MS', 'position': 'ATH', 'height': 74.0, 'weight': '203', 'compRating': '0.8727', 'compStars': 3, 'nationalRank': '451', 'positionRank': '30', 'stateRank': '9', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '40', '247stateRank': '11'}, {'school': 'ole-miss', 'year': '2017', 'playerName': 'Josh Clarke', 'highSchool': 'Riverdale', 'city': 'New Orleans', 'state': 'LA', 'position': 'OLB', 'height': 75.0, 'weight': '225', 'compRating': '0.8713', 'compStars': 3, 'nationalRank': '471', 'positionRank': '26', 'stateRank': '18', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '39', '247stateRank': '23'}, {'school': 'ole-miss', 'year': '2017', 'playerName': 'Braylon Sanders', 'highSchool': 'Callaway', 'city': 'Hogansville', 'state': 'GA', 'position': 'WR', 'height': 73.0, 'weight': '186', 'compRating': '0.8702', 'compStars': 3, 'nationalRank': '478', 'positionRank': '71', 'stateRank': '49', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '88', '247stateRank': '68'}, {'school': 'ole-miss', 'year': '2017', 'playerName': 'Markel Winters', 'highSchool': 'Jones College', 'city': 'Ellisville', 'state': 'MS', 'position': 'WDE', 'height': 76.5, 'weight': '260', 'compRating': '0.8676', 'compStars': 3, 'nationalRank': '42', 'positionRank': '4', 'stateRank': '15', '247Rating': ' 90 ', '247Stars': 4, '247nationalRank': '13', '247positionRank': '1', '247stateRank': '4'}, {'school': 'ole-miss', 'year': '2017', 'playerName': 'AJ Harris', 'highSchool': 'Bob Jones', 'city': 'Madison', 'state': 'AL', 'position': 'S', 'height': 72.0, 'weight': '190', 'compRating': '0.8665', 'compStars': 3, 'nationalRank': '531', 'positionRank': '36', 'stateRank': '27', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '37', '247stateRank': '23'}, {'school': 'ole-miss', 'year': '2017', 'playerName': 'Brenden Williams', 'highSchool': 'Northeast Mississippi C.C.', 'city': 'Booneville', 'state': 'MS', 'position': 'ILB', 'height': 75.5, 'weight': '230', 'compRating': '0.8563', 'compStars': 3, 'nationalRank': '61', 'positionRank': '5', 'stateRank': '22', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '23', '247positionRank': '3', '247stateRank': '7'}, {'school': 'ole-miss', 'year': '2017', 'playerName': 'Jamar Richardson', 'highSchool': 'Aliceville', 'city': 'Aliceville', 'state': 'AL', 'position': 'CB', 'height': 71.5, 'weight': '167', 'compRating': '0.8554', 'compStars': 3, 'nationalRank': '716', 'positionRank': '74', 'stateRank': '35', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '54', '247positionRank': '8', '247stateRank': '9'}, {'school': 'ole-miss', 'year': '2017', 'playerName': 'Javien Hamilton', 'highSchool': 'Jones College', 'city': 'Ellisville', 'state': 'MS', 'position': 'CB', 'height': 70.0, 'weight': '170', 'compRating': '0.8532', 'compStars': 3, 'nationalRank': '67', 'positionRank': '9', 'stateRank': '25', '247Rating': ' 83 ', '247Stars': 3, '247nationalRank': '127', '247positionRank': '15', '247stateRank': '42'}, {'school': 'ole-miss', 'year': '2017', 'playerName': 'Ben Brown', 'highSchool': 'St. Aloysius', 'city': 'Vicksburg', 'state': 'MS', 'position': 'OT', 'height': 78.0, 'weight': '290', 'compRating': '0.8489', 'compStars': 3, 'nationalRank': '866', 'positionRank': '81', 'stateRank': '17', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '60', '247stateRank': '15'}, {'school': 'ole-miss', 'year': '2017', 'playerName': "Jordan Ta'amu", 'highSchool': 'New Mexico Military Institute', 'city': 'Roswell', 'state': 'NM', 'position': 'DUAL', 'height': 75.0, 'weight': '200', 'compRating': '0.8464', 'compStars': 3, 'nationalRank': '94', 'positionRank': '4', 'stateRank': '2', '247Rating': ' 85 ', '247Stars': 3, '247nationalRank': '83', '247positionRank': '4', '247stateRank': '1'}, {'school': 'ole-miss', 'year': '2017', 'playerName': 'Alex Faniel', 'highSchool': 'Glen Allen', 'city': 'Glen Allen', 'state': 'VA', 'position': 'PRO', 'height': 77.0, 'weight': '225', 'compRating': '0.8444', 'compStars': 3, 'nationalRank': '996', 'positionRank': '39', 'stateRank': '29', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '49', '247stateRank': '37'}, {'school': 'ole-miss', 'year': '2017', 'playerName': 'C.J. Miller', 'highSchool': 'McEachern', 'city': 'Powder Springs', 'state': 'GA', 'position': 'S', 'height': 73.0, 'weight': '188', 'compRating': '0.8429', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '79', 'stateRank': '104', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '88', '247stateRank': '126'}, {'school': 'ole-miss', 'year': '2017', 'playerName': 'Sincere David', 'highSchool': 'Sandalwood', 'city': 'Jacksonville', 'state': 'FL', 'position': 'DT', 'height': 75.0, 'weight': '300', 'compRating': '0.8366', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '78', 'stateRank': '175', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '80', '247stateRank': '179'}, {'school': 'ole-miss', 'year': '2017', 'playerName': 'Ryder Anderson', 'highSchool': 'Katy', 'city': 'Katy', 'state': 'TX', 'position': 'WDE', 'height': 79.0, 'weight': '230', 'compRating': '0.8331', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '73', 'stateRank': '186', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '81', '247stateRank': '224'}, {'school': 'ole-miss', 'year': '2017', 'playerName': 'Zikerrion Baker', 'highSchool': 'Minden', 'city': 'Mooringsport', 'state': 'LA', 'position': 'OLB', 'height': 73.0, 'weight': '210', 'compRating': '0.8247', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '98', 'stateRank': '54', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '88', '247stateRank': '54'}, {'school': 'ole-miss', 'year': '2017', 'playerName': 'Isaiah Woullard', 'highSchool': 'Presbyterian Christian School', 'city': 'Hattiesburg', 'state': 'MS', 'position': 'RB', 'height': 70.0, 'weight': '205', 'compRating': '0.7965', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '134', 'stateRank': '50', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '126', '247stateRank': '49'}, {'school': 'ole-miss', 'year': '2017', 'playerName': 'Chester Graves', 'highSchool': 'Park Hill', 'city': 'Kansas City', 'state': 'MO', 'position': 'WDE', 'height': 76.0, 'weight': '220', 'compRating': '0.9082', 'compStars': 4, 'nationalRank': '243', 'positionRank': '18', 'stateRank': '1'}, {'school': 'ole-miss', 'year': '2017', 'playerName': 'JaVonta Payton', 'highSchool': 'Hillsboro', 'city': 'Nashville', 'state': 'TN', 'position': 'WR', 'height': 73.0, 'weight': '170', 'compRating': '0.8637', 'compStars': 3, 'nationalRank': '573', 'positionRank': '86', 'stateRank': '19', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '24', '247positionRank': '2', '247stateRank': '2'}, {'school': 'ole-miss', 'year': '2017', 'playerName': 'Taekion Reed', 'highSchool': 'New Hope', 'city': 'Columbus', 'state': 'MS', 'position': 'OT', 'height': 76.0, 'weight': '295', 'compRating': '0.8316', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '129', 'stateRank': '33'}, {'school': 'tennessee', 'year': '2009', 'playerName': 'Bryce Brown', 'highSchool': 'East', 'city': 'Wichita', 'state': 'KS', 'position': 'RB', 'height': 72.0, 'weight': '215', 'compRating': '0.9992', 'compStars': 5, 'nationalRank': '2', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2009', 'playerName': "Nu'keese Richardson", 'highSchool': 'Pahokee', 'city': 'Pahokee', 'state': 'FL', 'position': 'WR', 'height': 69.0, 'weight': '160', 'compRating': '0.9707', 'compStars': 4, 'nationalRank': '59', 'positionRank': '6', 'stateRank': '11'}, {'school': 'tennessee', 'year': '2009', 'playerName': 'Janzen Jackson', 'highSchool': 'Barbe', 'city': 'Lake Charles', 'state': 'LA', 'position': 'S', 'height': 72.0, 'weight': '187', 'compRating': '0.9697', 'compStars': 4, 'nationalRank': '62', 'positionRank': '3', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2009', 'playerName': 'Darren Myles', 'highSchool': 'Carver', 'city': 'Atlanta', 'state': 'GA', 'position': 'S', 'height': 74.0, 'weight': '180', 'compRating': '0.9633', 'compStars': 4, 'nationalRank': '78', 'positionRank': '5', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2009', 'playerName': 'David Oku', 'highSchool': 'Carl Albert', 'city': 'Oklahoma City', 'state': 'OK', 'position': 'RB', 'height': 70.0, 'weight': '195', 'compRating': '0.9628', 'compStars': 4, 'nationalRank': '80', 'positionRank': '8', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2009', 'playerName': 'Jerod Askew', 'highSchool': 'Oscar Smith', 'city': 'Chesapeake', 'state': 'VA', 'position': 'ILB', 'height': 72.0, 'weight': '230', 'compRating': '0.9587', 'compStars': 4, 'nationalRank': '89', 'positionRank': '7', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2009', 'playerName': 'Marlon Walls', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'DT', 'height': 75.0, 'weight': '278', 'compRating': '0.9222', 'compStars': 4, 'nationalRank': '4', 'positionRank': '1', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2009', 'playerName': 'Eric Gordon', 'highSchool': 'Hillsboro', 'city': 'Nashville', 'state': 'TN', 'position': 'CB', 'height': 70.0, 'weight': '186', 'compRating': '0.9012', 'compStars': 4, 'nationalRank': '260', 'positionRank': '24', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2009', 'playerName': 'Marsalis Teague', 'highSchool': 'Henry County', 'city': 'Paris', 'state': 'TN', 'position': 'CB', 'height': 70.0, 'weight': '178', 'compRating': '0.9005', 'compStars': 4, 'nationalRank': '263', 'positionRank': '25', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2009', 'playerName': 'JerQuari Schofield', 'highSchool': 'South Aiken', 'city': 'Aiken', 'state': 'SC', 'position': 'OG', 'height': 78.0, 'weight': '298', 'compRating': '0.8875', 'compStars': 3, 'nationalRank': '353', 'positionRank': '21', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2009', 'playerName': 'Mike Edwards', 'highSchool': 'Glenville', 'city': 'Cleveland', 'state': 'OH', 'position': 'CB', 'height': 70.0, 'weight': '170', 'compRating': '0.8873', 'compStars': 3, 'nationalRank': '358', 'positionRank': '39', 'stateRank': '18'}, {'school': 'tennessee', 'year': '2009', 'playerName': 'Arthur Jeffery', 'highSchool': 'Booker', 'city': 'Sarasota', 'state': 'FL', 'position': 'DT', 'height': 76.0, 'weight': '285', 'compRating': '0.8821', 'compStars': 3, 'nationalRank': '404', 'positionRank': '37', 'stateRank': '59', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2009', 'playerName': 'Toney Williams', 'highSchool': 'Milton', 'city': 'Alpharetta', 'state': 'GA', 'position': 'RB', 'height': 72.0, 'weight': '220', 'compRating': '0.8803', 'compStars': 3, 'nationalRank': '415', 'positionRank': '44', 'stateRank': '30', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2009', 'playerName': 'Nyshier Oliver', 'highSchool': 'St. Peters Prep', 'city': 'Jersey City', 'state': 'NJ', 'position': 'CB', 'height': 70.0, 'weight': '177', 'compRating': '0.8801', 'compStars': 3, 'nationalRank': '416', 'positionRank': '43', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2009', 'playerName': 'Robert Nelson', 'highSchool': 'Stone Mountain', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'OLB', 'height': 71.0, 'weight': '205', 'compRating': '0.8795', 'compStars': 3, 'nationalRank': '425', 'positionRank': '31', 'stateRank': '31', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2009', 'playerName': 'Zach Rogers', 'highSchool': 'Lipscomb Academy', 'city': 'Nashville', 'state': 'TN', 'position': 'WR', 'height': 74.0, 'weight': '170', 'compRating': '0.8795', 'compStars': 3, 'nationalRank': '432', 'positionRank': '55', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2009', 'playerName': 'Greg King', 'highSchool': 'Melrose', 'city': 'Memphis', 'state': 'TN', 'position': 'OLB', 'height': 74.0, 'weight': '235', 'compRating': '0.8764', 'compStars': 3, 'nationalRank': '486', 'positionRank': '37', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2009', 'playerName': 'Daniel Hood', 'highSchool': 'Knoxville Catholic', 'city': 'Knoxville', 'state': 'TN', 'position': 'DT', 'height': 76.0, 'weight': '293', 'compRating': '0.8733', 'compStars': 3, 'nationalRank': '517', 'positionRank': '47', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2009', 'playerName': 'Nigel Mitchell-Thornton', 'highSchool': 'Stephenson', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'OLB', 'height': 73.0, 'weight': '235', 'compRating': '0.8684', 'compStars': 3, 'nationalRank': '585', 'positionRank': '47', 'stateRank': '45', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2009', 'playerName': 'Kevin Revis', 'highSchool': 'Rhea County', 'city': 'Evensville', 'state': 'TN', 'position': 'OC', 'height': 76.0, 'weight': '265', 'compRating': '0.8622', 'compStars': 3, 'nationalRank': '680', 'positionRank': '5', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2009', 'playerName': 'Rae Sykes', 'highSchool': 'Coffeyville C.C.', 'city': 'Coffeyville', 'state': 'KS', 'position': 'SDE', 'height': 76.0, 'weight': '240', 'compRating': '0.8444', 'compStars': 3, 'nationalRank': '70', 'positionRank': '6', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2009', 'playerName': 'Stephen Barrera', 'highSchool': 'Clear Lake', 'city': 'Houston', 'state': 'TX', 'position': 'OT', 'height': 77.0, 'weight': '290', 'compRating': '0.8966', 'compStars': 4, 'nationalRank': '275', 'positionRank': '21', 'stateRank': '32', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2009', 'playerName': 'Brandal Jackson', 'highSchool': 'Navasota', 'city': 'Navasota', 'state': 'TX', 'position': 'WR', 'height': 73.0, 'weight': '180', 'compRating': '0.8915', 'compStars': 4, 'nationalRank': '313', 'positionRank': '41', 'stateRank': '39', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2009', 'playerName': 'Patrick Lewis', 'highSchool': 'East St. John', 'city': 'Reserve', 'state': 'LA', 'position': 'OG', 'height': 74.0, 'weight': '303', 'compRating': '0.8875', 'compStars': 3, 'nationalRank': '347', 'positionRank': '20', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2009', 'playerName': 'Jonathan Stewart', 'highSchool': 'C.E. Byrd', 'city': 'Shreveport', 'state': 'LA', 'position': 'OLB', 'height': 76.0, 'weight': '235', 'compRating': '0.8844', 'compStars': 3, 'nationalRank': '379', 'positionRank': '24', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2009', 'playerName': 'Kenric McNeal', 'highSchool': 'Spring HS', 'city': 'Spring', 'state': 'TX', 'position': 'WR', 'height': 73.0, 'weight': '180', 'compRating': '0.8791', 'compStars': 3, 'nationalRank': '435', 'positionRank': '56', 'stateRank': '58', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2009', 'playerName': 'Hutson Prioleau', 'highSchool': 'All Saints Episcopal', 'city': 'Fort Worth', 'state': 'TX', 'position': 'TE', 'height': 76.0, 'weight': '251', 'compRating': '0.8764', 'compStars': 3, 'nationalRank': '461', 'positionRank': '15', 'stateRank': '64', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2009', 'playerName': 'Steven Terrell', 'highSchool': 'Allen', 'city': 'Allen', 'state': 'TX', 'position': 'S', 'height': '0.0', 'weight': '0', 'compRating': '0.8764', 'compStars': 3, 'nationalRank': '480', 'positionRank': '32', 'stateRank': '67', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2009', 'playerName': 'Rhontae Scales', 'highSchool': 'Killeen', 'city': 'Killeen', 'state': 'TX', 'position': 'OT', 'height': 78.0, 'weight': '317', 'compRating': '0.8760', 'compStars': 3, 'nationalRank': '489', 'positionRank': '31', 'stateRank': '69', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2009', 'playerName': 'Chris Henderson', 'highSchool': 'Carter', 'city': 'Dallas', 'state': 'TX', 'position': 'DT', 'height': 73.0, 'weight': '249', 'compRating': '0.8715', 'compStars': 3, 'nationalRank': '536', 'positionRank': '49', 'stateRank': '76', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2009', 'playerName': 'Clint Naron', 'highSchool': 'Klein Oak', 'city': 'Spring', 'state': 'TX', 'position': 'OT', 'height': 78.0, 'weight': '290', 'compRating': '0.8654', 'compStars': 3, 'nationalRank': '607', 'positionRank': '42', 'stateRank': '86', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2009', 'playerName': 'Kalvin Guyton', 'highSchool': 'Lamar', 'city': 'Houston', 'state': 'TX', 'position': 'RB', 'height': 70.0, 'weight': '195', 'compRating': '0.8590', 'compStars': 3, 'nationalRank': '760', 'positionRank': '66', 'stateRank': '105', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2009', 'playerName': 'Charlie Thomas', 'highSchool': 'Beaumont Central', 'city': 'Beaumont', 'state': 'TX', 'position': 'S', 'height': 73.0, 'weight': '212', 'compRating': '0.8559', 'compStars': 3, 'nationalRank': '785', 'positionRank': '56', 'stateRank': '113', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2009', 'playerName': 'Andrew Weaver', 'highSchool': 'Waco', 'city': 'Waco', 'state': 'TX', 'position': 'ILB', 'height': 74.0, 'weight': '242', 'compRating': '0.8559', 'compStars': 3, 'nationalRank': '793', 'positionRank': '47', 'stateRank': '115', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2009', 'playerName': 'Sean Porter', 'highSchool': 'Samuel Clemens', 'city': 'Schertz', 'state': 'TX', 'position': 'OLB', 'height': 74.0, 'weight': '200', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '817', 'positionRank': '69', 'stateRank': '119', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2009', 'playerName': 'Desmond Gardiner', 'highSchool': 'Memorial', 'city': 'Port Arthur', 'state': 'TX', 'position': 'CB', 'height': 70.0, 'weight': '190', 'compRating': '0.8510', 'compStars': 3, 'nationalRank': '907', 'positionRank': '71', 'stateRank': '134', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2009', 'playerName': 'Steven Campbell', 'highSchool': 'Jersey Village', 'city': 'Houston', 'state': 'TX', 'position': 'S', 'height': '0.0', 'weight': '0', 'compRating': '0.8510', 'compStars': 3, 'nationalRank': '910', 'positionRank': '68', 'stateRank': '136', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2009', 'playerName': 'Dustin Harris', 'highSchool': 'Livingston', 'city': 'Livingston', 'state': 'TX', 'position': 'ATH', 'height': '0.0', 'weight': '0', 'compRating': '0.8510', 'compStars': 3, 'nationalRank': '923', 'positionRank': '53', 'stateRank': '138', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2009', 'playerName': 'Colton Valencia', 'highSchool': 'Hightower', 'city': 'Missouri City', 'state': 'TX', 'position': 'CB', 'height': 70.0, 'weight': '176', 'compRating': '0.8510', 'compStars': 3, 'nationalRank': '944', 'positionRank': '74', 'stateRank': '142', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2009', 'playerName': 'Sean Porter', 'highSchool': 'Samuel Clemens', 'city': 'Schertz', 'state': 'TX', 'position': 'OLB', 'height': 74.0, 'weight': '205', 'compRating': '0.8505', 'compStars': 3, 'nationalRank': '955', 'positionRank': '76', 'stateRank': '144', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2009', 'playerName': 'Malcom Johnson', 'highSchool': 'Collinsville', 'city': 'Collinsville', 'state': 'TX', 'position': 'OLB', 'height': 74.0, 'weight': '196', 'compRating': '0.8505', 'compStars': 3, 'nationalRank': '956', 'positionRank': '77', 'stateRank': '145', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2009', 'playerName': 'Aaron Arterburn', 'highSchool': 'Unknown', 'city': 'Nashville', 'state': 'TN', 'position': 'ILB', 'height': 74.0, 'weight': '233', 'compRating': '0.8479', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '64', 'stateRank': '22', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2009', 'playerName': 'Michael Lamothe', 'highSchool': 'New Iberia', 'city': 'New Iberia', 'state': 'LA', 'position': 'OLB', 'height': '0.0', 'weight': '0', 'compRating': '0.8448', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '84', 'stateRank': '36', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2009', 'playerName': 'Kirby Ennis', 'highSchool': 'Huntsville', 'city': 'Huntsville', 'state': 'TX', 'position': 'SDE', 'height': 76.0, 'weight': '280', 'compRating': '0.8385', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '62', 'stateRank': '177', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2009', 'playerName': 'Spencer Nealy', 'highSchool': 'Rowlett', 'city': 'Rowlett', 'state': 'TX', 'position': 'DT', 'height': 77.0, 'weight': '272', 'compRating': '0.8243', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '93', 'stateRank': '207', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2009', 'playerName': 'Ryan Epperson', 'highSchool': 'Keller', 'city': 'Keller', 'state': 'TX', 'position': 'P', 'height': 74.0, 'weight': '191', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '1', 'stateRank': '290', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2009', 'playerName': 'Christine Michael', 'highSchool': 'West Brook', 'city': 'Beaumont', 'state': 'TX', 'position': 'RB', 'height': 71.0, 'weight': '200', 'compRating': '0.9887', 'compStars': 5, 'nationalRank': '22', 'positionRank': '3', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2009', 'playerName': 'Uzoma Nwachukwu', 'highSchool': 'Allen', 'city': 'Allen', 'state': 'TX', 'position': 'WR', 'height': 73.0, 'weight': '190', 'compRating': '0.8917', 'compStars': 4, 'nationalRank': '308', 'positionRank': '39', 'stateRank': '37', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2009', 'playerName': 'Ryan Swope', 'highSchool': 'Westlake', 'city': 'Austin', 'state': 'TX', 'position': 'ATH', 'height': 72.0, 'weight': '205', 'compRating': '0.8670', 'compStars': 3, 'nationalRank': '600', 'positionRank': '35', 'stateRank': '84', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2005', 'playerName': 'Earl Bennett', 'highSchool': 'West End Sch', 'city': 'Birmingham', 'state': 'AL', 'position': 'WR', 'height': 72.0, 'weight': '192', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '596', 'positionRank': '56', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2005', 'playerName': 'Mackenzi Adams', 'highSchool': 'Union', 'city': 'Tulsa', 'state': 'OK', 'position': 'DUAL', 'height': 74.0, 'weight': '183', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '749', 'positionRank': '23', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2005', 'playerName': 'Justin Wheeler', 'highSchool': 'North Augusta', 'city': 'North Augusta', 'state': 'SC', 'position': 'WR', 'height': 74.0, 'weight': '180', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': '989', 'positionRank': '98', 'stateRank': '22', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2005', 'playerName': 'Jake Bradford', 'highSchool': 'Glynn Academy', 'city': 'Brunswick', 'state': 'GA', 'position': 'TE', 'height': 79.0, 'weight': '234', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '61', 'stateRank': '60', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2005', 'playerName': 'Eric Hensley', 'highSchool': 'Clinton', 'city': 'Clinton', 'state': 'TN', 'position': 'OT', 'height': 77.0, 'weight': '287', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '82', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2005', 'playerName': 'Daniel Dufrene', 'highSchool': 'Stranahan', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'APB', 'height': 70.0, 'weight': '180', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '23', 'stateRank': '127', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2005', 'playerName': 'Larry Simmons', 'highSchool': 'Anderson', 'city': 'Austin', 'state': 'TX', 'position': 'WR', 'height': 70.0, 'weight': '170', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '122', 'stateRank': '193', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2005', 'playerName': 'Thomas Welch', 'highSchool': 'Brentwood', 'city': 'Brentwood', 'state': 'TN', 'position': 'TE', 'height': 79.0, 'weight': '235', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '74', 'stateRank': '22', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2005', 'playerName': 'Jared Hawkins', 'highSchool': 'Klein', 'city': 'Spring', 'state': 'TX', 'position': 'APB', 'height': 70.0, 'weight': '175', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '25', 'stateRank': '205', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2005', 'playerName': 'Darlron Spead', 'highSchool': 'Camden County', 'city': 'Kingsland', 'state': 'GA', 'position': 'CB', 'height': 71.0, 'weight': '169', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '112', 'stateRank': '73', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2005', 'playerName': 'Ryan Hamilton', 'highSchool': 'Council Rock North', 'city': 'Newtown', 'state': 'PA', 'position': 'S', 'height': 73.0, 'weight': '198', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '90', 'stateRank': '48', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2005', 'playerName': 'Duran Coger', 'highSchool': 'Deshler Sch', 'city': 'Tuscumbia', 'state': 'AL', 'position': 'CB', 'height': 72.0, 'weight': '185', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '129', 'stateRank': '41', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2005', 'playerName': 'Derrius Dowell', 'highSchool': 'Douglass', 'city': 'Atlanta', 'state': 'GA', 'position': 'DT', 'height': 75.0, 'weight': '250', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '81', 'stateRank': '81', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2005', 'playerName': 'Quavian Lewis', 'highSchool': 'Charles Henderson Sch', 'city': 'Troy', 'state': 'AL', 'position': 'OLB', 'height': 76.0, 'weight': '196', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '113', 'stateRank': '43', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2005', 'playerName': 'Ryan Custer', 'highSchool': 'Troy', 'city': 'Troy', 'state': 'OH', 'position': 'OG', 'height': 76.0, 'weight': '290', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '147', 'stateRank': '83', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2005', 'playerName': 'Steven Stone', 'highSchool': 'Conway', 'city': 'Conway', 'state': 'AR', 'position': 'SDE', 'height': 78.0, 'weight': '230', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '98', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2005', 'playerName': 'Bradley Vierling', 'highSchool': 'Central Bucks East', 'city': 'Doylestown', 'state': 'PA', 'position': 'OT', 'height': 76.0, 'weight': '280', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '128', 'stateRank': '52', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2005', 'playerName': 'Alex Washington', 'highSchool': 'Stephenson', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'WR', 'height': 68.0, 'weight': '170', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '191', 'stateRank': '102', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2005', 'playerName': 'Chris Johnson', 'highSchool': 'Westminster School At Oak Mountain', 'city': 'Birmingham', 'state': 'AL', 'position': 'ILB', 'height': 73.0, 'weight': '215', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '85', 'stateRank': '55', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2005', 'playerName': 'Broderick Stewart', 'highSchool': 'Riverside Military Academy', 'city': 'Gainesville', 'state': 'GA', 'position': 'WDE', 'height': 77.0, 'weight': '195', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '74', 'stateRank': '108', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2005', 'playerName': 'Joel Caldwell', 'highSchool': 'Hoover', 'city': 'Hoover', 'state': 'AL', 'position': 'CB', 'height': 73.0, 'weight': '173', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '164', 'stateRank': '56', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2005', 'playerName': 'Bryant Hahnfeldt', 'highSchool': 'Montgomery Bell Academy', 'city': 'Nashville', 'state': 'TN', 'position': 'K', 'height': 71.0, 'weight': '180', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '34', 'stateRank': '38', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2005', 'playerName': 'Drew Gardner', 'highSchool': 'Hoxie', 'city': 'Hoxie', 'state': 'AR', 'position': 'OT', 'height': 77.0, 'weight': '305', 'compRating': '0.7000', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '142', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2005', 'playerName': 'Brandon Bryant', 'highSchool': 'St. Xavier', 'city': 'Cincinnati', 'state': 'OH', 'position': 'OLB', 'height': 73.0, 'weight': '225', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2005', 'playerName': 'Ryan Vance', 'highSchool': 'Episcopal', 'city': 'Bellaire', 'state': 'TX', 'position': 'OT', 'height': 75.0, 'weight': '272', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2013', 'playerName': 'Chris Jones', 'highSchool': 'Houston', 'city': 'Houston', 'state': 'MS', 'position': 'SDE', 'height': 77.0, 'weight': '250', 'compRating': '0.9919', 'compStars': 5, 'nationalRank': '18', 'positionRank': '2', 'stateRank': '1', '247Rating': ' 100 ', '247Stars': 5, '247nationalRank': '2', '247positionRank': '2', '247stateRank': '1'}, {'school': 'mississippi-state', 'year': '2013', 'playerName': 'Ashton Shumpert', 'highSchool': 'Tupelo', 'city': 'Tupelo', 'state': 'MS', 'position': 'S', 'height': 74.0, 'weight': '212', 'compRating': '0.9230', 'compStars': 4, 'nationalRank': '182', 'positionRank': '16', 'stateRank': '4', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '137', '247positionRank': '15', '247stateRank': '4'}, {'school': 'mississippi-state', 'year': '2013', 'playerName': 'Fred Ross', 'highSchool': 'John Tyler', 'city': 'Tyler', 'state': 'TX', 'position': 'WR', 'height': 74.0, 'weight': '185', 'compRating': '0.9216', 'compStars': 4, 'nationalRank': '192', 'positionRank': '25', 'stateRank': '26', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '45', '247stateRank': '50'}, {'school': 'mississippi-state', 'year': '2013', 'playerName': 'Justin Cox', 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'S', 'height': 74.0, 'weight': '185', 'compRating': '0.8923', 'compStars': 4, 'nationalRank': '18', 'positionRank': '1', 'stateRank': '9', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '20', '247positionRank': '1', '247stateRank': '5'}, {'school': 'mississippi-state', 'year': '2013', 'playerName': 'Jake Thomas', 'highSchool': 'Columbus', 'city': 'Columbus', 'state': 'MS', 'position': 'OT', 'height': 77.0, 'weight': '300', 'compRating': '0.8835', 'compStars': 3, 'nationalRank': '361', 'positionRank': '29', 'stateRank': '6', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '22', '247stateRank': '5'}, {'school': 'mississippi-state', 'year': '2013', 'playerName': 'Jahmere Irvin-Sills', 'highSchool': 'Eastern Christian', 'city': 'Elkton', 'state': 'MD', 'position': 'ATH', 'height': 70.0, 'weight': '172', 'compRating': '0.8610', 'compStars': 3, 'nationalRank': '604', 'positionRank': '39', 'stateRank': '14'}, {'school': 'mississippi-state', 'year': '2013', 'playerName': 'B.J. Hammond', 'highSchool': 'Gadsden City', 'city': 'Gadsden', 'state': 'AL', 'position': 'WR', 'height': 76.0, 'weight': '210', 'compRating': '0.8597', 'compStars': 3, 'nationalRank': '634', 'positionRank': '85', 'stateRank': '20', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '128', '247stateRank': '26'}, {'school': 'mississippi-state', 'year': '2013', 'playerName': 'Shelby Christy', 'highSchool': 'Dutchtown', 'city': 'Geismar', 'state': 'LA', 'position': 'WR', 'height': 75.0, 'weight': '190', 'compRating': '0.8569', 'compStars': 3, 'nationalRank': '682', 'positionRank': '90', 'stateRank': '29', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '81', '247stateRank': '24'}, {'school': 'mississippi-state', 'year': '2013', 'playerName': 'Brandon Wells', 'highSchool': 'Bogue Chitto School', 'city': 'Bogue Chitto', 'state': 'MS', 'position': 'ATH', 'height': 74.0, 'weight': '175', 'compRating': '0.8544', 'compStars': 3, 'nationalRank': '728', 'positionRank': '47', 'stateRank': '8', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '54', '247stateRank': '12'}, {'school': 'mississippi-state', 'year': '2013', 'playerName': 'Gabe Myles', 'highSchool': 'Starkville', 'city': 'Starkville', 'state': 'MS', 'position': 'CB', 'height': 72.0, 'weight': '183', 'compRating': '0.8531', 'compStars': 3, 'nationalRank': '749', 'positionRank': '58', 'stateRank': '9', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '40', '247stateRank': '7'}, {'school': 'mississippi-state', 'year': '2013', 'playerName': 'Jeremey Chappelle', 'highSchool': 'Tyler J.C.', 'city': 'Tyler', 'state': 'TX', 'position': 'WR', 'height': 74.0, 'weight': '212', 'compRating': '0.8489', 'compStars': 3, 'nationalRank': '92', 'positionRank': '15', 'stateRank': '5', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '54', '247positionRank': '10', '247stateRank': '2'}, {'school': 'mississippi-state', 'year': '2013', 'playerName': "De'Runnya Wilson", 'highSchool': 'Wenonah Sch', 'city': 'Birmingham', 'state': 'AL', 'position': 'WR', 'height': 76.5, 'weight': '212', 'compRating': '0.8455', 'compStars': 3, 'nationalRank': '891', 'positionRank': '119', 'stateRank': '28', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '83', '247stateRank': '19'}, {'school': 'mississippi-state', 'year': '2013', 'playerName': 'Kent Flowers', 'highSchool': 'Simmons', 'city': 'Hollandale', 'state': 'MS', 'position': 'OT', 'height': 76.5, 'weight': '295', 'compRating': '0.8435', 'compStars': 3, 'nationalRank': '917', 'positionRank': '72', 'stateRank': '13'}, {'school': 'mississippi-state', 'year': '2013', 'playerName': 'Jamaal Clayborn', 'highSchool': 'Jackson Academy', 'city': 'Jackson', 'state': 'MS', 'position': 'OG', 'height': 75.0, 'weight': '315', 'compRating': '0.8341', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '66', 'stateRank': '18', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '67', '247stateRank': '21'}, {'school': 'mississippi-state', 'year': '2013', 'playerName': 'Kivon Coman', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'S', 'height': 73.0, 'weight': '200', 'compRating': '0.8317', 'compStars': 3, 'nationalRank': '25', 'positionRank': '1', 'stateRank': '19', '247Rating': ' 83 ', '247Stars': 3, '247nationalRank': '28', '247positionRank': '1', '247stateRank': '21'}, {'school': 'mississippi-state', 'year': '2013', 'playerName': 'Dez Harris', 'highSchool': 'McAdory', 'city': 'McCalla', 'state': 'AL', 'position': 'ATH', 'height': 75.0, 'weight': '220', 'compRating': '0.8310', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '87', 'stateRank': '33', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '104', '247stateRank': '41'}, {'school': 'mississippi-state', 'year': '2013', 'playerName': 'Trent Simpson', 'highSchool': 'Oxford', 'city': 'Oxford', 'state': 'AL', 'position': 'WDE', 'height': 76.0, 'weight': '255', 'compRating': '0.8269', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '59', 'stateRank': '38', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '65', '247stateRank': '52'}, {'school': 'mississippi-state', 'year': '2013', 'playerName': 'Tolando Cleveland', 'highSchool': 'Hillgrove', 'city': 'Powder Springs', 'state': 'GA', 'position': 'CB', 'height': 72.0, 'weight': '170', 'compRating': '0.8267', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '96', 'stateRank': '112', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '120', '247stateRank': '115'}, {'school': 'mississippi-state', 'year': '2013', 'playerName': 'Damian Williams', 'highSchool': 'Archbishop Rummel', 'city': 'Metairie', 'state': 'LA', 'position': 'DUAL', 'height': 73.0, 'weight': '215', 'compRating': '0.8217', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '33', 'stateRank': '46', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '29', '247stateRank': '43'}, {'school': 'mississippi-state', 'year': '2013', 'playerName': 'Artimas Samuel', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'TE', 'height': 74.0, 'weight': '240', 'compRating': '0.7917', 'compStars': 2, 'nationalRank': '43', 'positionRank': '3', 'stateRank': '28'}, {'school': 'mississippi-state', 'year': '2013', 'playerName': 'Cord Sandberg', 'highSchool': 'Manatee', 'city': 'Bradenton', 'state': 'FL', 'position': 'DUAL', 'height': 74.0, 'weight': '200', 'compRating': '0.9112', 'compStars': 4, 'nationalRank': '232', 'positionRank': '8', 'stateRank': '33', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '14', '247stateRank': '51'}, {'school': 'mississippi-state', 'year': '2013', 'playerName': 'Donald Gray', 'highSchool': 'White Station', 'city': 'Memphis', 'state': 'TN', 'position': 'ATH', 'height': 69.5, 'weight': '180', 'compRating': '0.8693', 'compStars': 3, 'nationalRank': '485', 'positionRank': '27', 'stateRank': '12', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '10', '247positionRank': '2', '247stateRank': '5'}, {'school': 'alabama', 'year': '2005', 'playerName': 'Roy Upchurch', 'highSchool': 'Amos P. Godby', 'city': 'Tallahassee', 'state': 'FL', 'position': 'RB', 'height': 72.0, 'weight': '195', 'compRating': '0.9711', 'compStars': 4, 'nationalRank': '73', 'positionRank': '11', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2005', 'playerName': 'Chris Keys', 'highSchool': 'North Jackson', 'city': 'Stevenson', 'state': 'AL', 'position': 'S', 'height': 74.0, 'weight': '210', 'compRating': '0.9639', 'compStars': 4, 'nationalRank': '87', 'positionRank': '5', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2005', 'playerName': 'Lorenzo Washington', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'DT', 'height': 77.0, 'weight': '275', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '2', 'positionRank': '1', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2005', 'playerName': 'Brandon Fanney', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'SDE', 'height': 77.0, 'weight': '260', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '5', 'positionRank': '1', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2005', 'playerName': 'Nick Kyles', 'highSchool': 'Baldwin', 'city': 'Milledgeville', 'state': 'GA', 'position': 'WR', 'height': 74.0, 'weight': '182', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '250', 'positionRank': '31', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2005', 'playerName': 'Prince Hall', 'highSchool': 'Moreno Valley', 'city': 'Moreno Valley', 'state': 'CA', 'position': 'ILB', 'height': 72.0, 'weight': '239', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '259', 'positionRank': '12', 'stateRank': '36', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2005', 'playerName': 'Jimmy Johns', 'highSchool': 'Brookhaven', 'city': 'Brookhaven', 'state': 'MS', 'position': 'DUAL', 'height': 74.0, 'weight': '230', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '275', 'positionRank': '6', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2005', 'playerName': 'Bobby Greenwood', 'highSchool': 'Prattville', 'city': 'Prattville', 'state': 'AL', 'position': 'SDE', 'height': 76.0, 'weight': '239', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '284', 'positionRank': '21', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2005', 'playerName': 'Chris Rogers', 'highSchool': 'Lakeland', 'city': 'Lakeland', 'state': 'FL', 'position': 'CB', 'height': 73.0, 'weight': '172', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '324', 'positionRank': '30', 'stateRank': '48', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2005', 'playerName': 'Glen Coffee', 'highSchool': 'Fort Walton Beach', 'city': 'Fort Walton Beach', 'state': 'FL', 'position': 'RB', 'height': 72.0, 'weight': '195', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '354', 'positionRank': '27', 'stateRank': '50', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2005', 'playerName': 'Ali Sharrief', 'highSchool': 'North Jackson', 'city': 'Stevenson', 'state': 'AL', 'position': 'ATH', 'height': 69.0, 'weight': '185', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '365', 'positionRank': '22', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2005', 'playerName': 'Jimmy Barnes', 'highSchool': 'Los Alamitos', 'city': 'Los Alamitos', 'state': 'CA', 'position': 'PRO', 'height': 77.0, 'weight': '225', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '442', 'positionRank': '15', 'stateRank': '54', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2005', 'playerName': 'Charles Hoke', 'highSchool': 'Briarwood Christian', 'city': 'Birmingham', 'state': 'AL', 'position': 'TE', 'height': 79.0, 'weight': '235', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '448', 'positionRank': '26', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2005', 'playerName': 'Cory Reamer', 'highSchool': 'Hoover', 'city': 'Hoover', 'state': 'AL', 'position': 'OLB', 'height': 75.0, 'weight': '200', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '483', 'positionRank': '43', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2005', 'playerName': 'John Parker Wilson', 'highSchool': 'Hoover', 'city': 'Hoover', 'state': 'AL', 'position': 'PRO', 'height': 74.0, 'weight': '210', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '487', 'positionRank': '20', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2005', 'playerName': 'Lionel Mitchell', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'CB', 'height': 74.0, 'weight': '195', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '9', 'positionRank': '2', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2005', 'playerName': 'Byron Walton', 'highSchool': 'West Morgan Sch', 'city': 'Trinity', 'state': 'AL', 'position': 'OG', 'height': 75.0, 'weight': '293', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '499', 'positionRank': '40', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2005', 'playerName': 'Travis McCall', 'highSchool': 'Prattville', 'city': 'Prattville', 'state': 'AL', 'position': 'SDE', 'height': 74.0, 'weight': '235', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '504', 'positionRank': '34', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2005', 'playerName': 'Brandon Deaderick', 'highSchool': 'Elizabethtown', 'city': 'Elizabethtown', 'state': 'KY', 'position': 'WDE', 'height': 76.0, 'weight': '232', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '623', 'positionRank': '23', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2005', 'playerName': 'Marlon Davis', 'highSchool': 'Carver', 'city': 'Columbus', 'state': 'GA', 'position': 'OG', 'height': 75.0, 'weight': '306', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '652', 'positionRank': '50', 'stateRank': '36', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2005', 'playerName': 'Cole Harvey', 'highSchool': 'Lincoln', 'city': 'Tallahassee', 'state': 'FL', 'position': 'OG', 'height': 75.0, 'weight': '272', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '658', 'positionRank': '51', 'stateRank': '82', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2005', 'playerName': 'Desmond Jennings', 'highSchool': 'Pinson Valley', 'city': 'Pinson', 'state': 'AL', 'position': 'ATH', 'height': 74.0, 'weight': '180', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '723', 'positionRank': '54', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2005', 'playerName': 'Zach Schreiber', 'highSchool': 'Evangel Christian Academy', 'city': 'Shreveport', 'state': 'LA', 'position': 'WDE', 'height': 74.0, 'weight': '220', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '726', 'positionRank': '29', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2005', 'playerName': 'Antonio Forbes', 'highSchool': 'Meadowcreek', 'city': 'Norcross', 'state': 'GA', 'position': 'SDE', 'height': 76.0, 'weight': '262', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '778', 'positionRank': '48', 'stateRank': '43', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2005', 'playerName': 'Scott Deaton', 'highSchool': 'Westminster School At Oak Mountain', 'city': 'Birmingham', 'state': 'AL', 'position': 'OG', 'height': 77.0, 'weight': '258', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '834', 'positionRank': '63', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2005', 'playerName': 'Baron Huber', 'highSchool': 'Powell', 'city': 'Powell', 'state': 'TN', 'position': 'ILB', 'height': 76.0, 'weight': '240', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '55', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2005', 'playerName': 'Evan Cardwell', 'highSchool': 'Brooks', 'city': 'Killen', 'state': 'AL', 'position': 'OG', 'height': 74.0, 'weight': '278', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '156', 'stateRank': '51', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2005', 'playerName': 'Sam Burnthall', 'highSchool': 'Decatur', 'city': 'Decatur', 'state': 'AL', 'position': 'S', 'height': 74.0, 'weight': '190', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '115', 'stateRank': '57', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2006', 'playerName': 'Damian Williams', 'highSchool': 'Springdale', 'city': 'Springdale', 'state': 'AR', 'position': 'WR', 'height': 73.0, 'weight': '199', 'compRating': '0.9677', 'compStars': 4, 'nationalRank': '77', 'positionRank': '7', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2006', 'playerName': 'Van Stumon', 'highSchool': 'North Little Rock', 'city': 'North Little Rock', 'state': 'AR', 'position': 'ILB', 'height': 74.0, 'weight': '238', 'compRating': '0.8813', 'compStars': 3, 'nationalRank': '281', 'positionRank': '18', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2006', 'playerName': 'Jim Hart', 'highSchool': 'Pocahontas', 'city': 'Pocahontas', 'state': 'AR', 'position': 'OT', 'height': 78.0, 'weight': '300', 'compRating': '0.8750', 'compStars': 3, 'nationalRank': '341', 'positionRank': '27', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2006', 'playerName': 'Andrew Norman', 'highSchool': 'Springdale', 'city': 'Springdale', 'state': 'AR', 'position': 'WR', 'height': 74.0, 'weight': '175', 'compRating': '0.8576', 'compStars': 3, 'nationalRank': '474', 'positionRank': '60', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2006', 'playerName': 'Chip Gregory', 'highSchool': 'American Heritage Academy', 'city': 'Carrollton', 'state': 'TX', 'position': 'ATH', 'height': 76.0, 'weight': '212', 'compRating': '0.8528', 'compStars': 3, 'nationalRank': '552', 'positionRank': '45', 'stateRank': '92', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2006', 'playerName': 'Ben Cleveland', 'highSchool': 'Springdale', 'city': 'Springdale', 'state': 'AR', 'position': 'TE', 'height': 76.0, 'weight': '230', 'compRating': '0.8510', 'compStars': 3, 'nationalRank': '581', 'positionRank': '35', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2006', 'playerName': 'Carlton Salters', 'highSchool': 'North Florida Christian', 'city': 'Tallahassee', 'state': 'FL', 'position': 'WR', 'height': 72.0, 'weight': '177', 'compRating': '0.8497', 'compStars': 3, 'nationalRank': '588', 'positionRank': '71', 'stateRank': '74', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2006', 'playerName': 'Donnell Sanders', 'highSchool': 'North Clayton', 'city': 'Atlanta', 'state': 'GA', 'position': 'WDE', 'height': 75.0, 'weight': '206', 'compRating': '0.8417', 'compStars': 3, 'nationalRank': '684', 'positionRank': '23', 'stateRank': '36', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2006', 'playerName': 'Torian Wilkins', 'highSchool': 'Royal', 'city': 'Brookshire', 'state': 'TX', 'position': 'ATH', 'height': 71.0, 'weight': '185', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '743', 'positionRank': '61', 'stateRank': '132', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2006', 'playerName': 'Dee Williams', 'highSchool': 'Ashdown', 'city': 'Ashdown', 'state': 'AR', 'position': 'WR', 'height': 74.0, 'weight': '192', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '799', 'positionRank': '90', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2006', 'playerName': 'Malcolm Sheppard', 'highSchool': 'Bainbridge', 'city': 'Bainbridge', 'state': 'GA', 'position': 'SDE', 'height': 75.0, 'weight': '240', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '850', 'positionRank': '49', 'stateRank': '46', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2006', 'playerName': 'John West', 'highSchool': 'North Dakota State College of Science', 'city': 'Wahpeton', 'state': 'ND', 'position': 'S', 'height': 74.0, 'weight': '190', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '69', 'positionRank': '8', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2006', 'playerName': 'Chris Wade', 'highSchool': 'Northeastern Oklahoma A&M', 'city': 'Miami', 'state': 'OK', 'position': 'SDE', 'height': 78.0, 'weight': '238', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '86', 'positionRank': '10', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2006', 'playerName': 'Demarcus Love', 'highSchool': 'Carter', 'city': 'Dallas', 'state': 'TX', 'position': 'OT', 'height': 77.0, 'weight': '260', 'compRating': '0.8260', 'compStars': 3, 'nationalRank': '910', 'positionRank': '59', 'stateRank': '153', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2006', 'playerName': 'Jerell Norton', 'highSchool': 'Cedar Hill', 'city': 'Cedar Hill', 'state': 'TX', 'position': 'ATH', 'height': 72.0, 'weight': '180', 'compRating': '0.8167', 'compStars': 3, 'nationalRank': '966', 'positionRank': '78', 'stateRank': '164', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2006', 'playerName': 'Marques Wade', 'highSchool': 'Martin Luther King Jr.', 'city': 'Lithonia', 'state': 'GA', 'position': 'WR', 'height': 75.0, 'weight': '185', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '110', 'stateRank': '57', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2006', 'playerName': 'Ryan Powers', 'highSchool': 'Tanner', 'city': 'Tanner', 'state': 'AL', 'position': 'OLB', 'height': 74.0, 'weight': '210', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '67', 'stateRank': '42', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2006', 'playerName': 'Allen Gardner', 'highSchool': 'Carter-Riverside', 'city': 'Fort Worth', 'state': 'TX', 'position': 'ATH', 'height': 78.0, 'weight': '205', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '91', 'stateRank': '217', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2006', 'playerName': 'Adrian Davis', 'highSchool': 'Terry', 'city': 'Rosenberg', 'state': 'TX', 'position': 'S', 'height': 76.0, 'weight': '195', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '117', 'stateRank': '270', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2006', 'playerName': 'London Crawford', 'highSchool': 'WP Davidson', 'city': 'Mobile', 'state': 'AL', 'position': 'WR', 'height': 75.0, 'weight': '200', 'compRating': '0.9033', 'compStars': 4, 'nationalRank': '190', 'positionRank': '24', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2006', 'playerName': 'Matt Hewitt', 'highSchool': 'Wellsville Senior', 'city': 'Wellsville', 'state': 'NY', 'position': 'S', 'height': 74.0, 'weight': '209', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '120', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'Cam Feldt', 'highSchool': 'Pilot Point', 'city': 'Pilot Point', 'state': 'TX', 'position': 'OG', 'height': 76.0, 'weight': '290', 'compRating': '0.9231', 'compStars': 4, 'nationalRank': '181', 'positionRank': '6', 'stateRank': '27', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'Calvin Barnett', 'highSchool': 'Booker T. Washington', 'city': 'Tulsa', 'state': 'OK', 'position': 'DT', 'height': 75.0, 'weight': '330', 'compRating': '0.9224', 'compStars': 4, 'nationalRank': '183', 'positionRank': '14', 'stateRank': '4', '247Rating': ' 90 ', '247Stars': 4, '247nationalRank': '31', '247positionRank': '5', '247stateRank': '4'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'Byran Jones', 'highSchool': 'Junction City', 'city': 'Junction City', 'state': 'AR', 'position': 'DT', 'height': 74.0, 'weight': '312', 'compRating': '0.8993', 'compStars': 4, 'nationalRank': '289', 'positionRank': '22', 'stateRank': '2', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '195', '247positionRank': '16', '247stateRank': '2'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'Marquel Wade', 'highSchool': 'Andrew Jackson', 'city': 'Jacksonville', 'state': 'FL', 'position': 'WR', 'height': 71.0, 'weight': '180', 'compRating': '0.8759', 'compStars': 3, 'nationalRank': '489', 'positionRank': '67', 'stateRank': '74', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'Jatashun Beachum', 'highSchool': 'A Maceo Smith', 'city': 'Dallas', 'state': 'TX', 'position': 'ATH', 'height': 73.0, 'weight': '280', 'compRating': '0.8697', 'compStars': 3, 'nationalRank': '583', 'positionRank': '39', 'stateRank': '96', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'Jeremiah Jackson', 'highSchool': 'Spain Park', 'city': 'Birmingham', 'state': 'AL', 'position': 'DT', 'height': 75.0, 'weight': '260', 'compRating': '0.8676', 'compStars': 3, 'nationalRank': '606', 'positionRank': '56', 'stateRank': '20', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'Chris Smith', 'highSchool': 'West Rowan', 'city': 'Mount Ulla', 'state': 'NC', 'position': 'WDE', 'height': 75.0, 'weight': '251', 'compRating': '0.8655', 'compStars': 3, 'nationalRank': '641', 'positionRank': '39', 'stateRank': '23', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'Darrell Smith', 'highSchool': 'Port St. Joe', 'city': 'Port Saint Joe', 'state': 'FL', 'position': 'ATH', 'height': 75.0, 'weight': '198', 'compRating': '0.8655', 'compStars': 3, 'nationalRank': '642', 'positionRank': '43', 'stateRank': '92', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'Courtney Gaston', 'highSchool': 'Fort Gibson', 'city': 'Fort Gibson', 'state': 'OK', 'position': 'OLB', 'height': 77.0, 'weight': '225', 'compRating': '0.8634', 'compStars': 3, 'nationalRank': '721', 'positionRank': '47', 'stateRank': '15'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'Garrett Uekman', 'highSchool': 'Catholic For Boys', 'city': 'Little Rock', 'state': 'AR', 'position': 'TE', 'height': 76.0, 'weight': '254', 'compRating': '0.8613', 'compStars': 3, 'nationalRank': '786', 'positionRank': '31', 'stateRank': '5', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'Denton Simek', 'highSchool': 'Prague', 'city': 'Prague', 'state': 'OK', 'position': 'TE', 'height': 78.0, 'weight': '268', 'compRating': '0.8581', 'compStars': 3, 'nationalRank': '853', 'positionRank': '35', 'stateRank': '17', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'Braylon Mitchell', 'highSchool': 'Heber Springs', 'city': 'Heber Springs', 'state': 'AR', 'position': 'ILB', 'height': 74.0, 'weight': '225', 'compRating': '0.8581', 'compStars': 3, 'nationalRank': '854', 'positionRank': '38', 'stateRank': '6', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'Maudrecus Humphrey', 'highSchool': 'Hoover', 'city': 'Hoover', 'state': 'AL', 'position': 'WR', 'height': 75.0, 'weight': '185', 'compRating': '0.8581', 'compStars': 3, 'nationalRank': '855', 'positionRank': '114', 'stateRank': '26', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'Jarrett Lake', 'highSchool': 'Jenks', 'city': 'Jenks', 'state': 'OK', 'position': 'ATH', 'height': 75.0, 'weight': '223', 'compRating': '0.8549', 'compStars': 3, 'nationalRank': '965', 'positionRank': '62', 'stateRank': '18', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'Daunte Carr', 'highSchool': 'Gainesville', 'city': 'Gainesville', 'state': 'FL', 'position': 'S', 'height': 74.0, 'weight': '212', 'compRating': '0.8500', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '79', 'stateRank': '164', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'Eric Bennett', 'highSchool': 'Booker T. Washington', 'city': 'Tulsa', 'state': 'OK', 'position': 'ATH', 'height': 71.0, 'weight': '190', 'compRating': '0.8447', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '89', 'stateRank': '26', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'Julian Horton', 'highSchool': 'Greater Atlanta Christian School', 'city': 'Norcross', 'state': 'GA', 'position': 'WR', 'height': 73.0, 'weight': '194', 'compRating': '0.8435', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '156', 'stateRank': '94', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'Brad Hefley', 'highSchool': 'Joplin', 'city': 'Joplin', 'state': 'MO', 'position': 'TE', 'height': 76.0, 'weight': '250', 'compRating': '0.8394', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '59', 'stateRank': '17', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'Jacoby Walker', 'highSchool': 'Westfield', 'city': 'Houston', 'state': 'TX', 'position': 'DUAL', 'height': 74.0, 'weight': '197', 'compRating': '0.8299', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '54', 'stateRank': '254', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'Luke Charpentier', 'highSchool': 'John Curtis', 'city': 'New Orleans', 'state': 'LA', 'position': 'OG', 'height': 76.0, 'weight': '305', 'compRating': '0.8238', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '91', 'stateRank': '47', '247Rating': ' 75 ', '247Stars': 2, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'LaCraig Brown', 'highSchool': 'Richwood', 'city': 'Monroe', 'state': 'LA', 'position': 'DT', 'height': 76.0, 'weight': '288', 'compRating': '0.8167', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '111', 'stateRank': '52', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'Eduardo Camara', 'highSchool': 'Cedar Hill', 'city': 'Cedar Hill', 'state': 'TX', 'position': 'K', 'height': 69.0, 'weight': '164', 'compRating': '0.7933', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '40', 'stateRank': '303', '247Rating': ' 70 ', '247Stars': 2, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'Zach Hocker', 'highSchool': 'Russellville', 'city': 'Russellville', 'state': 'AR', 'position': 'K', 'height': 72.0, 'weight': '180', 'compRating': '0.7931', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '41', 'stateRank': '17', '247Rating': ' 75 ', '247Stars': 2, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'Javontee Herndon', 'highSchool': 'The Bolles School', 'city': 'Jacksonville', 'state': 'FL', 'position': 'WR', 'height': 73.0, 'weight': '185', 'compRating': '0.7583', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '288', 'stateRank': '339', '247Rating': ' 75 ', '247Stars': 2, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'Alan Turner', 'highSchool': 'Junction City', 'city': 'Junction City', 'state': 'AR', 'position': 'S', 'height': 72.0, 'weight': '202', 'compRating': '0.7579', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '184', 'stateRank': '24', '247Rating': ' 70 ', '247Stars': 2, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'Alex Cacciarelli', 'highSchool': 'Westminster Christian Academy', 'city': 'Saint Louis', 'state': 'MO', 'position': 'WR', 'height': 72.0, 'weight': '180', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'Weston Cox', 'highSchool': 'Jonesboro', 'city': 'Jonesboro', 'state': 'AR', 'position': 'P', 'height': 72.0, 'weight': '181', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'Charles Dement', 'highSchool': 'Paris', 'city': 'Paris', 'state': 'AR', 'position': 'OT', 'height': 78.0, 'weight': '298', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'Ray Gervasi', 'highSchool': 'Miramonte', 'city': 'Orinda', 'state': 'CA', 'position': 'OC', 'height': 74.0, 'weight': '307', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'John Henson', 'highSchool': 'Southlake Carroll', 'city': 'Southlake', 'state': 'TX', 'position': 'K', 'height': 71.0, 'weight': '138', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'Morgan Linton', 'highSchool': 'Lonoke', 'city': 'Lonoke', 'state': 'AR', 'position': 'FB', 'height': 71.0, 'weight': '240', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'Eric Redmon', 'highSchool': 'Catholic For Boys', 'city': 'Little Rock', 'state': 'AR', 'position': 'CB', 'height': 69.0, 'weight': '183', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'Brandon Wolford', 'highSchool': 'El Camino College Compton Center', 'city': 'Compton', 'state': 'CA', 'position': 'WR', 'height': 71.0, 'weight': '165', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'Brian Buehner', 'highSchool': 'St. Xavier', 'city': 'Louisville', 'state': 'KY', 'position': 'PRO', 'height': 71.0, 'weight': '195', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'Forbes Harris', 'highSchool': "St. George's Independent School", 'city': 'Collierville', 'state': 'TN', 'position': 'K', 'height': 73.0, 'weight': '185', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'A.J. McCray', 'highSchool': 'Episcopal Collegiate School', 'city': 'Little Rock', 'state': 'AR', 'position': 'DT', 'height': 74.0, 'weight': '320', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA'}, {'school': 'arkansas', 'year': '2010', 'playerName': 'Allen Whitlow', 'highSchool': 'Rogers Heritage', 'city': 'Rogers', 'state': 'AR', 'position': 'FB', 'height': 73.0, 'weight': '249', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2013', 'playerName': 'Zach Cunningham', 'highSchool': 'Pinson Valley', 'city': 'Pinson', 'state': 'AL', 'position': 'OLB', 'height': 76.0, 'weight': '196', 'compRating': '0.9049', 'compStars': 4, 'nationalRank': '259', 'positionRank': '18', 'stateRank': '10', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '237', '247positionRank': '19', '247stateRank': '10'}, {'school': 'vanderbilt', 'year': '2013', 'playerName': 'Jay Woods', 'highSchool': 'Jackson', 'city': 'Jackson', 'state': 'GA', 'position': 'DT', 'height': 75.0, 'weight': '275', 'compRating': '0.9025', 'compStars': 4, 'nationalRank': '273', 'positionRank': '22', 'stateRank': '21', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '29', '247stateRank': '29'}, {'school': 'vanderbilt', 'year': '2013', 'playerName': 'Jordan Cunningham', 'highSchool': 'University School', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'WR', 'height': 74.0, 'weight': '190', 'compRating': '0.8987', 'compStars': 4, 'nationalRank': '291', 'positionRank': '42', 'stateRank': '44', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '70', '247stateRank': '81'}, {'school': 'vanderbilt', 'year': '2013', 'playerName': 'Ryan White', 'highSchool': 'Trinity', 'city': 'Louisville', 'state': 'KY', 'position': 'CB', 'height': 69.0, 'weight': '180', 'compRating': '0.8917', 'compStars': 4, 'nationalRank': '326', 'positionRank': '24', 'stateRank': '5', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '47', '247stateRank': '6'}, {'school': 'vanderbilt', 'year': '2013', 'playerName': 'Johnny McCrary', 'highSchool': 'Cedar Grove', 'city': 'Ellenwood', 'state': 'GA', 'position': 'DUAL', 'height': 76.0, 'weight': '200', 'compRating': '0.8838', 'compStars': 3, 'nationalRank': '359', 'positionRank': '17', 'stateRank': '29', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '19', '247stateRank': '46'}, {'school': 'vanderbilt', 'year': '2013', 'playerName': 'DeAndre Woods', 'highSchool': 'Clay-Chalkville', 'city': 'Pinson', 'state': 'AL', 'position': 'WR', 'height': 75.0, 'weight': '210', 'compRating': '0.8818', 'compStars': 3, 'nationalRank': '368', 'positionRank': '53', 'stateRank': '14', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '57', '247stateRank': '17'}, {'school': 'vanderbilt', 'year': '2013', 'playerName': 'Carlos Burse', 'highSchool': 'Alpharetta', 'city': 'Alpharetta', 'state': 'GA', 'position': 'WR', 'height': 75.0, 'weight': '205', 'compRating': '0.8812', 'compStars': 3, 'nationalRank': '372', 'positionRank': '54', 'stateRank': '31'}, {'school': 'vanderbilt', 'year': '2013', 'playerName': 'Mitch Parsons', 'highSchool': 'Chaparral', 'city': 'Parker', 'state': 'CO', 'position': 'TE', 'height': 76.0, 'weight': '235', 'compRating': '0.8769', 'compStars': 3, 'nationalRank': '406', 'positionRank': '13', 'stateRank': '2', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '17', '247stateRank': '3'}, {'school': 'vanderbilt', 'year': '2013', 'playerName': 'Nigel Bowden', 'highSchool': 'Central', 'city': 'Macon', 'state': 'GA', 'position': 'ILB', 'height': 73.0, 'weight': '230', 'compRating': '0.8755', 'compStars': 3, 'nationalRank': '420', 'positionRank': '27', 'stateRank': '35', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '15', '247stateRank': '22'}, {'school': 'vanderbilt', 'year': '2013', 'playerName': 'Landon Stokes', 'highSchool': 'Lake Highland Prep', 'city': 'Orlando', 'state': 'FL', 'position': 'WDE', 'height': 76.0, 'weight': '220', 'compRating': '0.8691', 'compStars': 3, 'nationalRank': '486', 'positionRank': '20', 'stateRank': '73', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '13', '247stateRank': '43'}, {'school': 'vanderbilt', 'year': '2013', 'playerName': 'Tre Bell', 'highSchool': 'St. Peters Prep', 'city': 'Jersey City', 'state': 'NJ', 'position': 'CB', 'height': 71.0, 'weight': '165', 'compRating': '0.8662', 'compStars': 3, 'nationalRank': '530', 'positionRank': '39', 'stateRank': '18', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '58', '247stateRank': '23'}, {'school': 'vanderbilt', 'year': '2013', 'playerName': 'Delando Crooks', 'highSchool': 'Carver', 'city': 'Atlanta', 'state': 'GA', 'position': 'OT', 'height': 76.0, 'weight': '261', 'compRating': '0.8660', 'compStars': 3, 'nationalRank': '532', 'positionRank': '41', 'stateRank': '49', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '79', '247stateRank': '80'}, {'school': 'vanderbilt', 'year': '2013', 'playerName': 'Mack Weaver', 'highSchool': 'Harding Academy of Memphis', 'city': 'Memphis', 'state': 'TN', 'position': 'WDE', 'height': 77.0, 'weight': '240', 'compRating': '0.8646', 'compStars': 3, 'nationalRank': '554', 'positionRank': '25', 'stateRank': '13', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '34', '247stateRank': '14'}, {'school': 'vanderbilt', 'year': '2013', 'playerName': 'Jalen Banks', 'highSchool': 'Thornton Township', 'city': 'Harvey', 'state': 'IL', 'position': 'S', 'height': 72.0, 'weight': '190', 'compRating': '0.8624', 'compStars': 3, 'nationalRank': '581', 'positionRank': '39', 'stateRank': '15', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '44', '247stateRank': '14'}, {'school': 'vanderbilt', 'year': '2013', 'playerName': 'Sean Dowling', 'highSchool': 'Fallbrook', 'city': 'Fallbrook', 'state': 'CA', 'position': 'OT', 'height': 78.0, 'weight': '268', 'compRating': '0.8624', 'compStars': 3, 'nationalRank': '584', 'positionRank': '48', 'stateRank': '64', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '52', '247stateRank': '71'}, {'school': 'vanderbilt', 'year': '2013', 'playerName': 'Brandon Vandenburg', 'highSchool': 'College of the Desert', 'city': 'Palm Desert', 'state': 'CA', 'position': 'TE', 'height': 78.0, 'weight': '260', 'compRating': '0.8613', 'compStars': 3, 'nationalRank': '58', 'positionRank': '3', 'stateRank': '16', '247Rating': ' 85 ', '247Stars': 3, '247nationalRank': '111', '247positionRank': '7', '247stateRank': '33'}, {'school': 'vanderbilt', 'year': '2013', 'playerName': 'Jonathan Wynn', 'highSchool': 'Stephenson', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'WDE', 'height': 76.0, 'weight': '217', 'compRating': '0.8609', 'compStars': 3, 'nationalRank': '612', 'positionRank': '26', 'stateRank': '59', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '27', '247stateRank': '63'}, {'school': 'vanderbilt', 'year': '2013', 'playerName': 'Darrius Sims', 'highSchool': 'Whitehaven', 'city': 'Memphis', 'state': 'TN', 'position': 'CB', 'height': 70.0, 'weight': '175', 'compRating': '0.8609', 'compStars': 3, 'nationalRank': '613', 'positionRank': '48', 'stateRank': '14', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '54', '247stateRank': '13'}, {'school': 'vanderbilt', 'year': '2013', 'playerName': 'Oren Burks', 'highSchool': 'South County', 'city': 'Lorton', 'state': 'VA', 'position': 'OLB', 'height': 76.0, 'weight': '195', 'compRating': '0.8600', 'compStars': 3, 'nationalRank': '626', 'positionRank': '48', 'stateRank': '20', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '57', '247stateRank': '28'}, {'school': 'vanderbilt', 'year': '2013', 'playerName': 'Latevius Rayford', 'highSchool': 'Memphis Central', 'city': 'Memphis', 'state': 'TN', 'position': 'WR', 'height': 73.0, 'weight': '180', 'compRating': '0.8584', 'compStars': 3, 'nationalRank': '657', 'positionRank': '88', 'stateRank': '15', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '89', '247stateRank': '12'}, {'school': 'vanderbilt', 'year': '2013', 'playerName': 'Taurean Ferguson', 'highSchool': 'Jonesboro', 'city': 'Jonesboro', 'state': 'GA', 'position': 'CB', 'height': 70.0, 'weight': '175', 'compRating': '0.8497', 'compStars': 3, 'nationalRank': '822', 'positionRank': '64', 'stateRank': '76', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '61', '247stateRank': '67'}, {'school': 'vanderbilt', 'year': '2013', 'playerName': 'Nathan Marcus', 'highSchool': 'Glenbard West', 'city': 'Glen Ellyn', 'state': 'IL', 'position': 'TE', 'height': 77.0, 'weight': '220', 'compRating': '0.8463', 'compStars': 3, 'nationalRank': '870', 'positionRank': '32', 'stateRank': '22', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '39', '247stateRank': '26'}, {'school': 'vanderbilt', 'year': '2013', 'playerName': 'Gerald Perry', 'highSchool': 'Whitehaven', 'city': 'Memphis', 'state': 'TN', 'position': 'WR', 'height': 70.0, 'weight': '170', 'compRating': '0.8261', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '178', 'stateRank': '25', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '188', '247stateRank': '25'}, {'school': 'vanderbilt', 'year': '2013', 'playerName': 'Ralph Webb', 'highSchool': 'Gainesville', 'city': 'Gainesville', 'state': 'FL', 'position': 'RB', 'height': 69.0, 'weight': '185', 'compRating': '0.8255', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '80', 'stateRank': '180', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '69', '247stateRank': '156'}, {'school': 'vanderbilt', 'year': '2013', 'playerName': 'C.J. Duncan', 'highSchool': 'St James School', 'city': 'Montgomery', 'state': 'AL', 'position': 'ATH', 'height': 72.0, 'weight': '180', 'compRating': '0.7982', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '140', 'stateRank': '61', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '105', '247stateRank': '43'}, {'school': 'vanderbilt', 'year': '2013', 'playerName': 'Tommy Openshaw', 'highSchool': 'Creekside', 'city': 'Saint Augustine', 'state': 'FL', 'position': 'K', 'height': 74.0, 'weight': '165', 'compRating': '0.7431', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '30', 'stateRank': '436', '247Rating': ' 72 ', '247Stars': 2, '247positionRank': '25', '247stateRank': '384'}, {'school': 'vanderbilt', 'year': '2013', 'playerName': 'Chad Kanoff', 'highSchool': 'Harvard Westlake', 'city': 'Studio City', 'state': 'CA', 'position': 'PRO', 'height': 76.0, 'weight': '190', 'compRating': '0.8647', 'compStars': 3, 'nationalRank': '553', 'positionRank': '27', 'stateRank': '60', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '31', '247stateRank': '66'}, {'school': 'missouri', 'year': '2009', 'playerName': 'Sheldon Richardson', 'highSchool': 'Gateway', 'city': 'Saint Louis', 'state': 'MO', 'position': 'DT', 'height': 76.0, 'weight': '292', 'compRating': '0.9859', 'compStars': 5, 'nationalRank': '28', 'positionRank': '4', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2009', 'playerName': 'Joshua Tatum', 'highSchool': 'City College of San Francisco', 'city': 'San Francisco', 'state': 'CA', 'position': 'ILB', 'height': 73.0, 'weight': '230', 'compRating': '0.9222', 'compStars': 4, 'nationalRank': '8', 'positionRank': '1', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2009', 'playerName': 'Kendial Lawrence', 'highSchool': 'Rockwall-Heath', 'city': 'Rockwall', 'state': 'TX', 'position': 'RB', 'height': 69.0, 'weight': '177', 'compRating': '0.8701', 'compStars': 3, 'nationalRank': '547', 'positionRank': '53', 'stateRank': '78', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2009', 'playerName': 'T.J. Moe', 'highSchool': 'Fort Zumwalt East', 'city': 'Saint Peters', 'state': 'MO', 'position': 'ATH', 'height': 72.0, 'weight': '185', 'compRating': '0.8701', 'compStars': 3, 'nationalRank': '556', 'positionRank': '29', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2009', 'playerName': 'Jack Meiners', 'highSchool': 'Chaminade', 'city': 'Saint Louis', 'state': 'MO', 'position': 'OT', 'height': 78.0, 'weight': '314', 'compRating': '0.8653', 'compStars': 3, 'nationalRank': '611', 'positionRank': '43', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2009', 'playerName': 'Jaleel Clark', 'highSchool': 'Parkland', 'city': 'Allentown', 'state': 'PA', 'position': 'WR', 'height': 76.0, 'weight': '202', 'compRating': '0.8653', 'compStars': 3, 'nationalRank': '637', 'positionRank': '81', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2009', 'playerName': 'Chris Freeman', 'highSchool': 'Trotwood-Madison', 'city': 'Dayton', 'state': 'OH', 'position': 'OT', 'height': 79.0, 'weight': '325', 'compRating': '0.8622', 'compStars': 3, 'nationalRank': '672', 'positionRank': '49', 'stateRank': '35', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2009', 'playerName': 'Brayden Burnett', 'highSchool': 'Southlake Carroll', 'city': 'Southlake', 'state': 'TX', 'position': 'SDE', 'height': 75.0, 'weight': '240', 'compRating': '0.8608', 'compStars': 3, 'nationalRank': '713', 'positionRank': '32', 'stateRank': '98', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2009', 'playerName': 'Ashton Glaser', 'highSchool': 'Springdale', 'city': 'Springdale', 'state': 'AR', 'position': 'DUAL', 'height': 74.0, 'weight': '205', 'compRating': '0.8590', 'compStars': 3, 'nationalRank': '730', 'positionRank': '19', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2009', 'playerName': 'Kerwin Stricker', 'highSchool': 'Washington', 'city': 'Washington', 'state': 'MO', 'position': 'WR', 'height': 74.0, 'weight': '195', 'compRating': '0.8590', 'compStars': 3, 'nationalRank': '734', 'positionRank': '93', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2009', 'playerName': 'Jasper Simmons', 'highSchool': 'Hutchinson C.C.', 'city': 'Hutchinson', 'state': 'KS', 'position': 'S', 'height': 73.0, 'weight': '210', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '50', 'positionRank': '7', 'stateRank': '13'}, {'school': 'missouri', 'year': '2009', 'playerName': 'Alex Sanders', 'highSchool': 'Glendale', 'city': 'Springfield', 'state': 'MO', 'position': 'TE', 'height': 77.0, 'weight': '205', 'compRating': '0.8479', 'compStars': 3, 'nationalRank': '988', 'positionRank': '40', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2009', 'playerName': 'Adam Burton', 'highSchool': "Lee's Summit West", 'city': 'Lees Summit', 'state': 'MO', 'position': 'ILB', 'height': 73.0, 'weight': '228', 'compRating': '0.8479', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '66', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2009', 'playerName': 'Andrew Wilson', 'highSchool': 'Raymore-Peculiar', 'city': 'Peculiar', 'state': 'MO', 'position': 'ILB', 'height': 75.0, 'weight': '230', 'compRating': '0.8448', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '68', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2009', 'playerName': 'Michael Sam', 'highSchool': 'Hitchcock', 'city': 'Hitchcock', 'state': 'TX', 'position': 'WDE', 'height': 75.0, 'weight': '222', 'compRating': '0.8368', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '46', 'stateRank': '180', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2009', 'playerName': "L'Damian Washington", 'highSchool': 'Green Oaks', 'city': 'Shreveport', 'state': 'LA', 'position': 'WR', 'height': 76.0, 'weight': '180', 'compRating': '0.8368', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '138', 'stateRank': '39', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2009', 'playerName': 'Ty Phillips', 'highSchool': 'East St. Louis', 'city': 'East Saint Louis', 'state': 'IL', 'position': 'DT', 'height': 75.0, 'weight': '255', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '84', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2009', 'playerName': 'Justin Britt', 'highSchool': 'Lebanon Sr.', 'city': 'Lebanon', 'state': 'MO', 'position': 'OT', 'height': 77.0, 'weight': '267', 'compRating': '0.8274', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '102', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2009', 'playerName': 'Marvin Foster', 'highSchool': 'North Crowley', 'city': 'Fort Worth', 'state': 'TX', 'position': 'SDE', 'height': 74.0, 'weight': '265', 'compRating': '0.8181', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '75', 'stateRank': '218', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2009', 'playerName': 'Tavon Bolden', 'highSchool': 'Aldine', 'city': 'Houston', 'state': 'TX', 'position': 'S', 'height': 72.0, 'weight': '200', 'compRating': '0.8177', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '103', 'stateRank': '219', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2009', 'playerName': 'Donavan Bonner', 'highSchool': 'Lincoln', 'city': 'Dallas', 'state': 'TX', 'position': 'S', 'height': 74.0, 'weight': '225', 'compRating': '0.8163', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '108', 'stateRank': '224', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2009', 'playerName': 'Jarrell Harrison', 'highSchool': 'City College of San Francisco', 'city': 'San Francisco', 'state': 'CA', 'position': 'S', 'height': 74.0, 'weight': '210', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '133', 'positionRank': '12', 'stateRank': '56'}, {'school': 'missouri', 'year': '2009', 'playerName': 'Mark Hill', 'highSchool': 'Branson', 'city': 'Branson', 'state': 'MO', 'position': 'OT', 'height': 78.0, 'weight': '260', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '119', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2009', 'playerName': 'Matt White', 'highSchool': 'Keller', 'city': 'Keller', 'state': 'TX', 'position': 'CB', 'height': 72.0, 'weight': '170', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '162', 'stateRank': '329', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2009', 'playerName': 'Blaine Dalton', 'highSchool': 'Blue Springs South', 'city': 'Blue Springs', 'state': 'MO', 'position': 'DUAL', 'height': 73.0, 'weight': '190', 'compRating': '0.8915', 'compStars': 4, 'nationalRank': '311', 'positionRank': '12', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2009', 'playerName': 'Pat Smith', 'highSchool': 'Quincy Notre Dame', 'city': 'Quincy', 'state': 'IL', 'position': 'K', 'height': 71.0, 'weight': '185', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2005', 'playerName': 'Louis Ellis', 'highSchool': 'Lanier', 'city': 'Jackson', 'state': 'MS', 'position': 'DT', 'height': 75.0, 'weight': '293', 'compRating': '0.9222', 'compStars': 4, 'nationalRank': '136', 'positionRank': '13', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2005', 'playerName': 'Calvin Wilson', 'highSchool': 'Hattiesburg', 'city': 'Hattiesburg', 'state': 'MS', 'position': 'OT', 'height': 77.0, 'weight': '336', 'compRating': '0.9222', 'compStars': 4, 'nationalRank': '136', 'positionRank': '13', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2005', 'playerName': 'Jamar Chaney', 'highSchool': 'St. Lucie West Centennial', 'city': 'Port Saint Lucie', 'state': 'FL', 'position': 'OLB', 'height': 72.0, 'weight': '216', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '228', 'positionRank': '26', 'stateRank': '33', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2005', 'playerName': 'Keith Fitzhugh', 'highSchool': 'Lovejoy', 'city': 'Hampton', 'state': 'GA', 'position': 'CB', 'height': 71.0, 'weight': '200', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '286', 'positionRank': '25', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2005', 'playerName': 'Tim Holloway', 'highSchool': 'Seminary', 'city': 'Seminary', 'state': 'MS', 'position': 'ATH', 'height': 76.0, 'weight': '215', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '373', 'positionRank': '23', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2005', 'playerName': 'Jimmy Miller', 'highSchool': 'Venice', 'city': 'Los Angeles', 'state': 'CA', 'position': 'ILB', 'height': 73.0, 'weight': '222', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '564', 'positionRank': '29', 'stateRank': '70', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2005', 'playerName': 'Charles Burns', 'highSchool': 'Hattiesburg', 'city': 'Hattiesburg', 'state': 'MS', 'position': 'ILB', 'height': 74.0, 'weight': '250', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '637', 'positionRank': '36', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2005', 'playerName': 'Archie Sims', 'highSchool': 'West Jones', 'city': 'Laurel', 'state': 'MS', 'position': 'OLB', 'height': 72.0, 'weight': '200', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '683', 'positionRank': '55', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2005', 'playerName': 'Antonio Johnson', 'highSchool': 'Mississippi Delta C.C.', 'city': 'Moorhead', 'state': 'MS', 'position': 'DT', 'height': 75.0, 'weight': '300', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '81', 'positionRank': '13', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2005', 'playerName': 'Tray Rutland', 'highSchool': 'Tri-cities', 'city': 'Atlanta', 'state': 'GA', 'position': 'DUAL', 'height': 75.0, 'weight': '191', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '846', 'positionRank': '31', 'stateRank': '50', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2005', 'playerName': 'Ty Evans', 'highSchool': 'Lexington', 'city': 'Lexington', 'state': 'TN', 'position': 'PRO', 'height': 75.0, 'weight': '202', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '858', 'positionRank': '32', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2005', 'playerName': 'Craig Jenkins', 'highSchool': 'Pearl', 'city': 'Pearl', 'state': 'MS', 'position': 'OG', 'height': 76.0, 'weight': '352', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '866', 'positionRank': '68', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2005', 'playerName': 'Aubrey Bell', 'highSchool': 'Blount', 'city': 'Eight Mile', 'state': 'AL', 'position': 'WR', 'height': 75.0, 'weight': '204', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '873', 'positionRank': '87', 'stateRank': '28', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2005', 'playerName': 'Johnny Carpenter', 'highSchool': 'Citronelle Sch', 'city': 'Citronelle', 'state': 'AL', 'position': 'OG', 'height': 75.0, 'weight': '280', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '881', 'positionRank': '72', 'stateRank': '29', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2005', 'playerName': 'Chris Spencer', 'highSchool': 'Meridian', 'city': 'Meridian', 'state': 'MS', 'position': 'OG', 'height': 76.0, 'weight': '300', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '907', 'positionRank': '77', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2005', 'playerName': 'Cory Gardhigh', 'highSchool': 'Cedartown', 'city': 'Cedartown', 'state': 'GA', 'position': 'WR', 'height': 75.0, 'weight': '218', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '930', 'positionRank': '91', 'stateRank': '54', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2005', 'playerName': 'James Redmond', 'highSchool': 'Copiah-Lincoln C.C.', 'city': 'Wesson', 'state': 'MS', 'position': 'OT', 'height': 78.0, 'weight': '320', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '114', 'positionRank': '12', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2005', 'playerName': 'Brandon Whittie', 'highSchool': 'Englewood', 'city': 'Jacksonville', 'state': 'FL', 'position': 'ILB', 'height': 75.0, 'weight': '225', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '75', 'stateRank': '158', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2005', 'playerName': 'Tay Bowser', 'highSchool': 'Gilmer', 'city': 'Gilmer', 'state': 'TX', 'position': 'WR', 'height': 76.0, 'weight': '175', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '167', 'stateRank': '251', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2005', 'playerName': 'Adron Chambers', 'highSchool': 'Pensacola', 'city': 'Pensacola', 'state': 'FL', 'position': 'WR', 'height': 69.0, 'weight': '171', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '175', 'stateRank': '179', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2005', 'playerName': 'Michael Gates', 'highSchool': 'Sandy Creek', 'city': 'Tyrone', 'state': 'GA', 'position': 'OG', 'height': 76.0, 'weight': '260', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '144', 'stateRank': '89', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2005', 'playerName': 'Anthony Dunning', 'highSchool': 'Coffeeville Sch', 'city': 'Coffeeville', 'state': 'AL', 'position': 'OG', 'height': 75.0, 'weight': '320', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '153', 'stateRank': '49', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2005', 'playerName': 'Jessie Bowman', 'highSchool': 'Brookhaven', 'city': 'Brookhaven', 'state': 'MS', 'position': 'DT', 'height': 73.0, 'weight': '305', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '99', 'stateRank': '27', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2005', 'playerName': 'Brandon Hart', 'highSchool': 'Troup County', 'city': 'Lagrange', 'state': 'GA', 'position': 'FB', 'height': 72.0, 'weight': '245', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '28', 'stateRank': '111', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2005', 'playerName': 'Blake McAdams', 'highSchool': 'Ripley', 'city': 'Ripley', 'state': 'TN', 'position': 'K', 'height': 72.0, 'weight': '180', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '35', 'stateRank': '39', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2005', 'playerName': 'Jarvis Kyles', 'highSchool': 'Baldwin', 'city': 'Milledgeville', 'state': 'GA', 'position': 'CB', 'height': 72.0, 'weight': '173', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA'}, {'school': 'mississippi-state', 'year': '2005', 'playerName': 'Derek Pegues', 'highSchool': 'South Panola', 'city': 'Batesville', 'state': 'MS', 'position': 'CB', 'height': 70.0, 'weight': '192', 'compRating': '0.9851', 'compStars': 5, 'nationalRank': '35', 'positionRank': '4', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2013', 'playerName': 'Reuben Foster', 'highSchool': 'Auburn', 'city': 'Auburn', 'state': 'AL', 'position': 'ILB', 'height': 73.0, 'weight': '240', 'compRating': '0.9961', 'compStars': 5, 'nationalRank': '6', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 99 ', '247Stars': 5, '247nationalRank': '15', '247positionRank': '1', '247stateRank': '1'}, {'school': 'alabama', 'year': '2013', 'playerName': 'Derrick Henry', 'highSchool': 'Yulee', 'city': 'Yulee', 'state': 'FL', 'position': 'ATH', 'height': 75.0, 'weight': '240', 'compRating': '0.9929', 'compStars': 5, 'nationalRank': '12', 'positionRank': '1', 'stateRank': '4', '247Rating': ' 99 ', '247Stars': 5, '247nationalRank': '12', '247positionRank': '1', '247stateRank': '3'}, {'school': 'alabama', 'year': '2013', 'playerName': 'Jonathan Allen', 'highSchool': 'Stone Bridge', 'city': 'Ashburn', 'state': 'VA', 'position': 'OLB', 'height': 75.0, 'weight': '260', 'compRating': '0.9924', 'compStars': 5, 'nationalRank': '15', 'positionRank': '3', 'stateRank': '2', '247Rating': ' 99 ', '247Stars': 5, '247nationalRank': '11', '247positionRank': '2', '247stateRank': '2'}, {'school': 'alabama', 'year': '2013', 'playerName': 'O.J. Howard', 'highSchool': 'Autauga Academy', 'city': 'Prattville', 'state': 'AL', 'position': 'TE', 'height': 77.5, 'weight': '221', 'compRating': '0.9916', 'compStars': 5, 'nationalRank': '19', 'positionRank': '1', 'stateRank': '2', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '20', '247positionRank': '1', '247stateRank': '2'}, {'school': 'alabama', 'year': '2013', 'playerName': 'Robert Foster', 'highSchool': 'Central Valley', 'city': 'Monaca', 'state': 'PA', 'position': 'WR', 'height': 74.0, 'weight': '185', 'compRating': '0.9896', 'compStars': 5, 'nationalRank': '23', 'positionRank': '2', 'stateRank': '1', '247Rating': ' 99 ', '247Stars': 5, '247nationalRank': '18', '247positionRank': '1', '247stateRank': '2'}, {'school': 'alabama', 'year': '2013', 'playerName': "A'Shawn Robinson", 'highSchool': 'Arlington Heights', 'city': 'Fort Worth', 'state': 'TX', 'position': 'OT', 'height': 77.0, 'weight': '302', 'compRating': '0.9852', 'compStars': 5, 'nationalRank': '31', 'positionRank': '2', 'stateRank': '4', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '26', '247positionRank': '3', '247stateRank': '3'}, {'school': 'alabama', 'year': '2013', 'playerName': 'Alvin Kamara', 'highSchool': 'Norcross', 'city': 'Norcross', 'state': 'GA', 'position': 'APB', 'height': 70.0, 'weight': '195', 'compRating': '0.9797', 'compStars': 4, 'nationalRank': '42', 'positionRank': '1', 'stateRank': '5', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '66', '247positionRank': '3', '247stateRank': '7'}, {'school': 'alabama', 'year': '2013', 'playerName': 'Dee Liner', 'highSchool': 'Muscle Shoals', 'city': 'Muscle Shoals', 'state': 'AL', 'position': 'DT', 'height': 74.5, 'weight': '277', 'compRating': '0.9760', 'compStars': 4, 'nationalRank': '47', 'positionRank': '4', 'stateRank': '3', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '112', '247positionRank': '10', '247stateRank': '7'}, {'school': 'alabama', 'year': '2013', 'playerName': 'Altee Tenpenny', 'highSchool': 'North Little Rock', 'city': 'North Little Rock', 'state': 'AR', 'position': 'RB', 'height': 71.0, 'weight': '212', 'compRating': '0.9748', 'compStars': 4, 'nationalRank': '53', 'positionRank': '7', 'stateRank': '1', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '51', '247positionRank': '5', '247stateRank': '1'}, {'school': 'alabama', 'year': '2013', 'playerName': 'Grant Hill', 'highSchool': 'Huntsville', 'city': 'Huntsville', 'state': 'AL', 'position': 'OG', 'height': 78.0, 'weight': '300', 'compRating': '0.9733', 'compStars': 4, 'nationalRank': '61', 'positionRank': '2', 'stateRank': '4', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '54', '247positionRank': '2', '247stateRank': '3'}, {'school': 'alabama', 'year': '2013', 'playerName': 'Tyren Jones', 'highSchool': 'Walton', 'city': 'Marietta', 'state': 'GA', 'position': 'RB', 'height': 68.5, 'weight': '202', 'compRating': '0.9716', 'compStars': 4, 'nationalRank': '66', 'positionRank': '8', 'stateRank': '6'}, {'school': 'alabama', 'year': '2013', 'playerName': 'Cooper Bateman', 'highSchool': 'Cottonwood', 'city': 'Salt Lake City', 'state': 'UT', 'position': 'PRO', 'height': 75.0, 'weight': '195', 'compRating': '0.9631', 'compStars': 4, 'nationalRank': '81', 'positionRank': '4', 'stateRank': '1', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '87', '247positionRank': '5', '247stateRank': '1'}, {'school': 'alabama', 'year': '2013', 'playerName': 'ArDarius Stewart', 'highSchool': 'Fultondale', 'city': 'Birmingham', 'state': 'AL', 'position': 'ATH', 'height': 73.0, 'weight': '190', 'compRating': '0.9625', 'compStars': 4, 'nationalRank': '82', 'positionRank': '3', 'stateRank': '5', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '67', '247positionRank': '3', '247stateRank': '5'}, {'school': 'alabama', 'year': '2013', 'playerName': 'Tim Williams', 'highSchool': 'University Lab', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'WDE', 'height': 75.0, 'weight': '225', 'compRating': '0.9620', 'compStars': 4, 'nationalRank': '83', 'positionRank': '2', 'stateRank': '3', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '73', '247positionRank': '2', '247stateRank': '3'}, {'school': 'alabama', 'year': '2013', 'playerName': 'Maurice Smith', 'highSchool': 'Dulles', 'city': 'Sugar Land', 'state': 'TX', 'position': 'CB', 'height': 71.5, 'weight': '184', 'compRating': '0.9613', 'compStars': 4, 'nationalRank': '87', 'positionRank': '9', 'stateRank': '11', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '121', '247positionRank': '11', '247stateRank': '14'}, {'school': 'alabama', 'year': '2013', 'playerName': 'Darius Paige', 'highSchool': 'Foley', 'city': 'Foley', 'state': 'AL', 'position': 'DT', 'height': 76.0, 'weight': '295', 'compRating': '0.9286', 'compStars': 4, 'nationalRank': '168', 'positionRank': '14', 'stateRank': '8', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '55', '247positionRank': '4', '247stateRank': '4'}, {'school': 'alabama', 'year': '2013', 'playerName': 'Anthony Averett', 'highSchool': 'Woodbury', 'city': 'Woodbury', 'state': 'NJ', 'position': 'S', 'height': 73.0, 'weight': '180', 'compRating': '0.9043', 'compStars': 4, 'nationalRank': '265', 'positionRank': '24', 'stateRank': '10', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '115', '247positionRank': '14', '247stateRank': '5'}, {'school': 'alabama', 'year': '2013', 'playerName': 'Leon Brown', 'highSchool': 'ASA College', 'city': 'None', 'state': 'None', 'position': 'OT', 'height': 78.0, 'weight': '310', 'compRating': '0.8914', 'compStars': 4, 'nationalRank': '19', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '26', '247positionRank': '4', '247stateRank': '1'}, {'school': 'alabama', 'year': '2013', 'playerName': 'Raheem Falkins', 'highSchool': 'G.W. Carver', 'city': 'New Orleans', 'state': 'LA', 'position': 'WR', 'height': 76.5, 'weight': '195', 'compRating': '0.8859', 'compStars': 3, 'nationalRank': '349', 'positionRank': '47', 'stateRank': '14', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '41', '247stateRank': '13'}, {'school': 'alabama', 'year': '2013', 'playerName': 'Eddie Jackson', 'highSchool': 'Boyd Anderson', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'ATH', 'height': 73.0, 'weight': '175', 'compRating': '0.8857', 'compStars': 3, 'nationalRank': '350', 'positionRank': '14', 'stateRank': '50', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '156', '247positionRank': '5', '247stateRank': '21'}, {'school': 'alabama', 'year': '2013', 'playerName': 'Bradley Bozeman', 'highSchool': 'Handley', 'city': 'Roanoke', 'state': 'AL', 'position': 'OG', 'height': 76.5, 'weight': '305', 'compRating': '0.8708', 'compStars': 3, 'nationalRank': '471', 'positionRank': '27', 'stateRank': '16', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '46', '247stateRank': '25'}, {'school': 'alabama', 'year': '2013', 'playerName': 'Jonathan Cook', 'highSchool': 'Spanish Fort', 'city': 'Spanish Fort', 'state': 'AL', 'position': 'CB', 'height': 72.0, 'weight': '183', 'compRating': '0.8664', 'compStars': 3, 'nationalRank': '528', 'positionRank': '38', 'stateRank': '17', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '84', '247positionRank': '8', '247stateRank': '19'}, {'school': 'alabama', 'year': '2013', 'playerName': 'Brandon Hill', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'OT', 'height': 78.5, 'weight': '390', 'compRating': '0.8637', 'compStars': 3, 'nationalRank': '14', 'positionRank': '1', 'stateRank': '12'}, {'school': 'alabama', 'year': '2013', 'playerName': 'Walker Jones', 'highSchool': 'Evangelical Christian', 'city': 'Cordova', 'state': 'TN', 'position': 'ILB', 'height': 75.0, 'weight': '238', 'compRating': '0.8580', 'compStars': 3, 'nationalRank': '664', 'positionRank': '43', 'stateRank': '16', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '56', '247stateRank': '20'}, {'school': 'alabama', 'year': '2013', 'playerName': 'Parker McLeod', 'highSchool': 'Walton', 'city': 'Marietta', 'state': 'GA', 'position': 'PRO', 'height': 75.0, 'weight': '190', 'compRating': '0.8433', 'compStars': 3, 'nationalRank': '925', 'positionRank': '40', 'stateRank': '84', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '60', '247stateRank': '109'}, {'school': 'alabama', 'year': '2013', 'playerName': 'Cole Mazza', 'highSchool': 'Liberty', 'city': 'Bakersfield', 'state': 'CA', 'position': 'LS', 'height': 74.0, 'weight': '241', 'compRating': '0.7985', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '1', 'stateRank': '199', '247Rating': ' 76 ', '247Stars': 2, '247positionRank': '1', '247stateRank': '228'}, {'school': 'florida', 'year': '2006', 'playerName': 'Marcus Gilbert', 'highSchool': 'St. Thomas Aquinas', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'OT', 'height': 77.0, 'weight': '320', 'compRating': '0.9313', 'compStars': 4, 'nationalRank': '137', 'positionRank': '9', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2006', 'playerName': 'Brandon Antwine', 'highSchool': 'Garland', 'city': 'Garland', 'state': 'TX', 'position': 'DT', 'height': 72.0, 'weight': '290', 'compRating': '0.9308', 'compStars': 4, 'nationalRank': '138', 'positionRank': '9', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2006', 'playerName': 'A.J. Jones', 'highSchool': 'Middleton', 'city': 'Tampa', 'state': 'FL', 'position': 'ILB', 'height': 73.0, 'weight': '226', 'compRating': '0.9124', 'compStars': 4, 'nationalRank': '185', 'positionRank': '13', 'stateRank': '31', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2006', 'playerName': 'Corey Hobbs', 'highSchool': 'Oviedo', 'city': 'Oviedo', 'state': 'FL', 'position': 'DT', 'height': 75.0, 'weight': '310', 'compRating': '0.8938', 'compStars': 4, 'nationalRank': '220', 'positionRank': '17', 'stateRank': '38', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2006', 'playerName': 'Trent Pupello', 'highSchool': 'Jefferson', 'city': 'Tampa', 'state': 'FL', 'position': 'TE', 'height': 75.0, 'weight': '245', 'compRating': '0.8844', 'compStars': 3, 'nationalRank': '257', 'positionRank': '15', 'stateRank': '41', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2006', 'playerName': 'Bryan Thomas', 'highSchool': 'Zephyrhills', 'city': 'Zephyrhills', 'state': 'FL', 'position': 'S', 'height': 72.0, 'weight': '186', 'compRating': '0.8656', 'compStars': 3, 'nationalRank': '405', 'positionRank': '31', 'stateRank': '53', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2006', 'playerName': 'Brandon James', 'highSchool': 'St. Augustine', 'city': 'Saint Augustine', 'state': 'FL', 'position': 'ATH', 'height': 67.0, 'weight': '167', 'compRating': '0.8323', 'compStars': 3, 'nationalRank': '864', 'positionRank': '72', 'stateRank': '108', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2006', 'playerName': 'Wondy Pierre-Louis', 'highSchool': 'Lely', 'city': 'Naples', 'state': 'FL', 'position': 'CB', 'height': 72.0, 'weight': '176', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '148', 'stateRank': '241', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2006', 'playerName': 'Lawrence Marsh', 'highSchool': 'Josey', 'city': 'Augusta', 'state': 'GA', 'position': 'SDE', 'height': 77.0, 'weight': '290', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2006', 'playerName': 'Maurice Hurt', 'highSchool': 'Baldwin', 'city': 'Milledgeville', 'state': 'GA', 'position': 'OG', 'height': 75.0, 'weight': '320', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2006', 'playerName': 'Percy Harvin', 'highSchool': 'Landstown', 'city': 'Virginia Beach', 'state': 'VA', 'position': 'WR', 'height': 71.0, 'weight': '185', 'compRating': '0.9990', 'compStars': 5, 'nationalRank': '2', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2006', 'playerName': 'Tim Tebow', 'highSchool': 'Ponte Vedra', 'city': 'Ponte Vedra Beach', 'state': 'FL', 'position': 'DUAL', 'height': 75.0, 'weight': '215', 'compRating': '0.9919', 'compStars': 5, 'nationalRank': '21', 'positionRank': '1', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2006', 'playerName': 'Carl Johnson', 'highSchool': 'Southern', 'city': 'Durham', 'state': 'NC', 'position': 'OG', 'height': 77.0, 'weight': '355', 'compRating': '0.9887', 'compStars': 5, 'nationalRank': '24', 'positionRank': '2', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2006', 'playerName': 'Brandon Spikes', 'highSchool': 'Crest', 'city': 'Shelby', 'state': 'NC', 'position': 'ILB', 'height': 75.0, 'weight': '235', 'compRating': '0.9831', 'compStars': 4, 'nationalRank': '33', 'positionRank': '5', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2006', 'playerName': 'Jamar Hornsby', 'highSchool': 'Sandalwood', 'city': 'Jacksonville', 'state': 'FL', 'position': 'ATH', 'height': 75.0, 'weight': '195', 'compRating': '0.9649', 'compStars': 4, 'nationalRank': '78', 'positionRank': '3', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2006', 'playerName': 'Jermaine Cunningham', 'highSchool': 'Stephenson', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'WDE', 'height': 76.0, 'weight': '200', 'compRating': '0.9564', 'compStars': 4, 'nationalRank': '85', 'positionRank': '3', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2006', 'playerName': 'Jarred Fayson', 'highSchool': 'Hillsborough', 'city': 'Tampa', 'state': 'FL', 'position': 'ATH', 'height': 73.0, 'weight': '195', 'compRating': '0.9487', 'compStars': 4, 'nationalRank': '93', 'positionRank': '4', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2006', 'playerName': 'Mon Williams', 'highSchool': 'Horn', 'city': 'Mesquite', 'state': 'TX', 'position': 'RB', 'height': 74.0, 'weight': '195', 'compRating': '0.9474', 'compStars': 4, 'nationalRank': '95', 'positionRank': '17', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2006', 'playerName': 'Jim Barrie', 'highSchool': 'Berkeley Prep', 'city': 'Tampa', 'state': 'FL', 'position': 'OT', 'height': 77.0, 'weight': '310', 'compRating': '0.9455', 'compStars': 4, 'nationalRank': '99', 'positionRank': '6', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2006', 'playerName': 'Chevon Walker', 'highSchool': 'Riverdale', 'city': 'Fort Myers', 'state': 'FL', 'position': 'RB', 'height': 71.0, 'weight': '185', 'compRating': '0.9422', 'compStars': 4, 'nationalRank': '107', 'positionRank': '19', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2006', 'playerName': 'Jacques Rickerson', 'highSchool': 'St. Augustine', 'city': 'Saint Augustine', 'state': 'FL', 'position': 'CB', 'height': 71.0, 'weight': '175', 'compRating': '0.9389', 'compStars': 4, 'nationalRank': '116', 'positionRank': '11', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2006', 'playerName': 'Justin Williams', 'highSchool': 'Charlton County', 'city': 'Folkston', 'state': 'GA', 'position': 'WR', 'height': 73.0, 'weight': '205', 'compRating': '0.9364', 'compStars': 4, 'nationalRank': '123', 'positionRank': '15', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2006', 'playerName': 'Dustin Doe', 'highSchool': 'Hamilton County', 'city': 'Jasper', 'state': 'FL', 'position': 'OLB', 'height': 72.0, 'weight': '210', 'compRating': '0.9324', 'compStars': 4, 'nationalRank': '132', 'positionRank': '5', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2006', 'playerName': 'Riley Cooper', 'highSchool': 'Clearwater Central Catholic', 'city': 'Clearwater', 'state': 'FL', 'position': 'ATH', 'height': 76.0, 'weight': '210', 'compRating': '0.9241', 'compStars': 4, 'nationalRank': '159', 'positionRank': '8', 'stateRank': '25', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2013', 'playerName': 'Ricky Seals-Jones', 'highSchool': 'Sealy', 'city': 'Sealy', 'state': 'TX', 'position': 'ATH', 'height': 77.0, 'weight': '230', 'compRating': '0.9880', 'compStars': 5, 'nationalRank': '24', 'positionRank': '2', 'stateRank': '1', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '23', '247positionRank': '2', '247stateRank': '2'}, {'school': 'texas-am', 'year': '2013', 'playerName': 'Justin Manning', 'highSchool': 'Kimball', 'city': 'Dallas', 'state': 'TX', 'position': 'DT', 'height': 75.0, 'weight': '275', 'compRating': '0.9680', 'compStars': 4, 'nationalRank': '73', 'positionRank': '5', 'stateRank': '10', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '105', '247positionRank': '9', '247stateRank': '12'}, {'school': 'texas-am', 'year': '2013', 'playerName': 'Isaiah Golden', 'highSchool': 'Carthage', 'city': 'Carthage', 'state': 'TX', 'position': 'DT', 'height': 74.0, 'weight': '330', 'compRating': '0.9543', 'compStars': 4, 'nationalRank': '99', 'positionRank': '8', 'stateRank': '12', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '76', '247positionRank': '6', '247stateRank': '7'}, {'school': 'texas-am', 'year': '2013', 'playerName': 'Sebastian LaRue', 'highSchool': 'Santa Monica', 'city': 'Santa Monica', 'state': 'CA', 'position': 'WR', 'height': 71.0, 'weight': '195', 'compRating': '0.9354', 'compStars': 4, 'nationalRank': '141', 'positionRank': '19', 'stateRank': '17', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '126', '247positionRank': '14', '247stateRank': '14'}, {'school': 'texas-am', 'year': '2013', 'playerName': 'Kameron Miles', 'highSchool': 'West Mesquite', 'city': 'Mesquite', 'state': 'TX', 'position': 'S', 'height': 74.0, 'weight': '195', 'compRating': '0.9341', 'compStars': 4, 'nationalRank': '146', 'positionRank': '14', 'stateRank': '19', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '67', '247positionRank': '7', '247stateRank': '15'}, {'school': 'texas-am', 'year': '2013', 'playerName': 'LaQuvionte Gonzalez', 'highSchool': 'Cedar Hill', 'city': 'Cedar Hill', 'state': 'TX', 'position': 'WR', 'height': 70.0, 'weight': '155', 'compRating': '0.9314', 'compStars': 4, 'nationalRank': '156', 'positionRank': '20', 'stateRank': '20', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '155', '247positionRank': '19', '247stateRank': '17'}, {'school': 'texas-am', 'year': '2013', 'playerName': 'Daeshon Hall', 'highSchool': 'Lancaster', 'city': 'Lancaster', 'state': 'TX', 'position': 'WDE', 'height': 78.0, 'weight': '220', 'compRating': '0.9256', 'compStars': 4, 'nationalRank': '177', 'positionRank': '5', 'stateRank': '24', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '146', '247positionRank': '5', '247stateRank': '15'}, {'school': 'texas-am', 'year': '2013', 'playerName': 'JaQuay Savage', 'highSchool': 'Fork Union Military Academy', 'city': 'Fork Union', 'state': 'VA', 'position': 'WR', 'height': 76.0, 'weight': '204', 'compRating': '0.9181', 'compStars': 4, 'nationalRank': '4', 'positionRank': '3', 'stateRank': '4', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '3', '247positionRank': '2', '247stateRank': '3'}, {'school': 'texas-am', 'year': '2013', 'playerName': 'Ishmael Wilson', 'highSchool': 'Bishop Dunne', 'city': 'Dallas', 'state': 'TX', 'position': 'OT', 'height': 77.0, 'weight': '292', 'compRating': '0.9152', 'compStars': 4, 'nationalRank': '215', 'positionRank': '15', 'stateRank': '31', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '177', '247positionRank': '15', '247stateRank': '22'}, {'school': 'texas-am', 'year': '2013', 'playerName': 'Noel Ellis', 'highSchool': 'Edna Karr', 'city': 'New Orleans', 'state': 'LA', 'position': 'CB', 'height': 70.0, 'weight': '170', 'compRating': '0.9113', 'compStars': 4, 'nationalRank': '231', 'positionRank': '19', 'stateRank': '9', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '22', '247stateRank': '11'}, {'school': 'texas-am', 'year': '2013', 'playerName': 'Kenny Hill', 'highSchool': 'Southlake Carroll', 'city': 'Southlake', 'state': 'TX', 'position': 'DUAL', 'height': 74.0, 'weight': '210', 'compRating': '0.9090', 'compStars': 4, 'nationalRank': '241', 'positionRank': '9', 'stateRank': '34', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '8', '247stateRank': '36'}, {'school': 'texas-am', 'year': '2013', 'playerName': 'Kyrion Parker', 'highSchool': 'Manvel', 'city': 'Manvel', 'state': 'TX', 'position': 'WR', 'height': 75.0, 'weight': '195', 'compRating': '0.8943', 'compStars': 4, 'nationalRank': '308', 'positionRank': '45', 'stateRank': '41'}, {'school': 'texas-am', 'year': '2013', 'playerName': 'Hardreck Walker', 'highSchool': 'Westfield', 'city': 'Houston', 'state': 'TX', 'position': 'DT', 'height': 74.0, 'weight': '282', 'compRating': '0.8937', 'compStars': 4, 'nationalRank': '313', 'positionRank': '27', 'stateRank': '43', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '19', '247stateRank': '35'}, {'school': 'texas-am', 'year': '2013', 'playerName': 'James White', 'highSchool': 'Dawson', 'city': 'Pearland', 'state': 'TX', 'position': 'RB', 'height': 72.0, 'weight': '220', 'compRating': '0.8916', 'compStars': 4, 'nationalRank': '327', 'positionRank': '23', 'stateRank': '46', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '21', '247stateRank': '45'}, {'school': 'texas-am', 'year': '2013', 'playerName': 'Darian Claiborne', 'highSchool': 'Port Allen', 'city': 'Port Allen', 'state': 'LA', 'position': 'OLB', 'height': 73.0, 'weight': '220', 'compRating': '0.8841', 'compStars': 3, 'nationalRank': '357', 'positionRank': '24', 'stateRank': '15', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '32', '247stateRank': '14'}, {'school': 'texas-am', 'year': '2013', 'playerName': 'J.J. Gustafson', 'highSchool': 'Jesuit', 'city': 'Dallas', 'state': 'TX', 'position': 'OG', 'height': 77.0, 'weight': '255', 'compRating': '0.8828', 'compStars': 3, 'nationalRank': '364', 'positionRank': '19', 'stateRank': '48', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '42', '247stateRank': '127'}, {'school': 'texas-am', 'year': '2013', 'playerName': 'Tommy Sanders', 'highSchool': 'Butler C.C.', 'city': 'El Dorado', 'state': 'KS', 'position': 'OLB', 'height': 73.0, 'weight': '210', 'compRating': '0.8797', 'compStars': 3, 'nationalRank': '29', 'positionRank': '1', 'stateRank': '8', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '18', '247positionRank': '1', '247stateRank': '3'}, {'school': 'texas-am', 'year': '2013', 'playerName': 'Jordan Mastrogiovanni', 'highSchool': 'Jesuit', 'city': 'Dallas', 'state': 'TX', 'position': 'ILB', 'height': 74.0, 'weight': '225', 'compRating': '0.8781', 'compStars': 3, 'nationalRank': '397', 'positionRank': '24', 'stateRank': '53', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '32', '247stateRank': '93'}, {'school': 'texas-am', 'year': '2013', 'playerName': 'Brett Wade', 'highSchool': 'Kennedale', 'city': 'Kennedale', 'state': 'TX', 'position': 'ILB', 'height': 73.0, 'weight': '212', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '398', 'positionRank': '25', 'stateRank': '54', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '19', '247stateRank': '43'}, {'school': 'texas-am', 'year': '2013', 'playerName': 'Joas Aguilar', 'highSchool': 'Birdville', 'city': 'North Richland Hills', 'state': 'TX', 'position': 'OG', 'height': 76.0, 'weight': '290', 'compRating': '0.8775', 'compStars': 3, 'nationalRank': '403', 'positionRank': '21', 'stateRank': '55', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '32', '247stateRank': '94'}, {'school': 'texas-am', 'year': '2013', 'playerName': 'Tavares Garner', 'highSchool': 'Manvel', 'city': 'Manvel', 'state': 'TX', 'position': 'CB', 'height': 70.0, 'weight': '170', 'compRating': '0.8755', 'compStars': 3, 'nationalRank': '421', 'positionRank': '30', 'stateRank': '58', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '24', '247stateRank': '38'}, {'school': 'texas-am', 'year': '2013', 'playerName': 'Victor Davis', 'highSchool': 'Terry', 'city': 'Rosenberg', 'state': 'TX', 'position': 'S', 'height': 73.0, 'weight': '178', 'compRating': '0.8696', 'compStars': 3, 'nationalRank': '481', 'positionRank': '35', 'stateRank': '66', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '40', '247stateRank': '77'}, {'school': 'texas-am', 'year': '2013', 'playerName': 'Reggie Chevis', 'highSchool': 'Sharpstown', 'city': 'Houston', 'state': 'TX', 'position': 'ILB', 'height': 73.0, 'weight': '247', 'compRating': '0.8641', 'compStars': 3, 'nationalRank': '556', 'positionRank': '39', 'stateRank': '79', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '28', '247stateRank': '82'}, {'school': 'texas-am', 'year': '2013', 'playerName': 'Cameron Clear', 'highSchool': 'Arizona Western College', 'city': 'Yuma', 'state': 'AZ', 'position': 'TE', 'height': 78.0, 'weight': '265', 'compRating': '0.8635', 'compStars': 3, 'nationalRank': '54', 'positionRank': '2', 'stateRank': '6', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '118', '247positionRank': '10', '247stateRank': '1'}, {'school': 'texas-am', 'year': '2013', 'playerName': 'Jay Arnold', 'highSchool': 'Rockwall-Heath', 'city': 'Rockwall', 'state': 'TX', 'position': 'SDE', 'height': 76.0, 'weight': '240', 'compRating': '0.8616', 'compStars': 3, 'nationalRank': '596', 'positionRank': '30', 'stateRank': '86', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '32', '247stateRank': '86'}, {'school': 'texas-am', 'year': '2013', 'playerName': 'Shaan Washington', 'highSchool': 'Alexandria', 'city': 'Alexandria', 'state': 'LA', 'position': 'ATH', 'height': 75.0, 'weight': '210', 'compRating': '0.8506', 'compStars': 3, 'nationalRank': '800', 'positionRank': '55', 'stateRank': '33', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '40', '247stateRank': '25'}, {'school': 'texas-am', 'year': '2013', 'playerName': 'Jeremy Tabuyo', 'highSchool': 'St. Louis', 'city': 'Honolulu', 'state': 'HI', 'position': 'WR', 'height': 71.0, 'weight': '174', 'compRating': '0.8459', 'compStars': 3, 'nationalRank': '883', 'positionRank': '118', 'stateRank': '4', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '88', '247stateRank': '4'}, {'school': 'texas-am', 'year': '2013', 'playerName': 'Alex Sezer', 'highSchool': 'Little Cypress-Mauriceville', 'city': 'Orange', 'state': 'TX', 'position': 'ATH', 'height': 70.0, 'weight': '180', 'compRating': '0.8432', 'compStars': 3, 'nationalRank': '927', 'positionRank': '63', 'stateRank': '137', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '53', '247stateRank': '121'}, {'school': 'texas-am', 'year': '2013', 'playerName': 'Jonathan Wiggins', 'highSchool': 'Alief Taylor', 'city': 'Houston', 'state': 'TX', 'position': 'S', 'height': 75.0, 'weight': '200', 'compRating': '0.8413', 'compStars': 3, 'nationalRank': '962', 'positionRank': '69', 'stateRank': '144', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '92', '247stateRank': '207'}, {'school': 'texas-am', 'year': '2013', 'playerName': 'Jeremiah Stuckey', 'highSchool': 'City College of San Francisco', 'city': 'San Francisco', 'state': 'CA', 'position': 'OT', 'height': 78.0, 'weight': '285', 'compRating': '0.8404', 'compStars': 3, 'nationalRank': '118', 'positionRank': '9', 'stateRank': '38', '247Rating': ' 81 ', '247Stars': 3, '247nationalRank': '177', '247positionRank': '18', '247stateRank': '66'}, {'school': 'texas-am', 'year': '2013', 'playerName': 'Jordan Points', 'highSchool': 'Rockwall-Heath', 'city': 'Rockwall', 'state': 'TX', 'position': 'SDE', 'height': 75.0, 'weight': '255', 'compRating': '0.8381', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '53', 'stateRank': '161', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '60', '247stateRank': '199'}, {'school': 'texas-am', 'year': '2013', 'playerName': 'LaQuvionte Gonzales', 'highSchool': 'Cedar Hill', 'city': 'Cedar Hill', 'state': 'TX', 'position': 'WR', 'height': 70.0, 'weight': '175', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2013', 'playerName': 'Kohl Stewart', 'highSchool': 'St Pius X', 'city': 'Houston', 'state': 'TX', 'position': 'PRO', 'height': 75.0, 'weight': '190', 'compRating': '0.9284', 'compStars': 4, 'nationalRank': '170', 'positionRank': '12', 'stateRank': '22'}, {'school': 'tennessee', 'year': '2013', 'playerName': 'Marquez North', 'highSchool': 'Mallard Creek', 'city': 'Charlotte', 'state': 'NC', 'position': 'WR', 'height': 76.0, 'weight': '212', 'compRating': '0.9598', 'compStars': 4, 'nationalRank': '88', 'positionRank': '11', 'stateRank': '1', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '154', '247positionRank': '18', '247stateRank': '3'}, {'school': 'tennessee', 'year': '2013', 'playerName': 'Joshua Dobbs', 'highSchool': 'Alpharetta', 'city': 'Alpharetta', 'state': 'GA', 'position': 'PRO', 'height': 75.0, 'weight': '190', 'compRating': '0.9305', 'compStars': 4, 'nationalRank': '158', 'positionRank': '10', 'stateRank': '14', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '107', '247positionRank': '8', '247stateRank': '10'}, {'school': 'tennessee', 'year': '2013', 'playerName': 'Jason Carr', 'highSchool': 'White Station', 'city': 'Memphis', 'state': 'TN', 'position': 'SDE', 'height': 78.0, 'weight': '270', 'compRating': '0.9197', 'compStars': 4, 'nationalRank': '198', 'positionRank': '13', 'stateRank': '5'}, {'school': 'tennessee', 'year': '2013', 'playerName': 'Jalen Reeves-Maybin', 'highSchool': 'Northeast', 'city': 'Clarksville', 'state': 'TN', 'position': 'OLB', 'height': 73.0, 'weight': '200', 'compRating': '0.9050', 'compStars': 4, 'nationalRank': '256', 'positionRank': '17', 'stateRank': '8', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '233', '247positionRank': '17', '247stateRank': '7'}, {'school': 'tennessee', 'year': '2013', 'playerName': 'Ryan Jenkins', 'highSchool': 'Lassiter', 'city': 'Marietta', 'state': 'GA', 'position': 'WR', 'height': 70.5, 'weight': '181', 'compRating': '0.8832', 'compStars': 3, 'nationalRank': '362', 'positionRank': '50', 'stateRank': '30', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '196', '247positionRank': '28', '247stateRank': '18'}, {'school': 'tennessee', 'year': '2013', 'playerName': 'Austin Sanders', 'highSchool': 'Bradley Central', 'city': 'Cleveland', 'state': 'TN', 'position': 'OT', 'height': 77.0, 'weight': '295', 'compRating': '0.8793', 'compStars': 3, 'nationalRank': '384', 'positionRank': '31', 'stateRank': '10', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '28', '247stateRank': '10'}, {'school': 'tennessee', 'year': '2013', 'playerName': 'Riley Ferguson', 'highSchool': 'Butler', 'city': 'Matthews', 'state': 'NC', 'position': 'PRO', 'height': 75.0, 'weight': '190', 'compRating': '0.8776', 'compStars': 3, 'nationalRank': '402', 'positionRank': '23', 'stateRank': '12', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '40', '247positionRank': '2', '247stateRank': '7'}, {'school': 'tennessee', 'year': '2013', 'playerName': 'Alphonso Carter', 'highSchool': 'Frederick Douglass', 'city': 'Upper Marlboro', 'state': 'MD', 'position': 'WR', 'height': 76.0, 'weight': '195', 'compRating': '0.8680', 'compStars': 3, 'nationalRank': '499', 'positionRank': '70', 'stateRank': '11', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '73', '247positionRank': '11', '247stateRank': '1'}, {'school': 'tennessee', 'year': '2013', 'playerName': 'Corey Vereen', 'highSchool': 'West Orange', 'city': 'Winter Garden', 'state': 'FL', 'position': 'ILB', 'height': 74.0, 'weight': '235', 'compRating': '0.8677', 'compStars': 3, 'nationalRank': '502', 'positionRank': '35', 'stateRank': '77', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '42', '247stateRank': '110'}, {'school': 'tennessee', 'year': '2013', 'playerName': 'Lemond Johnson', 'highSchool': 'Cooper City', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'S', 'height': 71.0, 'weight': '190', 'compRating': '0.8655', 'compStars': 3, 'nationalRank': '544', 'positionRank': '37', 'stateRank': '81', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '51', '247stateRank': '97'}, {'school': 'tennessee', 'year': '2013', 'playerName': 'Cameron Sutton', 'highSchool': 'Jonesboro', 'city': 'Jonesboro', 'state': 'GA', 'position': 'ATH', 'height': 72.0, 'weight': '175', 'compRating': '0.8625', 'compStars': 3, 'nationalRank': '578', 'positionRank': '35', 'stateRank': '54', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '27', '247stateRank': '49'}, {'school': 'tennessee', 'year': '2013', 'playerName': 'Jaylen Miller', 'highSchool': 'Gaffney', 'city': 'Gaffney', 'state': 'SC', 'position': 'SDE', 'height': 74.0, 'weight': '260', 'compRating': '0.8565', 'compStars': 3, 'nationalRank': '693', 'positionRank': '36', 'stateRank': '11', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '54', '247stateRank': '13'}, {'school': 'tennessee', 'year': '2013', 'playerName': 'Dylan Wiesman', 'highSchool': 'Colerain', 'city': 'Cincinnati', 'state': 'OH', 'position': 'OG', 'height': 75.5, 'weight': '313', 'compRating': '0.8518', 'compStars': 3, 'nationalRank': '784', 'positionRank': '46', 'stateRank': '46', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '48', '247stateRank': '56'}, {'school': 'tennessee', 'year': '2013', 'playerName': 'A.J. Branisel', 'highSchool': 'Notre Dame-Cathedral Latin School', 'city': 'Chardon', 'state': 'OH', 'position': 'TE', 'height': 76.0, 'weight': '225', 'compRating': '0.8503', 'compStars': 3, 'nationalRank': '810', 'positionRank': '31', 'stateRank': '50', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '42', '247stateRank': '53'}, {'school': 'tennessee', 'year': '2013', 'playerName': 'Johnathon Johnson', 'highSchool': 'Blinn College', 'city': 'Brenham', 'state': 'TX', 'position': 'WR', 'height': 68.5, 'weight': '186', 'compRating': '0.8400', 'compStars': 3, 'nationalRank': '125', 'positionRank': '18', 'stateRank': '8', '247Rating': ' 84 ', '247Stars': 3, '247nationalRank': '139', '247positionRank': '21', '247stateRank': '7'}, {'school': 'tennessee', 'year': '2013', 'playerName': 'Malik Brown', 'highSchool': 'Dwyer', 'city': 'Palm Beach Gardens', 'state': 'FL', 'position': 'WDE', 'height': 75.0, 'weight': '253', 'compRating': '0.8386', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '44', 'stateRank': '146', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '26', '247stateRank': '90'}, {'school': 'tennessee', 'year': '2013', 'playerName': 'Brett Kendrick', 'highSchool': 'Christian Academy of Knoxville', 'city': 'Knoxville', 'state': 'TN', 'position': 'OT', 'height': 77.5, 'weight': '295', 'compRating': '0.8295', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '93', 'stateRank': '21', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '82', '247stateRank': '21'}, {'school': 'tennessee', 'year': '2013', 'playerName': 'Malik Foreman', 'highSchool': 'Dobyns Bennett', 'city': 'Kingsport', 'state': 'TN', 'position': 'ATH', 'height': 70.0, 'weight': '170', 'compRating': '0.8289', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '91', 'stateRank': '22', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '60', '247stateRank': '18'}, {'school': 'tennessee', 'year': '2013', 'playerName': 'Riyahd Jones', 'highSchool': 'Garden City C.C.', 'city': 'Garden City', 'state': 'KS', 'position': 'CB', 'height': 72.0, 'weight': '186', 'compRating': '0.8262', 'compStars': 3, 'nationalRank': '153', 'positionRank': '16', 'stateRank': '24', '247Rating': ' 82 ', '247Stars': 3, '247nationalRank': '162', '247positionRank': '16', '247stateRank': '21'}, {'school': 'tennessee', 'year': '2013', 'playerName': 'Josh Smith', 'highSchool': 'Christian Academy of Knoxville', 'city': 'Knoxville', 'state': 'TN', 'position': 'WR', 'height': 73.0, 'weight': '190', 'compRating': '0.8209', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '194', 'stateRank': '27', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '121', '247stateRank': '17'}, {'school': 'tennessee', 'year': '2013', 'playerName': 'Woody Quinn', 'highSchool': 'Santa Ana College', 'city': 'Santa Ana', 'state': 'CA', 'position': 'TE', 'height': 77.5, 'weight': '256', 'compRating': '0.8091', 'compStars': 3, 'nationalRank': '212', 'positionRank': '10', 'stateRank': '78', '247Rating': ' 84 ', '247Stars': 3, '247nationalRank': '136', '247positionRank': '8', '247stateRank': '44'}, {'school': 'tennessee', 'year': '2013', 'playerName': 'Kendal Vickers', 'highSchool': 'Havelock', 'city': 'Havelock', 'state': 'NC', 'position': 'WDE', 'height': 75.0, 'weight': '240', 'compRating': '0.7995', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '82', 'stateRank': '49', '247Rating': ' 78 ', '247Stars': 2, '247positionRank': '98', '247stateRank': '58'}, {'school': 'tennessee', 'year': '2013', 'playerName': 'Devaun Swafford', 'highSchool': 'Dobyns Bennett', 'city': 'Kingsport', 'state': 'TN', 'position': 'APB', 'height': 70.0, 'weight': '170', 'compRating': '0.7857', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '58', 'stateRank': '49', '247Rating': ' 78 ', '247Stars': 2, '247positionRank': '55', '247stateRank': '53'}, {'school': 'lsu', 'year': '2017', 'playerName': 'JaCoby Stevens', 'highSchool': 'Oakland', 'city': 'Murfreesboro', 'state': 'TN', 'position': 'S', 'height': 73.0, 'weight': '200', 'compRating': '0.9901', 'compStars': 5, 'nationalRank': '18', 'positionRank': '1', 'stateRank': '2', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '23', '247positionRank': '2', '247stateRank': '2'}, {'school': 'lsu', 'year': '2017', 'playerName': "K'Lavon Chaisson", 'highSchool': 'North Shore', 'city': 'Houston', 'state': 'TX', 'position': 'WDE', 'height': 76.0, 'weight': '220', 'compRating': '0.9821', 'compStars': 4, 'nationalRank': '37', 'positionRank': '4', 'stateRank': '5', '247Rating': ' 99 ', '247Stars': 5, '247nationalRank': '11', '247positionRank': '3', '247stateRank': '3'}, {'school': 'lsu', 'year': '2017', 'playerName': 'Austin Deculus', 'highSchool': 'Cy-Fair', 'city': 'Cypress', 'state': 'TX', 'position': 'OT', 'height': 78.0, 'weight': '331', 'compRating': '0.9772', 'compStars': 4, 'nationalRank': '48', 'positionRank': '10', 'stateRank': '7', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '91', '247positionRank': '13', '247stateRank': '12'}, {'school': 'lsu', 'year': '2017', 'playerName': 'Tyler Shelvin', 'highSchool': 'Notre Dame', 'city': 'Crowley', 'state': 'LA', 'position': 'DT', 'height': 74.5, 'weight': '376', 'compRating': '0.9754', 'compStars': 4, 'nationalRank': '54', 'positionRank': '4', 'stateRank': '1', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '76', '247positionRank': '6', '247stateRank': '3'}, {'school': 'lsu', 'year': '2017', 'playerName': 'Jacob Phillips', 'highSchool': 'East Nashville Magnet School', 'city': 'Nashville', 'state': 'TN', 'position': 'ILB', 'height': 75.5, 'weight': '228', 'compRating': '0.9719', 'compStars': 4, 'nationalRank': '61', 'positionRank': '1', 'stateRank': '4', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '46', '247positionRank': '2', '247stateRank': '4'}, {'school': 'lsu', 'year': '2017', 'playerName': 'Grant Delpit', 'highSchool': 'IMG Academy', 'city': 'Bradenton', 'state': 'FL', 'position': 'S', 'height': 75.5, 'weight': '181', 'compRating': '0.9679', 'compStars': 4, 'nationalRank': '66', 'positionRank': '9', 'stateRank': '11', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '41', '247positionRank': '4', '247stateRank': '6'}, {'school': 'lsu', 'year': '2017', 'playerName': 'Todd Harris', 'highSchool': 'Plaquemine', 'city': 'Plaquemine', 'state': 'LA', 'position': 'S', 'height': 72.0, 'weight': '180', 'compRating': '0.9589', 'compStars': 4, 'nationalRank': '86', 'positionRank': '11', 'stateRank': '3', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '84', '247positionRank': '11', '247stateRank': '4'}, {'school': 'lsu', 'year': '2017', 'playerName': 'Kary Vincent', 'highSchool': 'Memorial', 'city': 'Port Arthur', 'state': 'TX', 'position': 'CB', 'height': 71.0, 'weight': '170', 'compRating': '0.9567', 'compStars': 4, 'nationalRank': '95', 'positionRank': '13', 'stateRank': '14', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '82', '247positionRank': '10', '247stateRank': '10'}, {'school': 'lsu', 'year': '2017', 'playerName': 'Myles Brennan', 'highSchool': 'St Stanislaus', 'city': 'Bay Saint Louis', 'state': 'MS', 'position': 'PRO', 'height': 75.0, 'weight': '180', 'compRating': '0.9347', 'compStars': 4, 'nationalRank': '152', 'positionRank': '6', 'stateRank': '4', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '112', '247positionRank': '4', '247stateRank': '3'}, {'school': 'lsu', 'year': '2017', 'playerName': 'Ed Ingram', 'highSchool': 'DeSoto', 'city': 'DeSoto', 'state': 'TX', 'position': 'OG', 'height': 76.0, 'weight': '325', 'compRating': '0.9217', 'compStars': 4, 'nationalRank': '201', 'positionRank': '13', 'stateRank': '33', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '233', '247positionRank': '15', '247stateRank': '32'}, {'school': 'lsu', 'year': '2017', 'playerName': 'Tyler Taylor', 'highSchool': 'Lanier', 'city': 'Buford', 'state': 'GA', 'position': 'ILB', 'height': 74.0, 'weight': '230', 'compRating': '0.9091', 'compStars': 4, 'nationalRank': '242', 'positionRank': '11', 'stateRank': '24', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '20', '247stateRank': '35'}, {'school': 'lsu', 'year': '2017', 'playerName': 'Mannie Netherly', 'highSchool': 'Crosby', 'city': 'Crosby', 'state': 'TX', 'position': 'WR', 'height': 74.0, 'weight': '183', 'compRating': '0.9069', 'compStars': 4, 'nationalRank': '251', 'positionRank': '36', 'stateRank': '43'}, {'school': 'lsu', 'year': '2017', 'playerName': 'Lowell Narcisse', 'highSchool': 'St. James', 'city': 'Saint James', 'state': 'LA', 'position': 'DUAL', 'height': 74.5, 'weight': '224', 'compRating': '0.9041', 'compStars': 4, 'nationalRank': '261', 'positionRank': '9', 'stateRank': '10', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '8', '247stateRank': '51'}, {'school': 'lsu', 'year': '2017', 'playerName': 'Saahdiq Charles', 'highSchool': 'Madison-Ridgeland Academy', 'city': 'Madison', 'state': 'MS', 'position': 'OG', 'height': 77.0, 'weight': '314', 'compRating': '0.9038', 'compStars': 4, 'nationalRank': '262', 'positionRank': '18', 'stateRank': '7', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '24', '247stateRank': '7'}, {'school': 'lsu', 'year': '2017', 'playerName': 'Patrick Queen', 'highSchool': 'Livonia', 'city': 'Livonia', 'state': 'LA', 'position': 'ATH', 'height': 72.5, 'weight': '209', 'compRating': '0.8955', 'compStars': 4, 'nationalRank': '298', 'positionRank': '17', 'stateRank': '12', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '29', '247stateRank': '14'}, {'school': 'lsu', 'year': '2017', 'playerName': 'Neil Farrell', 'highSchool': 'Murphy', 'city': 'Mobile', 'state': 'AL', 'position': 'DT', 'height': 76.0, 'weight': '295', 'compRating': '0.8847', 'compStars': 3, 'nationalRank': '375', 'positionRank': '25', 'stateRank': '17', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '39', '247stateRank': '21'}, {'school': 'lsu', 'year': '2017', 'playerName': 'Clyde Edwards-Helaire', 'highSchool': 'Catholic', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'APB', 'height': 67.0, 'weight': '191', 'compRating': '0.8845', 'compStars': 3, 'nationalRank': '378', 'positionRank': '5', 'stateRank': '15', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '6', '247stateRank': '10'}, {'school': 'lsu', 'year': '2017', 'playerName': 'Justin Thomas', 'highSchool': 'Spanish Fort', 'city': 'Spanish Fort', 'state': 'AL', 'position': 'SDE', 'height': 77.0, 'weight': '255', 'compRating': '0.8681', 'compStars': 3, 'nationalRank': '513', 'positionRank': '19', 'stateRank': '25', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '20', '247stateRank': '20'}, {'school': 'lsu', 'year': '2017', 'playerName': 'Racey McMath', 'highSchool': 'Edna Karr', 'city': 'New Orleans', 'state': 'LA', 'position': 'WR', 'height': 75.0, 'weight': '215', 'compRating': '0.8610', 'compStars': 3, 'nationalRank': '609', 'positionRank': '90', 'stateRank': '22', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '52', '247stateRank': '15'}, {'school': 'lsu', 'year': '2017', 'playerName': 'Jontre Kirklin', 'highSchool': 'Lutcher', 'city': 'Lutcher', 'state': 'LA', 'position': 'ATH', 'height': 71.5, 'weight': '166', 'compRating': '0.8579', 'compStars': 3, 'nationalRank': '668', 'positionRank': '48', 'stateRank': '25', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '26', '247stateRank': '12'}, {'school': 'lsu', 'year': '2017', 'playerName': 'Seth Stewart', 'highSchool': 'Point Pleasant', 'city': 'Point Pleasant', 'state': 'WV', 'position': 'OT', 'height': 80.0, 'weight': '320', 'compRating': '0.8539', 'compStars': 3, 'nationalRank': '738', 'positionRank': '70', 'stateRank': '4'}, {'school': 'lsu', 'year': '2017', 'playerName': 'Aaron Moffitt', 'highSchool': 'Catholic', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'SDE', 'height': 76.0, 'weight': '255', 'compRating': '0.8494', 'compStars': 3, 'nationalRank': '857', 'positionRank': '39', 'stateRank': '33', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '50', '247stateRank': '44'}, {'school': 'lsu', 'year': '2017', 'playerName': 'Tory Carter', 'highSchool': 'Lee County', 'city': 'Leesburg', 'state': 'GA', 'position': 'FB', 'height': 74.0, 'weight': '255', 'compRating': '0.8386', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '3', 'stateRank': '117', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '5', '247stateRank': '180'}, {'school': 'lsu', 'year': '2017', 'playerName': 'Justin Jefferson', 'highSchool': 'Destrehan', 'city': 'Destrehan', 'state': 'LA', 'position': 'WR', 'height': 74.0, 'weight': '180', 'compRating': '0.7982', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '310', 'stateRank': '77', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '205', '247stateRank': '65'}, {'school': 'south-carolina', 'year': '2007', 'playerName': 'Cliff Matthews', 'highSchool': 'Cheraw', 'city': 'Cheraw', 'state': 'SC', 'position': 'WDE', 'height': 76.0, 'weight': '268', 'compRating': '0.9812', 'compStars': 4, 'nationalRank': '36', 'positionRank': '2', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2007', 'playerName': 'Chris Culliver', 'highSchool': 'Garner', 'city': 'Garner', 'state': 'NC', 'position': 'CB', 'height': 73.0, 'weight': '201', 'compRating': '0.9810', 'compStars': 4, 'nationalRank': '38', 'positionRank': '5', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2007', 'playerName': 'Stephen Garcia', 'highSchool': 'Jefferson', 'city': 'Tampa', 'state': 'FL', 'position': 'PRO', 'height': 74.0, 'weight': '227', 'compRating': '0.9759', 'compStars': 4, 'nationalRank': '56', 'positionRank': '5', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2007', 'playerName': 'Mark Barnes', 'highSchool': 'Richland Northeast', 'city': 'Columbia', 'state': 'SC', 'position': 'ATH', 'height': 74.0, 'weight': '195', 'compRating': '0.9602', 'compStars': 4, 'nationalRank': '78', 'positionRank': '3', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2007', 'playerName': 'Travian Robertson', 'highSchool': 'Scotland County', 'city': 'Laurinburg', 'state': 'NC', 'position': 'DT', 'height': 76.0, 'weight': '293', 'compRating': '0.9599', 'compStars': 4, 'nationalRank': '79', 'positionRank': '7', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2007', 'playerName': 'Brian Maddox', 'highSchool': 'T L Hanna', 'city': 'Anderson', 'state': 'SC', 'position': 'RB', 'height': 71.0, 'weight': '229', 'compRating': '0.9478', 'compStars': 4, 'nationalRank': '94', 'positionRank': '11', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2007', 'playerName': 'Joseph Hills', 'highSchool': 'Palmetto', 'city': 'Palmetto', 'state': 'FL', 'position': 'WR', 'height': 76.0, 'weight': '205', 'compRating': '0.9400', 'compStars': 4, 'nationalRank': '114', 'positionRank': '15', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2007', 'playerName': 'Jamire Williams', 'highSchool': 'First Coast', 'city': 'Jacksonville', 'state': 'FL', 'position': 'CB', 'height': 72.0, 'weight': '180', 'compRating': '0.9268', 'compStars': 4, 'nationalRank': '147', 'positionRank': '15', 'stateRank': '22', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2007', 'playerName': 'Quintin Richardson', 'highSchool': 'Spring Valley', 'city': 'Columbia', 'state': 'SC', 'position': 'OT', 'height': 76.0, 'weight': '265', 'compRating': '0.9178', 'compStars': 4, 'nationalRank': '174', 'positionRank': '13', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2007', 'playerName': 'Dion LeCorn', 'highSchool': 'Trinity Catholic', 'city': 'Ocala', 'state': 'FL', 'position': 'S', 'height': 71.0, 'weight': '217', 'compRating': '0.9017', 'compStars': 4, 'nationalRank': '189', 'positionRank': '12', 'stateRank': '27', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2007', 'playerName': 'Clifton Geathers', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'SDE', 'height': 79.0, 'weight': '290', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '8', 'positionRank': '1', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2007', 'playerName': 'Weslye Saunders', 'highSchool': 'Riverside', 'city': 'Durham', 'state': 'NC', 'position': 'TE', 'height': 78.0, 'weight': '270', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '195', 'positionRank': '8', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2007', 'playerName': 'Larry Freeman', 'highSchool': 'Pearl River C.C.', 'city': 'Poplarville', 'state': 'MS', 'position': 'WR', 'height': 74.0, 'weight': '205', 'compRating': '0.8889', 'compStars': 3, 'nationalRank': '38', 'positionRank': '8', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2007', 'playerName': 'Jonathan Williams', 'highSchool': 'Mississippi Delta C.C.', 'city': 'Moorhead', 'state': 'MS', 'position': 'DT', 'height': 76.0, 'weight': '275', 'compRating': '0.8889', 'compStars': 3, 'nationalRank': '41', 'positionRank': '5', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2007', 'playerName': 'Melvin Ingram', 'highSchool': 'Richmond', 'city': 'Rockingham', 'state': 'NC', 'position': 'ILB', 'height': 74.0, 'weight': '265', 'compRating': '0.8875', 'compStars': 3, 'nationalRank': '259', 'positionRank': '9', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2007', 'playerName': 'Jason Barnes', 'highSchool': 'Independence', 'city': 'Charlotte', 'state': 'NC', 'position': 'WR', 'height': 76.0, 'weight': '197', 'compRating': '0.8844', 'compStars': 3, 'nationalRank': '284', 'positionRank': '39', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2007', 'playerName': 'Addison Williams', 'highSchool': 'Westlake', 'city': 'Atlanta', 'state': 'GA', 'position': 'CB', 'height': 69.0, 'weight': '169', 'compRating': '0.8764', 'compStars': 3, 'nationalRank': '341', 'positionRank': '26', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2007', 'playerName': 'Olufemi Ajiboye', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'DT', 'height': 74.0, 'weight': '290', 'compRating': '0.8694', 'compStars': 3, 'nationalRank': '15', 'positionRank': '2', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2007', 'playerName': 'Matt Clements', 'highSchool': 'Barron Collier', 'city': 'Naples', 'state': 'FL', 'position': 'WR', 'height': 74.0, 'weight': '185', 'compRating': '0.8670', 'compStars': 3, 'nationalRank': '426', 'positionRank': '55', 'stateRank': '57', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2007', 'playerName': 'Kyle Nunn', 'highSchool': 'Sumter', 'city': 'Sumter', 'state': 'SC', 'position': 'OT', 'height': 78.0, 'weight': '275', 'compRating': '0.8622', 'compStars': 3, 'nationalRank': '470', 'positionRank': '42', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2007', 'playerName': 'Antonio Allen', 'highSchool': 'Trinity Catholic', 'city': 'Ocala', 'state': 'FL', 'position': 'S', 'height': 74.0, 'weight': '180', 'compRating': '0.8590', 'compStars': 3, 'nationalRank': '499', 'positionRank': '37', 'stateRank': '68', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2007', 'playerName': "Donte'e Nicholls", 'highSchool': 'Blanche Ely', 'city': 'Pompano Beach', 'state': 'FL', 'position': 'DT', 'height': 74.0, 'weight': '270', 'compRating': '0.8542', 'compStars': 3, 'nationalRank': '576', 'positionRank': '42', 'stateRank': '75', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2007', 'playerName': 'Michael Bowman', 'highSchool': 'Anson', 'city': 'Wadesboro', 'state': 'NC', 'position': 'WR', 'height': 71.0, 'weight': '156', 'compRating': '0.8542', 'compStars': 3, 'nationalRank': '586', 'positionRank': '74', 'stateRank': '26', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2007', 'playerName': 'Alonzo Winfield', 'highSchool': 'Carver', 'city': 'Winston Salem', 'state': 'NC', 'position': 'S', 'height': 72.0, 'weight': '218', 'compRating': '0.8528', 'compStars': 3, 'nationalRank': '604', 'positionRank': '47', 'stateRank': '27', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2007', 'playerName': 'Mat Williams', 'highSchool': 'Riverdale', 'city': 'Fort Myers', 'state': 'FL', 'position': 'TE', 'height': 76.0, 'weight': '225', 'compRating': '0.8448', 'compStars': 3, 'nationalRank': '692', 'positionRank': '36', 'stateRank': '84', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2007', 'playerName': 'Arkee Smith', 'highSchool': 'First Coast', 'city': 'Jacksonville', 'state': 'FL', 'position': 'S', 'height': 73.0, 'weight': '190', 'compRating': '0.8226', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '74', 'stateRank': '118', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2007', 'playerName': 'Sam Pope', 'highSchool': 'Southwest Mississippi C.C.', 'city': 'Summit', 'state': 'MS', 'position': 'S', 'height': 73.0, 'weight': '200', 'compRating': '0.8222', 'compStars': 3, 'nationalRank': '109', 'positionRank': '14', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2007', 'playerName': 'Byron McKnight', 'highSchool': 'Scotland County', 'city': 'Laurinburg', 'state': 'NC', 'position': 'WDE', 'height': 77.0, 'weight': '235', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '60', 'stateRank': '52', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2007', 'playerName': 'Patrick DiMarco', 'highSchool': 'Lake Brantley', 'city': 'Altamonte Springs', 'state': 'FL', 'position': 'TE', 'height': 73.0, 'weight': '243', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '84', 'stateRank': '187', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2007', 'playerName': 'Akeem Auguste', 'highSchool': 'Chaminade-Madonna Prep', 'city': 'Hollywood', 'state': 'FL', 'position': 'S', 'height': 70.0, 'weight': '170', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2007', 'playerName': 'Eric Baker', 'highSchool': 'Ed White', 'city': 'Jacksonville', 'state': 'FL', 'position': 'RB', 'height': 72.0, 'weight': '190', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2014', 'playerName': 'Roc Thomas', 'highSchool': 'Oxford', 'city': 'Oxford', 'state': 'AL', 'position': 'RB', 'height': 71.0, 'weight': '196', 'compRating': '0.9894', 'compStars': 5, 'nationalRank': '23', 'positionRank': '4', 'stateRank': '3', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '60', '247positionRank': '7', '247stateRank': '4'}, {'school': 'auburn', 'year': '2014', 'playerName': "Tre' Williams", 'highSchool': "St. Paul's Episcopal", 'city': 'Mobile', 'state': 'AL', 'position': 'ILB', 'height': 75.0, 'weight': '237', 'compRating': '0.9868', 'compStars': 5, 'nationalRank': '27', 'positionRank': '2', 'stateRank': '4', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '22', '247positionRank': '1', '247stateRank': '3'}, {'school': 'auburn', 'year': '2014', 'playerName': 'Braden Smith', 'highSchool': 'Olathe South', 'city': 'Olathe', 'state': 'KS', 'position': 'OG', 'height': 78.0, 'weight': '285', 'compRating': '0.9699', 'compStars': 4, 'nationalRank': '63', 'positionRank': '3', 'stateRank': '1', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '122', '247positionRank': '7', '247stateRank': '1'}, {'school': 'auburn', 'year': '2014', 'playerName': "D'haquille Williams", 'highSchool': 'Mississippi Gulf Coast C.C.', 'city': 'Perkinston', 'state': 'MS', 'position': 'WR', 'height': 75.0, 'weight': '213', 'compRating': '0.9630', 'compStars': 4, 'nationalRank': '1', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '128', '247positionRank': '19', '247stateRank': '8'}, {'school': 'auburn', 'year': '2014', 'playerName': 'Nick Ruffin', 'highSchool': 'St. Pius X', 'city': 'Atlanta', 'state': 'GA', 'position': 'CB', 'height': 72.5, 'weight': '180', 'compRating': '0.9458', 'compStars': 4, 'nationalRank': '113', 'positionRank': '10', 'stateRank': '8', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '73', '247positionRank': '8', '247stateRank': '4'}, {'school': 'auburn', 'year': '2014', 'playerName': 'Justin Thornton', 'highSchool': 'Vigor', 'city': 'Mobile', 'state': 'AL', 'position': 'WDE', 'height': 77.0, 'weight': '222', 'compRating': '0.9448', 'compStars': 4, 'nationalRank': '120', 'positionRank': '6', 'stateRank': '6', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '140', '247positionRank': '8', '247stateRank': '7'}, {'school': 'auburn', 'year': '2014', 'playerName': 'Kalvaraz Bessent', 'highSchool': 'Camden County', 'city': 'Kingsland', 'state': 'GA', 'position': 'CB', 'height': 72.0, 'weight': '170', 'compRating': '0.9430', 'compStars': 4, 'nationalRank': '126', 'positionRank': '11', 'stateRank': '9'}, {'school': 'auburn', 'year': '2014', 'playerName': 'Stephen Roberts', 'highSchool': 'Opelika', 'city': 'Opelika', 'state': 'AL', 'position': 'CB', 'height': 72.0, 'weight': '177', 'compRating': '0.9425', 'compStars': 4, 'nationalRank': '128', 'positionRank': '12', 'stateRank': '7', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '113', '247positionRank': '10', '247stateRank': '5'}, {'school': 'auburn', 'year': '2014', 'playerName': 'Sean White', 'highSchool': 'University School', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'PRO', 'height': 74.0, 'weight': '204', 'compRating': '0.9349', 'compStars': 4, 'nationalRank': '150', 'positionRank': '8', 'stateRank': '23', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '91', '247positionRank': '6', '247stateRank': '14'}, {'school': 'auburn', 'year': '2014', 'playerName': 'Dontavius Russell', 'highSchool': 'Carrollton', 'city': 'Carrollton', 'state': 'GA', 'position': 'DT', 'height': 75.0, 'weight': '300', 'compRating': '0.9344', 'compStars': 4, 'nationalRank': '153', 'positionRank': '12', 'stateRank': '11', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '150', '247positionRank': '13', '247stateRank': '11'}, {'school': 'auburn', 'year': '2014', 'playerName': 'DaVonte Lambert', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'SDE', 'height': 75.0, 'weight': '278', 'compRating': '0.9150', 'compStars': 4, 'nationalRank': '6', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '78', '247stateRank': '120'}, {'school': 'auburn', 'year': '2014', 'playerName': 'Andrew Williams', 'highSchool': "Eagle's Landing Christian", 'city': 'Mcdonough', 'state': 'GA', 'position': 'WDE', 'height': 76.0, 'weight': '247', 'compRating': '0.9105', 'compStars': 4, 'nationalRank': '232', 'positionRank': '12', 'stateRank': '16', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '16', '247stateRank': '25'}, {'school': 'auburn', 'year': '2014', 'playerName': 'Derrick Moncrief', 'highSchool': 'Mississippi Gulf Coast C.C.', 'city': 'Perkinston', 'state': 'MS', 'position': 'S', 'height': 75.0, 'weight': '226', 'compRating': '0.9044', 'compStars': 4, 'nationalRank': '11', 'positionRank': '1', 'stateRank': '3', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '15', '247positionRank': '1', '247stateRank': '4'}, {'school': 'auburn', 'year': '2014', 'playerName': 'Stanton Truitt', 'highSchool': 'Monroe Area', 'city': 'Monroe', 'state': 'GA', 'position': 'ATH', 'height': 70.0, 'weight': '185', 'compRating': '0.8932', 'compStars': 4, 'nationalRank': '302', 'positionRank': '29', 'stateRank': '23', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '233', '247positionRank': '17', '247stateRank': '17'}, {'school': 'auburn', 'year': '2014', 'playerName': 'Kamryn Pettway', 'highSchool': 'Prattville', 'city': 'Prattville', 'state': 'AL', 'position': 'RB', 'height': 71.5, 'weight': '221', 'compRating': '0.8812', 'compStars': 3, 'nationalRank': '391', 'positionRank': '24', 'stateRank': '12', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '22', '247stateRank': '13'}, {'school': 'auburn', 'year': '2014', 'playerName': 'Jakell Mitchell', 'highSchool': 'Opelika', 'city': 'Opelika', 'state': 'AL', 'position': 'TE', 'height': 75.0, 'weight': '214', 'compRating': '0.8737', 'compStars': 3, 'nationalRank': '447', 'positionRank': '17', 'stateRank': '13', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '16', '247stateRank': '14'}, {'school': 'auburn', 'year': '2014', 'playerName': 'Deshaun Davis', 'highSchool': 'Vigor', 'city': 'Mobile', 'state': 'AL', 'position': 'ILB', 'height': 72.0, 'weight': '225', 'compRating': '0.8707', 'compStars': 3, 'nationalRank': '479', 'positionRank': '21', 'stateRank': '15', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '15', '247stateRank': '12'}, {'school': 'auburn', 'year': '2014', 'playerName': 'Joseph Turner', 'highSchool': 'College of San Mateo', 'city': 'San Mateo', 'state': 'CA', 'position': 'CB', 'height': 74.0, 'weight': '190', 'compRating': '0.8600', 'compStars': 3, 'nationalRank': '71', 'positionRank': '6', 'stateRank': '15', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '119', '247positionRank': '16', '247stateRank': '33'}, {'school': 'auburn', 'year': '2014', 'playerName': 'Myron Burton', 'highSchool': 'Peachtree Ridge', 'city': 'Suwanee', 'state': 'GA', 'position': 'ATH', 'height': 74.5, 'weight': '203', 'compRating': '0.8410', 'compStars': 3, 'nationalRank': '995', 'positionRank': '83', 'stateRank': '88', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '58', '247stateRank': '64'}, {'school': 'auburn', 'year': '2014', 'playerName': 'Chris Laye', 'highSchool': 'Lambert', 'city': 'Suwanee', 'state': 'GA', 'position': 'TE', 'height': 77.0, 'weight': '240', 'compRating': '0.8391', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '49', 'stateRank': '90', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '49', '247stateRank': '101'}, {'school': 'auburn', 'year': '2014', 'playerName': 'Devaroe Lawrence', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'DT', 'height': 75.0, 'weight': '278', 'compRating': '0.8367', 'compStars': 3, 'nationalRank': '133', 'positionRank': '19', 'stateRank': '7', '247Rating': ' 90 ', '247Stars': 4, '247nationalRank': '37', '247positionRank': '10', '247stateRank': '3'}, {'school': 'auburn', 'year': '2014', 'playerName': 'Raashed Kennion', 'highSchool': 'First Coast', 'city': 'Jacksonville', 'state': 'FL', 'position': 'WDE', 'height': 78.0, 'weight': '228', 'compRating': '0.8320', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '60', 'stateRank': '164', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '54', '247stateRank': '148'}, {'school': 'auburn', 'year': '2014', 'playerName': 'Markell Boston', 'highSchool': 'East Coweta', 'city': 'Sharpsburg', 'state': 'GA', 'position': 'ATH', 'height': 73.5, 'weight': '200', 'compRating': '0.8320', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '100', 'stateRank': '103', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '108', '247stateRank': '106'}, {'school': 'auburn', 'year': '2014', 'playerName': 'Xavier Dampeer', 'highSchool': 'Copiah-Lincoln C.C.', 'city': 'Wesson', 'state': 'MS', 'position': 'OC', 'height': 76.0, 'weight': '300', 'compRating': '0.8113', 'compStars': 3, 'nationalRank': '196', 'positionRank': '2', 'stateRank': '28', '247Rating': ' 82 ', '247Stars': 3, '247nationalRank': '173', '247positionRank': '1', '247stateRank': '27'}, {'school': 'auburn', 'year': '2014', 'playerName': 'Ike Powell', 'highSchool': 'Tift County', 'city': 'Tifton', 'state': 'GA', 'position': 'LS', 'height': 75.0, 'weight': '255', 'compRating': '0.7531', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '9', 'stateRank': '255', '247Rating': ' 74 ', '247Stars': 2, '247positionRank': '8', '247stateRank': '208'}, {'school': 'auburn', 'year': '2014', 'playerName': 'Hunter Wood', 'highSchool': 'Spanish Fort', 'city': 'Spanish Fort', 'state': 'AL', 'position': 'TE', 'height': 76.0, 'weight': '240', 'compRating': '0.6997', 'compStars': 1, 'nationalRank': 'NA', 'positionRank': '163', 'stateRank': '117', '247Rating': ' 70 ', '247Stars': 2, '247positionRank': '145', '247stateRank': '93'}, {'school': 'auburn', 'year': '2014', 'playerName': 'Michael Sherwood', 'highSchool': 'Creekside', 'city': 'Fairburn', 'state': 'GA', 'position': 'CB', 'height': 69.0, 'weight': '168', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2015', 'playerName': 'Trenton Thompson', 'highSchool': 'Westover', 'city': 'Albany', 'state': 'GA', 'position': 'DT', 'height': 74.5, 'weight': '313', 'compRating': '0.9992', 'compStars': 5, 'nationalRank': '1', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 101 ', '247Stars': 5, '247nationalRank': '1', '247positionRank': '1', '247stateRank': '1'}, {'school': 'georgia', 'year': '2015', 'playerName': 'Terry Godwin', 'highSchool': 'Callaway', 'city': 'Hogansville', 'state': 'GA', 'position': 'ATH', 'height': 72.0, 'weight': '168', 'compRating': '0.9879', 'compStars': 5, 'nationalRank': '27', 'positionRank': '1', 'stateRank': '4', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '48', '247positionRank': '3', '247stateRank': '7'}, {'school': 'georgia', 'year': '2015', 'playerName': 'Roquan Smith', 'highSchool': 'Macon County', 'city': 'Montezuma', 'state': 'GA', 'position': 'OLB', 'height': 74.0, 'weight': '207', 'compRating': '0.9769', 'compStars': 4, 'nationalRank': '48', 'positionRank': '5', 'stateRank': '6', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '71', '247positionRank': '5', '247stateRank': '9'}, {'school': 'georgia', 'year': '2015', 'playerName': 'Jonathan Ledbetter', 'highSchool': 'Tucker', 'city': 'Tucker', 'state': 'GA', 'position': 'SDE', 'height': 76.0, 'weight': '265', 'compRating': '0.9680', 'compStars': 4, 'nationalRank': '65', 'positionRank': '5', 'stateRank': '8', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '113', '247positionRank': '9', '247stateRank': '11'}, {'school': 'georgia', 'year': '2015', 'playerName': 'Natrez Patrick', 'highSchool': 'Mays', 'city': 'Atlanta', 'state': 'GA', 'position': 'WDE', 'height': 75.0, 'weight': '259', 'compRating': '0.9587', 'compStars': 4, 'nationalRank': '88', 'positionRank': '5', 'stateRank': '10', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '137', '247positionRank': '9', '247stateRank': '14'}, {'school': 'georgia', 'year': '2015', 'playerName': "D'Andre Walker", 'highSchool': 'Langston Hughes', 'city': 'Fairburn', 'state': 'GA', 'position': 'WDE', 'height': 74.5, 'weight': '209', 'compRating': '0.9468', 'compStars': 4, 'nationalRank': '114', 'positionRank': '6', 'stateRank': '12', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '165', '247positionRank': '10', '247stateRank': '15'}, {'school': 'georgia', 'year': '2015', 'playerName': 'Rashad Roundtree', 'highSchool': 'Lakeside', 'city': 'Evans', 'state': 'GA', 'position': 'S', 'height': 73.0, 'weight': '195', 'compRating': '0.9405', 'compStars': 4, 'nationalRank': '134', 'positionRank': '6', 'stateRank': '15', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '239', '247positionRank': '11', '247stateRank': '20'}, {'school': 'georgia', 'year': '2015', 'playerName': 'Rico McGraw', 'highSchool': 'Ensworth', 'city': 'Nashville', 'state': 'TN', 'position': 'CB', 'height': 72.0, 'weight': '190', 'compRating': '0.9361', 'compStars': 4, 'nationalRank': '143', 'positionRank': '20', 'stateRank': '6', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '145', '247positionRank': '16', '247stateRank': '6'}, {'school': 'georgia', 'year': '2015', 'playerName': 'Chauncey Rivers', 'highSchool': 'Stephenson', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'WDE', 'height': 74.5, 'weight': '247', 'compRating': '0.9333', 'compStars': 4, 'nationalRank': '150', 'positionRank': '10', 'stateRank': '17', '247Rating': ' 87 ', '247Stars': 3, '247nationalRank': '49', '247positionRank': '5', '247stateRank': '18'}, {'school': 'georgia', 'year': '2015', 'playerName': 'Jackson Harris', 'highSchool': 'Columbia Central', 'city': 'Columbia', 'state': 'TN', 'position': 'TE', 'height': 78.0, 'weight': '250', 'compRating': '0.9221', 'compStars': 4, 'nationalRank': '182', 'positionRank': '4', 'stateRank': '8', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '192', '247positionRank': '5', '247stateRank': '8'}, {'school': 'georgia', 'year': '2015', 'playerName': 'Pat Allen', 'highSchool': 'Franklin', 'city': 'Reisterstown', 'state': 'MD', 'position': 'OT', 'height': 77.0, 'weight': '286', 'compRating': '0.9166', 'compStars': 4, 'nationalRank': '206', 'positionRank': '17', 'stateRank': '4', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '34', '247stateRank': '7'}, {'school': 'georgia', 'year': '2015', 'playerName': 'Michael Barnett', 'highSchool': 'Woodland', 'city': 'Dorchester', 'state': 'SC', 'position': 'SDE', 'height': 77.0, 'weight': '258', 'compRating': '0.9091', 'compStars': 4, 'nationalRank': '235', 'positionRank': '14', 'stateRank': '3', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '203', '247positionRank': '13', '247stateRank': '3'}, {'school': 'georgia', 'year': '2015', 'playerName': 'Jayson Stanley', 'highSchool': 'Creekside', 'city': 'Fairburn', 'state': 'GA', 'position': 'WR', 'height': 74.0, 'weight': '198', 'compRating': '0.9081', 'compStars': 4, 'nationalRank': '244', 'positionRank': '28', 'stateRank': '25', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '234', '247positionRank': '27', '247stateRank': '19'}, {'school': 'georgia', 'year': '2015', 'playerName': 'Michael Chigbu', 'highSchool': 'Holy Cross', 'city': 'New Orleans', 'state': 'LA', 'position': 'WR', 'height': 74.0, 'weight': '211', 'compRating': '0.8838', 'compStars': 3, 'nationalRank': '376', 'positionRank': '49', 'stateRank': '18', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '81', '247stateRank': '31'}, {'school': 'georgia', 'year': '2015', 'playerName': 'Juwuan Briscoe', 'highSchool': 'Thomas Stone', 'city': 'Waldorf', 'state': 'MD', 'position': 'CB', 'height': 72.0, 'weight': '182', 'compRating': '0.8814', 'compStars': 3, 'nationalRank': '392', 'positionRank': '36', 'stateRank': '9', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '42', '247stateRank': '10'}, {'school': 'georgia', 'year': '2015', 'playerName': 'Sage Hardin', 'highSchool': 'Marist School', 'city': 'Atlanta', 'state': 'GA', 'position': 'OT', 'height': 79.0, 'weight': '276', 'compRating': '0.8782', 'compStars': 3, 'nationalRank': '415', 'positionRank': '41', 'stateRank': '36', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '59', '247stateRank': '55'}, {'school': 'georgia', 'year': '2015', 'playerName': 'Sam Madden', 'highSchool': 'Barnegat', 'city': 'Barnegat', 'state': 'NJ', 'position': 'OT', 'height': 79.0, 'weight': '345', 'compRating': '0.8760', 'compStars': 3, 'nationalRank': '440', 'positionRank': '47', 'stateRank': '10', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '221', '247positionRank': '24', '247stateRank': '5'}, {'school': 'georgia', 'year': '2015', 'playerName': 'Shaquery Wilson', 'highSchool': 'Coral Gables Senior', 'city': 'Miami', 'state': 'FL', 'position': 'ATH', 'height': 75.0, 'weight': '190', 'compRating': '0.8671', 'compStars': 3, 'nationalRank': '538', 'positionRank': '39', 'stateRank': '75'}, {'school': 'georgia', 'year': '2015', 'playerName': 'Deandre Baker', 'highSchool': 'Northwestern', 'city': 'Miami', 'state': 'FL', 'position': 'CB', 'height': 70.0, 'weight': '173', 'compRating': '0.8594', 'compStars': 3, 'nationalRank': '657', 'positionRank': '64', 'stateRank': '83', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '44', '247stateRank': '56'}, {'school': 'georgia', 'year': '2015', 'playerName': 'Johnathan Abram', 'highSchool': 'East Marion', 'city': 'Columbia', 'state': 'MS', 'position': 'S', 'height': 73.0, 'weight': '202', 'compRating': '0.8579', 'compStars': 3, 'nationalRank': '695', 'positionRank': '46', 'stateRank': '19', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '22', '247stateRank': '12'}, {'school': 'georgia', 'year': '2015', 'playerName': 'Juwan Taylor', 'highSchool': 'Hallandale', 'city': 'Hallandale', 'state': 'FL', 'position': 'ILB', 'height': 74.0, 'weight': '200', 'compRating': '0.8574', 'compStars': 3, 'nationalRank': '708', 'positionRank': '24', 'stateRank': '88', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '37', '247stateRank': '136'}, {'school': 'georgia', 'year': '2015', 'playerName': 'Chuks Amaechi', 'highSchool': 'Arizona Western College', 'city': 'Yuma', 'state': 'AZ', 'position': 'ILB', 'height': 75.0, 'weight': '220', 'compRating': '0.8574', 'compStars': 3, 'nationalRank': '69', 'positionRank': '2', 'stateRank': '1', '247Rating': ' 87 ', '247Stars': 3, '247nationalRank': '57', '247positionRank': '2', '247stateRank': '2'}, {'school': 'georgia', 'year': '2015', 'playerName': 'DaQuan Hawkins-Muckle', 'highSchool': 'Westlake', 'city': 'Atlanta', 'state': 'GA', 'position': 'DT', 'height': 76.0, 'weight': '285', 'compRating': '0.8569', 'compStars': 3, 'nationalRank': '714', 'positionRank': '38', 'stateRank': '75', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '30', '247stateRank': '56'}, {'school': 'georgia', 'year': '2015', 'playerName': 'Justin Young', 'highSchool': 'Grayson', 'city': 'Loganville', 'state': 'GA', 'position': 'DT', 'height': 75.5, 'weight': '255', 'compRating': '0.8568', 'compStars': 3, 'nationalRank': '729', 'positionRank': '40', 'stateRank': '77', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '47', '247stateRank': '90'}, {'school': 'georgia', 'year': '2015', 'playerName': 'Mirko Jurkovic', 'highSchool': 'IMG Academy', 'city': 'Bradenton', 'state': 'FL', 'position': 'OG', 'height': 77.0, 'weight': '275', 'compRating': '0.8519', 'compStars': 3, 'nationalRank': '832', 'positionRank': '53', 'stateRank': '105', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '50', '247stateRank': '96'}, {'school': 'georgia', 'year': '2015', 'playerName': 'Jarvis Wilson', 'highSchool': 'Tupelo', 'city': 'Tupelo', 'state': 'MS', 'position': 'S', 'height': 74.0, 'weight': '197', 'compRating': '0.8513', 'compStars': 3, 'nationalRank': '846', 'positionRank': '61', 'stateRank': '21', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '40', '247stateRank': '16'}, {'school': 'georgia', 'year': '2015', 'playerName': 'Kirby Choates', 'highSchool': 'Tri-cities', 'city': 'Atlanta', 'state': 'GA', 'position': 'S', 'height': 72.0, 'weight': '191', 'compRating': '0.8307', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '103', 'stateRank': '144', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '54', '247stateRank': '85'}, {'school': 'georgia', 'year': '2015', 'playerName': 'Tae Crowder', 'highSchool': 'Harris County', 'city': 'Hamilton', 'state': 'GA', 'position': 'WR', 'height': 75.0, 'weight': '220', 'compRating': '0.8072', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '221', 'stateRank': '175', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '225', '247stateRank': '185'}, {'school': 'georgia', 'year': '2015', 'playerName': 'Gary McCrae', 'highSchool': 'Randolph Clay', 'city': 'Coolidge', 'state': 'GA', 'position': 'OLB', 'height': 76.0, 'weight': '220', 'compRating': '0.8934', 'compStars': 4, 'nationalRank': '323', 'positionRank': '25', 'stateRank': '32', '247Rating': ' 85 ', '247Stars': 3, '247nationalRank': '116', '247positionRank': '9', '247stateRank': '20'}, {'school': 'georgia', 'year': '2015', 'playerName': 'DeVondre Seymour', 'highSchool': 'Hinds C.C.', 'city': 'Raymond', 'state': 'MS', 'position': 'OT', 'height': 78.0, 'weight': '315', 'compRating': '0.8884', 'compStars': 3, 'nationalRank': '23', 'positionRank': '4', 'stateRank': '8'}, {'school': 'tennessee', 'year': '2005', 'playerName': 'Demetrice Morley', 'highSchool': 'Killian', 'city': 'Miami', 'state': 'FL', 'position': 'CB', 'height': 72.0, 'weight': '180', 'compRating': '0.9952', 'compStars': 5, 'nationalRank': '13', 'positionRank': '1', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2005', 'playerName': 'Rico McCoy', 'highSchool': "St. John's", 'city': 'Washington', 'state': 'DC', 'position': 'OLB', 'height': 73.0, 'weight': '215', 'compRating': '0.9813', 'compStars': 4, 'nationalRank': '46', 'positionRank': '5', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2005', 'playerName': 'LaMarcus Coker', 'highSchool': 'Antioch', 'city': 'Antioch', 'state': 'TN', 'position': 'RB', 'height': 70.0, 'weight': '185', 'compRating': '0.9793', 'compStars': 4, 'nationalRank': '49', 'positionRank': '8', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2005', 'playerName': 'Jonathan Crompton', 'highSchool': 'Tuscola', 'city': 'Waynesville', 'state': 'NC', 'position': 'PRO', 'height': 75.0, 'weight': '215', 'compRating': '0.9785', 'compStars': 4, 'nationalRank': '51', 'positionRank': '2', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2005', 'playerName': 'Chris Scott', 'highSchool': 'Lovejoy', 'city': 'Hampton', 'state': 'GA', 'position': 'OG', 'height': 77.0, 'weight': '300', 'compRating': '0.9767', 'compStars': 4, 'nationalRank': '57', 'positionRank': '2', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2005', 'playerName': 'Josh McNeil', 'highSchool': 'Collins', 'city': 'Collins', 'state': 'MS', 'position': 'OC', 'height': 76.0, 'weight': '290', 'compRating': '0.9693', 'compStars': 4, 'nationalRank': '77', 'positionRank': '1', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2005', 'playerName': 'Montario Hardesty', 'highSchool': 'New Bern', 'city': 'New Bern', 'state': 'NC', 'position': 'RB', 'height': 72.0, 'weight': '196', 'compRating': '0.9602', 'compStars': 4, 'nationalRank': '95', 'positionRank': '12', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2005', 'playerName': 'Raymond Henderson', 'highSchool': 'Oak Creek', 'city': 'Oak Creek', 'state': 'WI', 'position': 'SDE', 'height': 77.0, 'weight': '250', 'compRating': '0.9367', 'compStars': 4, 'nationalRank': '109', 'positionRank': '7', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2005', 'playerName': 'Todd Cox', 'highSchool': 'Harding Academy of Memphis', 'city': 'Memphis', 'state': 'TN', 'position': 'ATH', 'height': 74.0, 'weight': '195', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '155', 'positionRank': '7', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2005', 'playerName': 'Lucas Taylor', 'highSchool': 'Carencro', 'city': 'Lafayette', 'state': 'LA', 'position': 'ATH', 'height': 71.0, 'weight': '168', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '170', 'positionRank': '8', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2005', 'playerName': 'Slick Shelley', 'highSchool': 'Southside', 'city': 'Fort Smith', 'state': 'AR', 'position': 'WR', 'height': 76.0, 'weight': '180', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '177', 'positionRank': '19', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2005', 'playerName': 'Adam Myers-White', 'highSchool': 'Hamilton', 'city': 'Hamilton', 'state': 'OH', 'position': 'S', 'height': 76.0, 'weight': '190', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '181', 'positionRank': '10', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2005', 'playerName': 'Andre Mathis', 'highSchool': 'Cathedral Prep', 'city': 'Erie', 'state': 'PA', 'position': 'ILB', 'height': 73.0, 'weight': '224', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '204', 'positionRank': '10', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2005', 'playerName': 'Vladimir Richard', 'highSchool': 'Piper', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'SDE', 'height': 76.0, 'weight': '255', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '283', 'positionRank': '34', 'stateRank': '41', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2005', 'playerName': 'Jeff Cottam', 'highSchool': 'Germantown', 'city': 'Germantown', 'state': 'TN', 'position': 'TE', 'height': 79.0, 'weight': '250', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '294', 'positionRank': '15', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2005', 'playerName': 'Malcolm Rawls', 'highSchool': 'East', 'city': 'Memphis', 'state': 'TN', 'position': 'OG', 'height': 76.0, 'weight': '303', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2005', 'playerName': 'Antonio Wardlow', 'highSchool': 'Parkland', 'city': 'Winston Salem', 'state': 'NC', 'position': 'CB', 'height': 73.0, 'weight': '185', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '322', 'positionRank': '29', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2005', 'playerName': 'Josh Briscoe', 'highSchool': 'Burns', 'city': 'Lawndale', 'state': 'NC', 'position': 'WR', 'height': 75.0, 'weight': '170', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '340', 'positionRank': '38', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2005', 'playerName': 'Dan Williams', 'highSchool': 'East', 'city': 'Memphis', 'state': 'TN', 'position': 'DT', 'height': 73.0, 'weight': '310', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '356', 'positionRank': '26', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2005', 'playerName': 'Marsalous Johnson', 'highSchool': 'Smyrna', 'city': 'Smyrna', 'state': 'TN', 'position': 'CB', 'height': 68.0, 'weight': '185', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '366', 'positionRank': '34', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2005', 'playerName': 'Austin Rogers', 'highSchool': 'Lipscomb Academy', 'city': 'Nashville', 'state': 'TN', 'position': 'WR', 'height': 74.0, 'weight': '175', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '768', 'positionRank': '79', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2005', 'playerName': 'Ricardo Kemp', 'highSchool': 'Warren', 'city': 'Warren', 'state': 'AR', 'position': 'ATH', 'height': 71.0, 'weight': '175', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '803', 'positionRank': '63', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2005', 'playerName': 'Wes Brown', 'highSchool': 'Athens', 'city': 'Athens', 'state': 'AL', 'position': 'DT', 'height': 76.0, 'weight': '250', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2005', 'playerName': 'Demonte Bolden', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'DT', 'height': 77.0, 'weight': '300', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2005', 'playerName': 'Darius Myers', 'highSchool': 'Cordova', 'city': 'Cordova', 'state': 'TN', 'position': 'OG', 'height': 76.0, 'weight': '320', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2011', 'playerName': 'Jadeveon Clowney', 'highSchool': 'South Pointe', 'city': 'Rock Hill', 'state': 'SC', 'position': 'WDE', 'height': 77.0, 'weight': '255', 'compRating': '1.0000', 'compStars': 5, 'nationalRank': '1', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 105 ', '247Stars': 5, '247nationalRank': '1', '247positionRank': '1', '247stateRank': '1'}, {'school': 'south-carolina', 'year': '2011', 'playerName': 'Brandon Shell', 'highSchool': 'Goose Creek', 'city': 'Goose Creek', 'state': 'SC', 'position': 'OT', 'height': 78.0, 'weight': '305', 'compRating': '0.9526', 'compStars': 4, 'nationalRank': '96', 'positionRank': '9', 'stateRank': '3', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '79', '247positionRank': '5', '247stateRank': '3'}, {'school': 'south-carolina', 'year': '2011', 'playerName': 'Kelcy Quarles', 'highSchool': 'Fork Union Military Academy', 'city': 'Fork Union', 'state': 'VA', 'position': 'DT', 'height': 76.0, 'weight': '280', 'compRating': '0.9400', 'compStars': 4, 'nationalRank': '3', 'positionRank': '1', 'stateRank': '3', '247Rating': ' 94 ', '247Stars': 4, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2011', 'playerName': 'Phillip Dukes', 'highSchool': 'Manning', 'city': 'Manning', 'state': 'SC', 'position': 'DT', 'height': 75.0, 'weight': '295', 'compRating': '0.9272', 'compStars': 4, 'nationalRank': '155', 'positionRank': '14', 'stateRank': '5', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '208', '247positionRank': '22', '247stateRank': '4'}, {'school': 'south-carolina', 'year': '2011', 'playerName': 'Sheldon Royster', 'highSchool': 'St. Peters Prep', 'city': 'Jersey City', 'state': 'NJ', 'position': 'S', 'height': 71.0, 'weight': '200', 'compRating': '0.9222', 'compStars': 4, 'nationalRank': '171', 'positionRank': '11', 'stateRank': '6', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '113', '247positionRank': '6', '247stateRank': '3'}, {'school': 'south-carolina', 'year': '2011', 'playerName': 'Damiere Byrd', 'highSchool': 'Timber Creek', 'city': 'Sicklerville', 'state': 'NJ', 'position': 'WR', 'height': 69.0, 'weight': '160', 'compRating': '0.9176', 'compStars': 4, 'nationalRank': '183', 'positionRank': '25', 'stateRank': '7', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '195', '247positionRank': '26', '247stateRank': '4'}, {'school': 'south-carolina', 'year': '2011', 'playerName': 'Kaleb Broome', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'OT', 'height': 78.0, 'weight': '314', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '11', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2011', 'playerName': 'Shon Carson', 'highSchool': 'Lake City Hi', 'city': 'Lake City', 'state': 'SC', 'position': 'APB', 'height': 68.0, 'weight': '185', 'compRating': '0.8874', 'compStars': 3, 'nationalRank': '296', 'positionRank': '10', 'stateRank': '7', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '12', '247stateRank': '10'}, {'school': 'south-carolina', 'year': '2011', 'playerName': 'Shamier Jeffery', 'highSchool': 'Calhoun County', 'city': 'Saint Matthews', 'state': 'SC', 'position': 'ATH', 'height': 73.0, 'weight': '200', 'compRating': '0.8731', 'compStars': 3, 'nationalRank': '382', 'positionRank': '24', 'stateRank': '8', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '19', '247stateRank': '8'}, {'school': 'south-carolina', 'year': '2011', 'playerName': 'Brison Williams', 'highSchool': 'Fork Union Military Academy', 'city': 'Fork Union', 'state': 'VA', 'position': 'CB', 'height': 72.0, 'weight': '180', 'compRating': '0.8700', 'compStars': 3, 'nationalRank': '10', 'positionRank': '1', 'stateRank': '9', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2011', 'playerName': 'Tanner McEvoy', 'highSchool': 'Bergen Catholic', 'city': 'Oradell', 'state': 'NJ', 'position': 'ATH', 'height': 77.0, 'weight': '205', 'compRating': '0.8690', 'compStars': 3, 'nationalRank': '418', 'positionRank': '26', 'stateRank': '11', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '30', '247stateRank': '10'}, {'school': 'south-carolina', 'year': '2011', 'playerName': 'Ahmad Christian', 'highSchool': 'Trinity Christian Academy', 'city': 'Jacksonville', 'state': 'FL', 'position': 'ATH', 'height': 69.0, 'weight': '180', 'compRating': '0.8649', 'compStars': 3, 'nationalRank': '463', 'positionRank': '31', 'stateRank': '68', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '32', '247stateRank': '72'}, {'school': 'south-carolina', 'year': '2011', 'playerName': 'Mike Matulis', 'highSchool': 'Park Vista Community', 'city': 'Lake Worth', 'state': 'FL', 'position': 'OT', 'height': 77.0, 'weight': '270', 'compRating': '0.8634', 'compStars': 3, 'nationalRank': '485', 'positionRank': '48', 'stateRank': '73', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '41', '247stateRank': '66'}, {'school': 'south-carolina', 'year': '2011', 'playerName': 'Marcquis Roberts', 'highSchool': 'McEachern', 'city': 'Powder Springs', 'state': 'GA', 'position': 'OLB', 'height': 72.0, 'weight': '204', 'compRating': '0.8615', 'compStars': 3, 'nationalRank': '523', 'positionRank': '42', 'stateRank': '41', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '49', '247stateRank': '42'}, {'school': 'south-carolina', 'year': '2011', 'playerName': 'Cedrick Cooper', 'highSchool': 'Lithonia', 'city': 'Lithonia', 'state': 'GA', 'position': 'ILB', 'height': 74.0, 'weight': '207', 'compRating': '0.8610', 'compStars': 3, 'nationalRank': '530', 'positionRank': '24', 'stateRank': '42', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '20', '247stateRank': '30'}, {'school': 'south-carolina', 'year': '2011', 'playerName': 'Kyle Harris', 'highSchool': 'Pepperell', 'city': 'Lindale', 'state': 'GA', 'position': 'OG', 'height': 75.0, 'weight': '282', 'compRating': '0.8600', 'compStars': 3, 'nationalRank': '542', 'positionRank': '29', 'stateRank': '43', '247Rating': ' 70 ', '247Stars': 2, '247positionRank': '22', '247stateRank': '58'}, {'school': 'south-carolina', 'year': '2011', 'playerName': 'Edward Muldrow', 'highSchool': 'South Gwinnett', 'city': 'Snellville', 'state': 'GA', 'position': 'OLB', 'height': 75.0, 'weight': '191', 'compRating': '0.8600', 'compStars': 3, 'nationalRank': '544', 'positionRank': '44', 'stateRank': '44', '247Rating': ' 87 ', '247Stars': 3, '247nationalRank': '80', '247positionRank': '5', '247stateRank': '20'}, {'school': 'south-carolina', 'year': '2011', 'playerName': 'Deon Green', 'highSchool': 'Olympia', 'city': 'Orlando', 'state': 'FL', 'position': 'DT', 'height': 75.0, 'weight': '287', 'compRating': '0.8584', 'compStars': 3, 'nationalRank': '567', 'positionRank': '44', 'stateRank': '82', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '42', '247stateRank': '78'}, {'school': 'south-carolina', 'year': '2011', 'playerName': 'Rory Anderson', 'highSchool': 'McEachern', 'city': 'Powder Springs', 'state': 'GA', 'position': 'TE', 'height': 77.0, 'weight': '207', 'compRating': '0.8575', 'compStars': 3, 'nationalRank': '592', 'positionRank': '26', 'stateRank': '46', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '31', '247stateRank': '43'}, {'school': 'south-carolina', 'year': '2011', 'playerName': 'K.J. Brent', 'highSchool': 'Marvin Ridge', 'city': 'Waxhaw', 'state': 'NC', 'position': 'WR', 'height': 75.0, 'weight': '178', 'compRating': '0.8568', 'compStars': 3, 'nationalRank': '605', 'positionRank': '72', 'stateRank': '22', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '70', '247stateRank': '22'}, {'school': 'south-carolina', 'year': '2011', 'playerName': 'Kadetrix Marcus', 'highSchool': 'Stephenson', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'S', 'height': 73.0, 'weight': '188', 'compRating': '0.8466', 'compStars': 3, 'nationalRank': '789', 'positionRank': '57', 'stateRank': '60', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '44', '247stateRank': '41'}, {'school': 'south-carolina', 'year': '2011', 'playerName': 'Mason Harris', 'highSchool': 'Ridgeland', 'city': 'Rossville', 'state': 'GA', 'position': 'WDE', 'height': 75.0, 'weight': '205', 'compRating': '0.8403', 'compStars': 3, 'nationalRank': '895', 'positionRank': '44', 'stateRank': '67', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '49', '247stateRank': '69'}, {'school': 'south-carolina', 'year': '2011', 'playerName': 'Martay Mattox', 'highSchool': 'Clarke Central', 'city': 'Athens', 'state': 'GA', 'position': 'DUAL', 'height': 73.0, 'weight': '182', 'compRating': '0.8271', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '27', 'stateRank': '88'}, {'school': 'south-carolina', 'year': '2011', 'playerName': 'Brandon Wilds', 'highSchool': 'Blythewood', 'city': 'Blythewood', 'state': 'SC', 'position': 'FB', 'height': 72.0, 'weight': '220', 'compRating': '0.8222', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '5', 'stateRank': '27', '247Rating': ' 76 ', '247Stars': 2, '247positionRank': '6', '247stateRank': '39'}, {'school': 'south-carolina', 'year': '2011', 'playerName': 'Angelo Watley', 'highSchool': 'Peachtree Ridge', 'city': 'Suwanee', 'state': 'GA', 'position': 'ILB', 'height': 73.0, 'weight': '218', 'compRating': '0.8166', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '56', 'stateRank': '94', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '44', '247stateRank': '74'}, {'school': 'south-carolina', 'year': '2011', 'playerName': 'Will Sport', 'highSchool': 'Pace', 'city': 'Milton', 'state': 'FL', 'position': 'OT', 'height': 77.0, 'weight': '275', 'compRating': '0.8105', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '116', 'stateRank': '184', '247Rating': ' 78 ', '247Stars': 2, '247positionRank': '108', '247stateRank': '184'}, {'school': 'south-carolina', 'year': '2011', 'playerName': 'Gerald Dixon Jr.', 'highSchool': 'Northwestern', 'city': 'Rock Hill', 'state': 'SC', 'position': 'DT', 'height': 74.0, 'weight': '295', 'compRating': '0.8102', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '96', 'stateRank': '32', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '76', '247stateRank': '22'}, {'school': 'south-carolina', 'year': '2011', 'playerName': 'Gerald Dixon', 'highSchool': 'South Pointe', 'city': 'Rock Hill', 'state': 'SC', 'position': 'SDE', 'height': 74.0, 'weight': '230', 'compRating': '0.7782', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '107', 'stateRank': '44', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '79', '247stateRank': '31'}, {'school': 'south-carolina', 'year': '2011', 'playerName': 'Jerell Adams', 'highSchool': 'Scotts Branch', 'city': 'Summerton', 'state': 'SC', 'position': 'WDE', 'height': 76.0, 'weight': '220', 'compRating': '0.8724', 'compStars': 3, 'nationalRank': '390', 'positionRank': '14', 'stateRank': '9', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '210', '247positionRank': '11', '247stateRank': '5'}, {'school': 'south-carolina', 'year': '2011', 'playerName': 'Drew Owens', 'highSchool': 'Ardrey Kell', 'city': 'Charlotte', 'state': 'NC', 'position': 'TE', 'height': 76.0, 'weight': '225', 'compRating': '0.8580', 'compStars': 3, 'nationalRank': '581', 'positionRank': '25', 'stateRank': '21', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '37', '247stateRank': '32'}, {'school': 'south-carolina', 'year': '2011', 'playerName': 'Quincy McKinney', 'highSchool': 'Carver', 'city': 'Columbus', 'state': 'GA', 'position': 'OG', 'height': 75.0, 'weight': '300', 'compRating': '0.8484', 'compStars': 3, 'nationalRank': '749', 'positionRank': '43', 'stateRank': '57', '247Rating': ' 80 ', '247Stars': 3, '247nationalRank': '208', '247positionRank': '11', '247stateRank': '29'}, {'school': 'south-carolina', 'year': '2011', 'playerName': 'Ronnie Martin', 'highSchool': 'Spartanburg', 'city': 'Spartanburg', 'state': 'SC', 'position': 'CB', 'height': 71.0, 'weight': '175', 'compRating': '0.8416', 'compStars': 3, 'nationalRank': '879', 'positionRank': '66', 'stateRank': '20', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '83', '247positionRank': '6', '247stateRank': '5'}, {'school': 'auburn', 'year': '2002', 'playerName': 'Tommy Jackson', 'highSchool': 'Opelika', 'city': 'Opelika', 'state': 'AL', 'position': 'DT', 'height': 73.0, 'weight': '280', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '155', 'positionRank': '18', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2002', 'playerName': 'Justin Bruce', 'highSchool': 'Pepperell', 'city': 'Lindale', 'state': 'GA', 'position': 'TE', 'height': 80.0, 'weight': '250', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '164', 'positionRank': '11', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2002', 'playerName': 'Brandon Cox', 'highSchool': 'Hewitt-Trussville', 'city': 'Trussville', 'state': 'AL', 'position': 'PRO', 'height': 75.0, 'weight': '190', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '188', 'positionRank': '9', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2002', 'playerName': 'Brandon Williams', 'highSchool': 'Shaw', 'city': 'Columbus', 'state': 'GA', 'position': 'CB', 'height': 73.0, 'weight': '196', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '192', 'positionRank': '12', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2002', 'playerName': 'Marcus McNeill', 'highSchool': 'Cedar Grove', 'city': 'Ellenwood', 'state': 'GA', 'position': 'OT', 'height': 80.0, 'weight': '315', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '210', 'positionRank': '18', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2002', 'playerName': 'Doug Morris', 'highSchool': 'Woodham', 'city': 'Pensacola', 'state': 'FL', 'position': 'SDE', 'height': 76.0, 'weight': '250', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '268', 'positionRank': '13', 'stateRank': '40', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2002', 'playerName': 'Tre Smith', 'highSchool': 'Venice', 'city': 'Venice', 'state': 'FL', 'position': 'RB', 'height': 71.0, 'weight': '190', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '398', 'positionRank': '29', 'stateRank': '53', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2002', 'playerName': 'Troy Reddick', 'highSchool': 'Westover School', 'city': 'Middlebury', 'state': 'CT', 'position': 'OT', 'height': 78.0, 'weight': '310', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '446', 'positionRank': '34', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2002', 'playerName': 'Antwarn Franklin', 'highSchool': 'Woodlawn', 'city': 'Birmingham', 'state': 'AL', 'position': 'DT', 'height': 77.0, 'weight': '300', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '447', 'positionRank': '39', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2002', 'playerName': 'Karibi DeDe', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'S', 'height': 73.0, 'weight': '195', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '8', 'positionRank': '1', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2002', 'playerName': 'Kevis Burnam', 'highSchool': 'Macon County', 'city': 'Montezuma', 'state': 'GA', 'position': 'ILB', 'height': 75.0, 'weight': '230', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '594', 'positionRank': '31', 'stateRank': '42', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2002', 'playerName': 'Will Ward', 'highSchool': 'Prattville', 'city': 'Prattville', 'state': 'AL', 'position': 'OG', 'height': 74.0, 'weight': '250', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '627', 'positionRank': '49', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2002', 'playerName': 'Will Herring', 'highSchool': 'Opelika', 'city': 'Opelika', 'state': 'AL', 'position': 'ATH', 'height': 75.0, 'weight': '205', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '641', 'positionRank': '37', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2002', 'playerName': 'Tyrone Martin', 'highSchool': 'Benjamin Russell Sch', 'city': 'Alexander City', 'state': 'AL', 'position': 'ILB', 'height': 73.0, 'weight': '215', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '650', 'positionRank': '37', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2002', 'playerName': 'Jonathan Palmer', 'highSchool': 'Cedar Grove', 'city': 'Ellenwood', 'state': 'GA', 'position': 'OG', 'height': 77.0, 'weight': '311', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '696', 'positionRank': '53', 'stateRank': '50', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2002', 'playerName': 'Courtney Taylor', 'highSchool': 'Pickens Academy', 'city': 'Carrollton', 'state': 'AL', 'position': 'ATH', 'height': 75.0, 'weight': '185', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '703', 'positionRank': '40', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2002', 'playerName': 'Cavari Dailey', 'highSchool': 'Plantation', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'S', 'height': 73.0, 'weight': '195', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '706', 'positionRank': '45', 'stateRank': '75', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2002', 'playerName': 'Ben Grubbs', 'highSchool': 'Elmore Co Sch', 'city': 'Eclectic', 'state': 'AL', 'position': 'SDE', 'height': 76.0, 'weight': '251', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '734', 'positionRank': '46', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2002', 'playerName': 'Brian Kuhn', 'highSchool': 'Crescent City', 'city': 'Crescent City', 'state': 'FL', 'position': 'SDE', 'height': 77.0, 'weight': '235', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '752', 'positionRank': '49', 'stateRank': '81', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2002', 'playerName': 'Wesley Hill', 'highSchool': 'Crisp County', 'city': 'Cordele', 'state': 'GA', 'position': 'PRO', 'height': 75.0, 'weight': '215', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '754', 'positionRank': '25', 'stateRank': '55', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2002', 'playerName': 'Lee Guess', 'highSchool': 'Hewitt-Trussville', 'city': 'Trussville', 'state': 'AL', 'position': 'WR', 'height': 72.0, 'weight': '175', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '869', 'positionRank': '81', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2002', 'playerName': 'Michael Gibson', 'highSchool': 'Mooreville', 'city': 'Mooreville', 'state': 'MS', 'position': 'K', 'height': 74.0, 'weight': '195', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '30', 'stateRank': '33', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2002', 'playerName': 'Mike Sherrill', 'highSchool': 'Miami Central', 'city': 'Miami', 'state': 'FL', 'position': 'OLB', 'height': 73.0, 'weight': '225', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '91', 'stateRank': '133', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2002', 'playerName': 'Troy Bergeron', 'highSchool': 'Shaw', 'city': 'Columbus', 'state': 'GA', 'position': 'ATH', 'height': 74.0, 'weight': '180', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '84', 'stateRank': '92', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2002', 'playerName': 'Kyle Derozan', 'highSchool': 'Pointe Coupee Central', 'city': 'Morganza', 'state': 'LA', 'position': 'SDE', 'height': 77.0, 'weight': '225', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '87', 'stateRank': '88', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2002', 'playerName': 'Ben Obomanu', 'highSchool': 'Selma', 'city': 'Selma', 'state': 'AL', 'position': 'WR', 'height': 74.0, 'weight': '185', 'compRating': '0.9855', 'compStars': 5, 'nationalRank': '31', 'positionRank': '4', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2002', 'playerName': 'Montae Pitts', 'highSchool': 'Loachapoka Sch', 'city': 'Notasulga', 'state': 'AL', 'position': 'ATH', 'height': 73.0, 'weight': '180', 'compRating': '0.9683', 'compStars': 4, 'nationalRank': '77', 'positionRank': '7', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2002', 'playerName': 'Devin Aromashodu', 'highSchool': 'Miami Springs Senior', 'city': 'Miami', 'state': 'FL', 'position': 'WR', 'height': 74.0, 'weight': '185', 'compRating': '0.9671', 'compStars': 4, 'nationalRank': '81', 'positionRank': '10', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2003', 'playerName': 'Paul Oliver', 'highSchool': 'Harrison', 'city': 'Kennesaw', 'state': 'GA', 'position': 'CB', 'height': 72.0, 'weight': '185', 'compRating': '0.9940', 'compStars': 5, 'nationalRank': '12', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2003', 'playerName': 'Kregg Lumpkin', 'highSchool': 'Stephenson', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'RB', 'height': 72.0, 'weight': '190', 'compRating': '0.9934', 'compStars': 5, 'nationalRank': '16', 'positionRank': '2', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2003', 'playerName': 'Sean Bailey', 'highSchool': 'Milton', 'city': 'Alpharetta', 'state': 'GA', 'position': 'WR', 'height': 72.0, 'weight': '165', 'compRating': '0.9799', 'compStars': 4, 'nationalRank': '43', 'positionRank': '5', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2003', 'playerName': 'Zeb McKinzey', 'highSchool': 'Parkview', 'city': 'Lilburn', 'state': 'GA', 'position': 'OG', 'height': 76.0, 'weight': '280', 'compRating': '0.9329', 'compStars': 4, 'nationalRank': '115', 'positionRank': '9', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2003', 'playerName': 'Des Williams', 'highSchool': 'Dacula', 'city': 'Dacula', 'state': 'GA', 'position': 'ILB', 'height': 73.0, 'weight': '235', 'compRating': '0.9307', 'compStars': 4, 'nationalRank': '120', 'positionRank': '7', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2003', 'playerName': 'Trey Chandler', 'highSchool': 'Buford', 'city': 'Buford', 'state': 'GA', 'position': 'OT', 'height': 78.0, 'weight': '255', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '179', 'positionRank': '15', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2003', 'playerName': 'Desmond Williams', 'highSchool': 'Dacula', 'city': 'Dacula', 'state': 'GA', 'position': 'ILB', 'height': 74.0, 'weight': '238', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '180', 'positionRank': '12', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2003', 'playerName': 'Danny Verdun', 'highSchool': 'Thomson', 'city': 'Thomson', 'state': 'GA', 'position': 'ILB', 'height': 74.0, 'weight': '230', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '196', 'positionRank': '13', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2003', 'playerName': 'Richard Cook', 'highSchool': 'Washington-Wilkes', 'city': 'Washington', 'state': 'GA', 'position': 'SDE', 'height': 76.0, 'weight': '265', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '223', 'positionRank': '15', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2003', 'playerName': 'Dana Graydon', 'highSchool': 'Dougherty Comprehensive', 'city': 'Albany', 'state': 'GA', 'position': 'OLB', 'height': 73.0, 'weight': '210', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '224', 'positionRank': '11', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2003', 'playerName': 'Odell Thurman', 'highSchool': 'Baldwin', 'city': 'Milledgeville', 'state': 'GA', 'position': 'OLB', 'height': 73.0, 'weight': '210', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '327', 'positionRank': '20', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2003', 'playerName': 'James Lee', 'highSchool': 'Glades Central', 'city': 'Belle Glade', 'state': 'FL', 'position': 'OG', 'height': 77.0, 'weight': '270', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '388', 'positionRank': '29', 'stateRank': '49', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2003', 'playerName': 'Coleman Watson', 'highSchool': 'North Springs', 'city': 'Atlanta', 'state': 'GA', 'position': 'TE', 'height': 78.0, 'weight': '250', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '393', 'positionRank': '25', 'stateRank': '26', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2003', 'playerName': 'Ken Shackleford', 'highSchool': 'Villa Rica', 'city': 'Villa Rica', 'state': 'GA', 'position': 'OT', 'height': 77.0, 'weight': '300', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '439', 'positionRank': '32', 'stateRank': '29', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2003', 'playerName': 'Marcus Howard', 'highSchool': 'Hanahan', 'city': 'Charleston', 'state': 'SC', 'position': 'OLB', 'height': 74.0, 'weight': '215', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '444', 'positionRank': '32', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2003', 'playerName': 'Trahern Holden', 'highSchool': 'Houston County', 'city': 'Warner Robins', 'state': 'GA', 'position': 'TE', 'height': 76.0, 'weight': '240', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '456', 'positionRank': '28', 'stateRank': '31', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2003', 'playerName': 'Nick Jones', 'highSchool': 'Bowdon', 'city': 'Bowdon', 'state': 'GA', 'position': 'OG', 'height': 75.0, 'weight': '275', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '476', 'positionRank': '38', 'stateRank': '32', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2003', 'playerName': 'T.J. Gartrell', 'highSchool': 'Stephenson', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'WR', 'height': 73.0, 'weight': '175', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '644', 'positionRank': '63', 'stateRank': '41', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2003', 'playerName': 'Andy Bailey', 'highSchool': 'McMinn', 'city': 'Athens', 'state': 'TN', 'position': 'K', 'height': 76.0, 'weight': '215', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '656', 'positionRank': '24', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2003', 'playerName': 'Thomas Flowers', 'highSchool': 'Pebblebrook', 'city': 'Mableton', 'state': 'GA', 'position': 'APB', 'height': 70.0, 'weight': '183', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '670', 'positionRank': '11', 'stateRank': '42', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2003', 'playerName': 'Fernando Velasco', 'highSchool': 'Jefferson County', 'city': 'Louisville', 'state': 'GA', 'position': 'OG', 'height': 76.0, 'weight': '312', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '678', 'positionRank': '50', 'stateRank': '43', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2003', 'playerName': 'Tom Gainous', 'highSchool': 'Cairo', 'city': 'Cairo', 'state': 'GA', 'position': 'OT', 'height': 78.0, 'weight': '260', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '91', 'stateRank': '67', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2003', 'playerName': 'Michael Henderson', 'highSchool': 'Buford', 'city': 'Buford', 'state': 'GA', 'position': 'WR', 'height': 70.0, 'weight': '155', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '184', 'stateRank': '89', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2005', 'playerName': 'Kellen Heard', 'highSchool': 'Wharton', 'city': 'Wharton', 'state': 'TX', 'position': 'OT', 'height': 78.0, 'weight': '335', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '156', 'positionRank': '15', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2005', 'playerName': 'Jodie Richardson', 'highSchool': 'Duncanville', 'city': 'Duncanville', 'state': 'TX', 'position': 'OLB', 'height': 75.0, 'weight': '215', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '157', 'positionRank': '16', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2005', 'playerName': 'Howard Morrow', 'highSchool': 'Fossil Ridge', 'city': 'Keller', 'state': 'TX', 'position': 'WR', 'height': 73.0, 'weight': '172', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '189', 'positionRank': '21', 'stateRank': '22', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2005', 'playerName': 'Jorvorskie Lane', 'highSchool': 'Lufkin', 'city': 'Lufkin', 'state': 'TX', 'position': 'FB', 'height': 73.0, 'weight': '240', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '206', 'positionRank': '4', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2005', 'playerName': 'Vincent Williams', 'highSchool': 'Carter', 'city': 'Dallas', 'state': 'TX', 'position': 'DT', 'height': 77.0, 'weight': '275', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '222', 'positionRank': '19', 'stateRank': '27', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2005', 'playerName': 'Gremon Coffman', 'highSchool': 'Duncanville', 'city': 'Duncanville', 'state': 'TX', 'position': 'S', 'height': 74.0, 'weight': '193', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '248', 'positionRank': '15', 'stateRank': '31', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2005', 'playerName': 'Arkeith Brown', 'highSchool': 'El Campo', 'city': 'El Campo', 'state': 'TX', 'position': 'S', 'height': 73.0, 'weight': '175', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '260', 'positionRank': '17', 'stateRank': '32', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2005', 'playerName': 'Lee Grimes', 'highSchool': 'Brownwood', 'city': 'Brownwood', 'state': 'TX', 'position': 'OT', 'height': 78.0, 'weight': '325', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '271', 'positionRank': '23', 'stateRank': '36', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2005', 'playerName': 'Alton Dixon', 'highSchool': 'Lufkin', 'city': 'Lufkin', 'state': 'TX', 'position': 'CB', 'height': 72.0, 'weight': '195', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '290', 'positionRank': '27', 'stateRank': '40', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2005', 'playerName': 'Jamie McCoy', 'highSchool': 'Lee', 'city': 'Midland', 'state': 'TX', 'position': 'DUAL', 'height': 75.0, 'weight': '197', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '423', 'positionRank': '16', 'stateRank': '66', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2005', 'playerName': 'Marquis Carpenter', 'highSchool': 'Coffeyville C.C.', 'city': 'Coffeyville', 'state': 'KS', 'position': 'CB', 'height': 71.0, 'weight': '180', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '44', 'positionRank': '2', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2005', 'playerName': 'Robbie Frost', 'highSchool': 'Stratford', 'city': 'Houston', 'state': 'TX', 'position': 'OT', 'height': 78.0, 'weight': '302', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '548', 'positionRank': '48', 'stateRank': '84', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2005', 'playerName': 'Jordan Peterson', 'highSchool': 'Lexington', 'city': 'Lexington', 'state': 'TX', 'position': 'ATH', 'height': 70.0, 'weight': '185', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '609', 'positionRank': '49', 'stateRank': '91', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2005', 'playerName': 'Henry Smith', 'highSchool': 'East Central C.C.', 'city': 'Decatur', 'state': 'MS', 'position': 'DT', 'height': 75.0, 'weight': '310', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '62', 'positionRank': '9', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2005', 'playerName': 'Antonio Perry', 'highSchool': 'Hammond', 'city': 'Hammond', 'state': 'LA', 'position': 'ATH', 'height': 74.0, 'weight': '185', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '690', 'positionRank': '52', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2005', 'playerName': 'Quincy Driver', 'highSchool': 'Lamar', 'city': 'Houston', 'state': 'TX', 'position': 'WR', 'height': 72.0, 'weight': '185', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '712', 'positionRank': '70', 'stateRank': '107', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2005', 'playerName': 'Matt Featherston', 'highSchool': 'Poughkeepsie', 'city': 'Poughkeepsie', 'state': 'NY', 'position': 'WDE', 'height': 75.0, 'weight': '225', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': '971', 'positionRank': '41', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2005', 'playerName': 'Chevar Bryson', 'highSchool': 'Lee', 'city': 'Midland', 'state': 'TX', 'position': 'CB', 'height': 71.0, 'weight': '185', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '87', 'stateRank': '153', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2005', 'playerName': 'Justin Brantly', 'highSchool': 'Sealy', 'city': 'Sealy', 'state': 'TX', 'position': 'K', 'height': 75.0, 'weight': '200', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '13', 'stateRank': '171', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2005', 'playerName': 'Kevin Ferguson', 'highSchool': 'Kempner', 'city': 'Sugar Land', 'state': 'TX', 'position': 'WR', 'height': 73.0, 'weight': '185', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '120', 'stateRank': '191', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2005', 'playerName': 'Trey Ross', 'highSchool': 'Alief Elsik', 'city': 'Houston', 'state': 'TX', 'position': 'WDE', 'height': 76.0, 'weight': '205', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '55', 'stateRank': '237', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2005', 'playerName': 'Michael Bennett', 'highSchool': 'Alief Taylor', 'city': 'Houston', 'state': 'TX', 'position': 'WDE', 'height': 76.0, 'weight': '245', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2005', 'playerName': 'Martellus Bennett', 'highSchool': 'Alief Taylor', 'city': 'Houston', 'state': 'TX', 'position': 'TE', 'height': 79.0, 'weight': '240', 'compRating': '0.9936', 'compStars': 5, 'nationalRank': '16', 'positionRank': '1', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2005', 'playerName': 'Michael Shumard', 'highSchool': 'Harker Heights', 'city': 'Harker Heights', 'state': 'TX', 'position': 'OG', 'height': 77.0, 'weight': '290', 'compRating': '0.9679', 'compStars': 4, 'nationalRank': '81', 'positionRank': '3', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2005', 'playerName': 'Paul Freeney', 'highSchool': 'Aldine Eisenhower', 'city': 'Houston', 'state': 'TX', 'position': 'WDE', 'height': 75.0, 'weight': '230', 'compRating': '0.9622', 'compStars': 4, 'nationalRank': '91', 'positionRank': '4', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2010', 'playerName': 'Ronald Powell', 'highSchool': 'Rancho Verde', 'city': 'Moreno Valley', 'state': 'CA', 'position': 'WDE', 'height': 76.0, 'weight': '230', 'compRating': '0.9999', 'compStars': 5, 'nationalRank': '1', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 100 ', '247Stars': 5, '247nationalRank': '1', '247positionRank': '1', '247stateRank': '1'}, {'school': 'florida', 'year': '2010', 'playerName': 'Dominique Easley', 'highSchool': 'Curtis', 'city': 'Staten Island', 'state': 'NY', 'position': 'DT', 'height': 75.0, 'weight': '258', 'compRating': '0.9978', 'compStars': 5, 'nationalRank': '4', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 100 ', '247Stars': 5, '247nationalRank': '4', '247positionRank': '1', '247stateRank': '1'}, {'school': 'florida', 'year': '2010', 'playerName': 'Sharrif Floyd', 'highSchool': 'George Washington', 'city': 'Philadelphia', 'state': 'PA', 'position': 'SDE', 'height': 75.0, 'weight': '310', 'compRating': '0.9970', 'compStars': 5, 'nationalRank': '6', 'positionRank': '2', 'stateRank': '1', '247Rating': ' 100 ', '247Stars': 5, '247nationalRank': '3', '247positionRank': '1', '247stateRank': '1'}, {'school': 'florida', 'year': '2010', 'playerName': 'Matt Elam', 'highSchool': 'Dwyer', 'city': 'Palm Beach Gardens', 'state': 'FL', 'position': 'S', 'height': 72.0, 'weight': '205', 'compRating': '0.9924', 'compStars': 5, 'nationalRank': '16', 'positionRank': '2', 'stateRank': '2', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '15', '247positionRank': '1', '247stateRank': '2'}, {'school': 'florida', 'year': '2010', 'playerName': 'Josh Shaw', 'highSchool': 'Palmdale', 'city': 'Palmdale', 'state': 'CA', 'position': 'CB', 'height': 73.0, 'weight': '195', 'compRating': '0.9867', 'compStars': 5, 'nationalRank': '22', 'positionRank': '2', 'stateRank': '3', '247Rating': ' 99 ', '247Stars': 5, '247nationalRank': '10', '247positionRank': '1', '247stateRank': '4'}, {'school': 'florida', 'year': '2010', 'playerName': 'Chris Dunkley', 'highSchool': 'Pahokee', 'city': 'Pahokee', 'state': 'FL', 'position': 'WR', 'height': 71.0, 'weight': '170', 'compRating': '0.9810', 'compStars': 4, 'nationalRank': '37', 'positionRank': '6', 'stateRank': '6', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '45', '247positionRank': '6', '247stateRank': '6'}, {'school': 'florida', 'year': '2010', 'playerName': 'Jaylen Watkins', 'highSchool': 'Cape Coral', 'city': 'Cape Coral', 'state': 'FL', 'position': 'CB', 'height': 73.0, 'weight': '172', 'compRating': '0.9802', 'compStars': 4, 'nationalRank': '39', 'positionRank': '4', 'stateRank': '7', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '48', '247positionRank': '4', '247stateRank': '7'}, {'school': 'florida', 'year': '2010', 'playerName': 'Chaz Green', 'highSchool': 'Tampa Catholic', 'city': 'Tampa', 'state': 'FL', 'position': 'OT', 'height': 78.0, 'weight': '290', 'compRating': '0.9780', 'compStars': 4, 'nationalRank': '43', 'positionRank': '6', 'stateRank': '8', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '63', '247positionRank': '9', '247stateRank': '9'}, {'school': 'florida', 'year': '2010', 'playerName': 'Chris Martin', 'highSchool': 'Grandview', 'city': 'Aurora', 'state': 'CO', 'position': 'SDE', 'height': 76.0, 'weight': '240', 'compRating': '0.9774', 'compStars': 4, 'nationalRank': '44', 'positionRank': '6', 'stateRank': '1'}, {'school': 'florida', 'year': '2010', 'playerName': 'Gerald Christian', 'highSchool': 'Dwyer', 'city': 'Palm Beach Gardens', 'state': 'FL', 'position': 'TE', 'height': 75.0, 'weight': '220', 'compRating': '0.9725', 'compStars': 4, 'nationalRank': '52', 'positionRank': '2', 'stateRank': '10', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '82', '247positionRank': '3', '247stateRank': '13'}, {'school': 'florida', 'year': '2010', 'playerName': 'Jonathan Dowling', 'highSchool': 'Southeast', 'city': 'Bradenton', 'state': 'FL', 'position': 'S', 'height': 76.0, 'weight': '185', 'compRating': '0.9728', 'compStars': 4, 'nationalRank': '51', 'positionRank': '4', 'stateRank': '9', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '32', '247positionRank': '4', '247stateRank': '4'}, {'school': 'florida', 'year': '2010', 'playerName': 'Ian Silberman', 'highSchool': 'Fleming Island', 'city': 'Orange Park', 'state': 'FL', 'position': 'OT', 'height': 77.0, 'weight': '257', 'compRating': '0.9685', 'compStars': 4, 'nationalRank': '62', 'positionRank': '8', 'stateRank': '12'}, {'school': 'florida', 'year': '2010', 'playerName': 'Mack Brown', 'highSchool': 'Martin Luther King Jr.', 'city': 'Lithonia', 'state': 'GA', 'position': 'APB', 'height': 71.0, 'weight': '185', 'compRating': '0.9602', 'compStars': 4, 'nationalRank': '84', 'positionRank': '4', 'stateRank': '8', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '97', '247positionRank': '4', '247stateRank': '11'}, {'school': 'florida', 'year': '2010', 'playerName': 'Michael Taylor', 'highSchool': 'Westlake', 'city': 'Atlanta', 'state': 'GA', 'position': 'OLB', 'height': 73.0, 'weight': '213', 'compRating': '0.9486', 'compStars': 4, 'nationalRank': '105', 'positionRank': '8', 'stateRank': '12', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '74', '247positionRank': '5', '247stateRank': '8'}, {'school': 'florida', 'year': '2010', 'playerName': 'Leon Orr', 'highSchool': 'Gulf', 'city': 'New Port Richey', 'state': 'FL', 'position': 'DT', 'height': 76.0, 'weight': '300', 'compRating': '0.9478', 'compStars': 4, 'nationalRank': '109', 'positionRank': '10', 'stateRank': '20', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '98', '247positionRank': '8', '247stateRank': '15'}, {'school': 'florida', 'year': '2010', 'playerName': 'Cody Riggs', 'highSchool': 'St. Thomas Aquinas', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'CB', 'height': 69.0, 'weight': '156', 'compRating': '0.9463', 'compStars': 4, 'nationalRank': '116', 'positionRank': '6', 'stateRank': '21', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '208', '247positionRank': '14', '247stateRank': '28'}, {'school': 'florida', 'year': '2010', 'playerName': 'Adrian Coxson', 'highSchool': 'Baltimore City College', 'city': 'Baltimore', 'state': 'MD', 'position': 'WR', 'height': 74.0, 'weight': '194', 'compRating': '0.9405', 'compStars': 4, 'nationalRank': '127', 'positionRank': '16', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2010', 'playerName': 'Solomon Patton', 'highSchool': 'Murphy', 'city': 'Mobile', 'state': 'AL', 'position': 'WR', 'height': 70.0, 'weight': '175', 'compRating': '0.9279', 'compStars': 4, 'nationalRank': '165', 'positionRank': '21', 'stateRank': '5', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '206', '247positionRank': '23', '247stateRank': '5'}, {'school': 'florida', 'year': '2010', 'playerName': 'Lynden Trail', 'highSchool': 'Booker T. Washington', 'city': 'Miami', 'state': 'FL', 'position': 'WDE', 'height': 79.0, 'weight': '220', 'compRating': '0.9285', 'compStars': 4, 'nationalRank': '161', 'positionRank': '7', 'stateRank': '28', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '182', '247positionRank': '8', '247stateRank': '27'}, {'school': 'florida', 'year': '2010', 'playerName': 'Quinton Dunbar', 'highSchool': 'Booker T. Washington', 'city': 'Miami', 'state': 'FL', 'position': 'WR', 'height': 75.0, 'weight': '170', 'compRating': '0.9184', 'compStars': 4, 'nationalRank': '199', 'positionRank': '26', 'stateRank': '31', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '166', '247positionRank': '18', '247stateRank': '24'}, {'school': 'florida', 'year': '2010', 'playerName': 'Jordan Haden', 'highSchool': 'Friendly', 'city': 'Fort Washington', 'state': 'MD', 'position': 'S', 'height': 74.0, 'weight': '202', 'compRating': '0.9105', 'compStars': 4, 'nationalRank': '233', 'positionRank': '20', 'stateRank': '6', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '209', '247positionRank': '17', '247stateRank': '5'}, {'school': 'florida', 'year': '2010', 'playerName': 'Neiron Ball', 'highSchool': 'Jackson', 'city': 'Jackson', 'state': 'GA', 'position': 'WDE', 'height': 76.0, 'weight': '210', 'compRating': '0.8943', 'compStars': 4, 'nationalRank': '311', 'positionRank': '21', 'stateRank': '28', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2010', 'playerName': 'Michael McFarland', 'highSchool': 'Blake', 'city': 'Tampa', 'state': 'FL', 'position': 'TE', 'height': 78.0, 'weight': '230', 'compRating': '0.8889', 'compStars': 3, 'nationalRank': '355', 'positionRank': '14', 'stateRank': '50', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2010', 'playerName': 'Trey Burton', 'highSchool': 'Venice', 'city': 'Venice', 'state': 'FL', 'position': 'RB', 'height': 75.0, 'weight': '203', 'compRating': '0.8795', 'compStars': 3, 'nationalRank': '429', 'positionRank': '33', 'stateRank': '66', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2010', 'playerName': 'Gideon Ajagbe', 'highSchool': 'Ransom Everglades School', 'city': 'Miami', 'state': 'FL', 'position': 'OLB', 'height': 74.0, 'weight': '197', 'compRating': '0.8795', 'compStars': 3, 'nationalRank': '435', 'positionRank': '26', 'stateRank': '67', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2010', 'playerName': 'Darrin Kitchens', 'highSchool': 'Homestead', 'city': 'Homestead', 'state': 'FL', 'position': 'OLB', 'height': 75.0, 'weight': '215', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '917', 'positionRank': '60', 'stateRank': '137', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2010', 'playerName': 'Robert Clark', 'highSchool': 'Dwyer', 'city': 'Palm Beach Gardens', 'state': 'FL', 'position': 'WR', 'height': 69.0, 'weight': '175', 'compRating': '0.8510', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '136', 'stateRank': '158', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2010', 'playerName': 'Tyler Murphy', 'highSchool': 'Wethersfield', 'city': 'Wethersfield', 'state': 'CT', 'position': 'DUAL', 'height': 74.0, 'weight': '190', 'compRating': '0.8431', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '44', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2009', 'playerName': 'Trent Richardson', 'highSchool': 'Escambia', 'city': 'Pensacola', 'state': 'FL', 'position': 'RB', 'height': 71.0, 'weight': '224', 'compRating': '0.9972', 'compStars': 5, 'nationalRank': '6', 'positionRank': '2', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2009', 'playerName': 'Dre Kirkpatrick', 'highSchool': 'Gadsden City', 'city': 'Gadsden', 'state': 'AL', 'position': 'CB', 'height': 75.0, 'weight': '192', 'compRating': '0.9918', 'compStars': 5, 'nationalRank': '14', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2009', 'playerName': 'Nico Johnson', 'highSchool': 'Andalusia', 'city': 'Andalusia', 'state': 'AL', 'position': 'ILB', 'height': 75.0, 'weight': '245', 'compRating': '0.9905', 'compStars': 5, 'nationalRank': '17', 'positionRank': '3', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2009', 'playerName': 'D.J. Fluker', 'highSchool': 'Foley', 'city': 'Foley', 'state': 'AL', 'position': 'OT', 'height': 78.0, 'weight': '335', 'compRating': '0.9849', 'compStars': 5, 'nationalRank': '30', 'positionRank': '3', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2009', 'playerName': 'AJ McCarron', 'highSchool': "St. Paul's Episcopal", 'city': 'Mobile', 'state': 'AL', 'position': 'PRO', 'height': 76.0, 'weight': '189', 'compRating': '0.9594', 'compStars': 4, 'nationalRank': '87', 'positionRank': '7', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2009', 'playerName': 'Tana Patrick', 'highSchool': 'North Jackson', 'city': 'Stevenson', 'state': 'AL', 'position': 'ILB', 'height': 75.0, 'weight': '236', 'compRating': '0.9588', 'compStars': 4, 'nationalRank': '88', 'positionRank': '6', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2009', 'playerName': 'Kendall Kelly', 'highSchool': 'Gadsden City', 'city': 'Gadsden', 'state': 'AL', 'position': 'WR', 'height': 75.0, 'weight': '214', 'compRating': '0.9421', 'compStars': 4, 'nationalRank': '123', 'positionRank': '16', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2009', 'playerName': 'Eddie Lacy', 'highSchool': 'Dutchtown', 'city': 'Geismar', 'state': 'LA', 'position': 'RB', 'height': 72.0, 'weight': '220', 'compRating': '0.9400', 'compStars': 4, 'nationalRank': '128', 'positionRank': '13', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2009', 'playerName': 'Rod Woodson', 'highSchool': 'Olive Branch', 'city': 'Olive Branch', 'state': 'MS', 'position': 'S', 'height': 71.0, 'weight': '200', 'compRating': '0.9160', 'compStars': 4, 'nationalRank': '194', 'positionRank': '16', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2009', 'playerName': 'Petey Smith', 'highSchool': 'Armwood', 'city': 'Seffner', 'state': 'FL', 'position': 'ILB', 'height': 73.0, 'weight': '250', 'compRating': '0.9153', 'compStars': 4, 'nationalRank': '197', 'positionRank': '12', 'stateRank': '33', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2009', 'playerName': 'Michael Bowman', 'highSchool': 'Ridgeland', 'city': 'Rossville', 'state': 'GA', 'position': 'WR', 'height': 76.0, 'weight': '225', 'compRating': '0.9149', 'compStars': 4, 'nationalRank': '200', 'positionRank': '25', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2009', 'playerName': 'Darrington Sentimore', 'highSchool': 'Destrehan', 'city': 'Destrehan', 'state': 'LA', 'position': 'DT', 'height': 75.0, 'weight': '265', 'compRating': '0.9103', 'compStars': 4, 'nationalRank': '219', 'positionRank': '18', 'stateRank': '10', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '20', '247positionRank': '2', '247stateRank': '8'}, {'school': 'alabama', 'year': '2009', 'playerName': 'Kevin Norwood', 'highSchool': "D'Iberville", 'city': 'Biloxi', 'state': 'MS', 'position': 'WR', 'height': 74.0, 'weight': '193', 'compRating': '0.9051', 'compStars': 4, 'nationalRank': '240', 'positionRank': '32', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2009', 'playerName': 'Brandon Moore', 'highSchool': 'Carver', 'city': 'Montgomery', 'state': 'AL', 'position': 'DT', 'height': 77.0, 'weight': '305', 'compRating': '0.9034', 'compStars': 4, 'nationalRank': '247', 'positionRank': '22', 'stateRank': '7', '247Rating': ' 90 ', '247Stars': 4, '247nationalRank': '25', '247positionRank': '3', '247stateRank': '9'}, {'school': 'alabama', 'year': '2009', 'playerName': 'James Carpenter', 'highSchool': 'Coffeyville C.C.', 'city': 'Coffeyville', 'state': 'KS', 'position': 'OT', 'height': 77.0, 'weight': '300', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '22', 'positionRank': '1', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2009', 'playerName': 'William Ming', 'highSchool': 'Athens', 'city': 'Athens', 'state': 'AL', 'position': 'SDE', 'height': 75.0, 'weight': '283', 'compRating': '0.8993', 'compStars': 4, 'nationalRank': '269', 'positionRank': '12', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2009', 'playerName': 'Ed Stinson', 'highSchool': 'South Dade', 'city': 'Homestead', 'state': 'FL', 'position': 'SDE', 'height': 76.0, 'weight': '279', 'compRating': '0.8938', 'compStars': 4, 'nationalRank': '296', 'positionRank': '13', 'stateRank': '49', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2009', 'playerName': 'Kenny Bell', 'highSchool': 'Rayville', 'city': 'Rayville', 'state': 'LA', 'position': 'WR', 'height': 73.0, 'weight': '175', 'compRating': '0.8917', 'compStars': 4, 'nationalRank': '309', 'positionRank': '40', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2009', 'playerName': 'Chris Bonds', 'highSchool': 'Richland Northeast', 'city': 'Columbia', 'state': 'SC', 'position': 'SDE', 'height': 76.0, 'weight': '269', 'compRating': '0.8826', 'compStars': 3, 'nationalRank': '391', 'positionRank': '16', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2009', 'playerName': 'Jonathan Atchison', 'highSchool': 'Douglass', 'city': 'Atlanta', 'state': 'GA', 'position': 'OLB', 'height': 75.0, 'weight': '240', 'compRating': '0.8826', 'compStars': 3, 'nationalRank': '394', 'positionRank': '27', 'stateRank': '28', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2009', 'playerName': 'Chance Warmack', 'highSchool': 'Westlake', 'city': 'Atlanta', 'state': 'GA', 'position': 'OG', 'height': 75.0, 'weight': '320', 'compRating': '0.8795', 'compStars': 3, 'nationalRank': '426', 'positionRank': '26', 'stateRank': '32', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2009', 'playerName': 'Anthony Steen', 'highSchool': 'Lee Academy', 'city': 'Clarksdale', 'state': 'MS', 'position': 'OG', 'height': 75.0, 'weight': '303', 'compRating': '0.8764', 'compStars': 3, 'nationalRank': '467', 'positionRank': '30', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2009', 'playerName': 'Anthony Orr', 'highSchool': 'Sparkman', 'city': 'Harvest', 'state': 'AL', 'position': 'SDE', 'height': 76.0, 'weight': '258', 'compRating': '0.8701', 'compStars': 3, 'nationalRank': '552', 'positionRank': '27', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2009', 'playerName': 'Kellen Williams', 'highSchool': 'Brookwood', 'city': 'Snellville', 'state': 'GA', 'position': 'OG', 'height': 76.0, 'weight': '308', 'compRating': '0.8670', 'compStars': 3, 'nationalRank': '596', 'positionRank': '39', 'stateRank': '46', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2009', 'playerName': 'Darius McKeller', 'highSchool': 'Jonesboro', 'city': 'Jonesboro', 'state': 'GA', 'position': 'OT', 'height': 78.0, 'weight': '280', 'compRating': '0.8653', 'compStars': 3, 'nationalRank': '626', 'positionRank': '44', 'stateRank': '49', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2009', 'playerName': 'Mike Marrow', 'highSchool': 'Central Catholic', 'city': 'Toledo', 'state': 'OH', 'position': 'FB', 'height': 74.0, 'weight': '235', 'compRating': '0.8604', 'compStars': 3, 'nationalRank': '725', 'positionRank': '9', 'stateRank': '39', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2009', 'playerName': 'Quinton Dial', 'highSchool': 'Clay-Chalkville', 'city': 'Pinson', 'state': 'AL', 'position': 'DT', 'height': 77.0, 'weight': '310', 'compRating': '0.8906', 'compStars': 4, 'nationalRank': '322', 'positionRank': '30', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2009', 'playerName': 'Kelly Johnson', 'highSchool': 'Providence Day School', 'city': 'Charlotte', 'state': 'NC', 'position': 'TE', 'height': 75.0, 'weight': '230', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA'}, {'school': 'vanderbilt', 'year': '2009', 'playerName': 'Wesley Johnson', 'highSchool': 'Montgomery Bell Academy', 'city': 'Nashville', 'state': 'TN', 'position': 'OT', 'height': 77.0, 'weight': '248', 'compRating': '0.8764', 'compStars': 3, 'nationalRank': '479', 'positionRank': '30', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2009', 'playerName': 'Brady Brown', 'highSchool': 'Argyle', 'city': 'Argyle', 'state': 'TX', 'position': 'WR', 'height': 77.0, 'weight': '195', 'compRating': '0.8670', 'compStars': 3, 'nationalRank': '598', 'positionRank': '77', 'stateRank': '82', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2009', 'playerName': 'Eric Samuels', 'highSchool': 'Umatilla', 'city': 'Umatilla', 'state': 'FL', 'position': 'ATH', 'height': 72.0, 'weight': '187', 'compRating': '0.8653', 'compStars': 3, 'nationalRank': '624', 'positionRank': '40', 'stateRank': '91', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2009', 'playerName': 'Mason Johnston', 'highSchool': 'The Bolles School', 'city': 'Jacksonville', 'state': 'FL', 'position': 'TE', 'height': 76.0, 'weight': '235', 'compRating': '0.8622', 'compStars': 3, 'nationalRank': '685', 'positionRank': '25', 'stateRank': '99', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2009', 'playerName': 'Zac Stacy', 'highSchool': 'Bibb County', 'city': 'Centreville', 'state': 'AL', 'position': 'RB', 'height': 69.0, 'weight': '189', 'compRating': '0.8590', 'compStars': 3, 'nationalRank': '747', 'positionRank': '63', 'stateRank': '22', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2009', 'playerName': 'Trey Wilson', 'highSchool': 'Evangel Christian Academy', 'city': 'Shreveport', 'state': 'LA', 'position': 'CB', 'height': 71.0, 'weight': '178', 'compRating': '0.8559', 'compStars': 3, 'nationalRank': '815', 'positionRank': '64', 'stateRank': '27', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2009', 'playerName': 'Warren Norman', 'highSchool': 'Chamblee Charter', 'city': 'Atlanta', 'state': 'GA', 'position': 'RB', 'height': 70.0, 'weight': '188', 'compRating': '0.8528', 'compStars': 3, 'nationalRank': '895', 'positionRank': '75', 'stateRank': '69', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2009', 'playerName': 'Collin Ashley', 'highSchool': 'Flower Mound', 'city': 'Flower Mound', 'state': 'TX', 'position': 'ATH', 'height': 72.0, 'weight': '170', 'compRating': '0.8497', 'compStars': 3, 'nationalRank': '968', 'positionRank': '58', 'stateRank': '149', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2009', 'playerName': 'Blake Southerland', 'highSchool': 'Greater Atlanta Christian School', 'city': 'Norcross', 'state': 'GA', 'position': 'ILB', 'height': 74.0, 'weight': '230', 'compRating': '0.8479', 'compStars': 3, 'nationalRank': '997', 'positionRank': '63', 'stateRank': '73', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2009', 'playerName': 'Thad McHaney', 'highSchool': 'Brentwood Academy', 'city': 'Brentwood', 'state': 'TN', 'position': 'TE', 'height': 76.0, 'weight': '240', 'compRating': '0.8417', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '44', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2009', 'playerName': 'Eddie Foster', 'highSchool': 'Colleyville Heritage', 'city': 'Colleyville', 'state': 'TX', 'position': 'CB', 'height': 70.0, 'weight': '165', 'compRating': '0.8417', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '86', 'stateRank': '172', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2009', 'playerName': 'Jay Fullam', 'highSchool': 'McCallie School', 'city': 'Chattanooga', 'state': 'TN', 'position': 'S', 'height': 73.0, 'weight': '191', 'compRating': '0.8399', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '84', 'stateRank': '25', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2009', 'playerName': 'Wesley Tate', 'highSchool': 'Pope John Paul II', 'city': 'Hendersonville', 'state': 'TN', 'position': 'RB', 'height': 74.0, 'weight': '210', 'compRating': '0.8354', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '87', 'stateRank': '26', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2009', 'playerName': 'Mylon Brown', 'highSchool': 'Pasco', 'city': 'Dade City', 'state': 'FL', 'position': 'OT', 'height': 77.0, 'weight': '295', 'compRating': '0.8288', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '101', 'stateRank': '172', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2009', 'playerName': 'Walker May', 'highSchool': 'Briarwood Christian', 'city': 'Birmingham', 'state': 'AL', 'position': 'WDE', 'height': 77.0, 'weight': '210', 'compRating': '0.8115', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '60', 'stateRank': '43', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2009', 'playerName': 'Charlie Goro', 'highSchool': 'Maine South', 'city': 'Park Ridge', 'state': 'IL', 'position': 'DUAL', 'height': 74.0, 'weight': '183', 'compRating': '0.8104', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '42', 'stateRank': '34', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2009', 'playerName': 'Javon Marshall', 'highSchool': 'Wayne', 'city': 'Dayton', 'state': 'OH', 'position': 'S', 'height': 71.0, 'weight': '180', 'compRating': '0.8083', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '122', 'stateRank': '97', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2009', 'playerName': 'Justin Cabbagestalk', 'highSchool': 'Armwood', 'city': 'Seffner', 'state': 'FL', 'position': 'OG', 'height': 76.0, 'weight': '270', 'compRating': '0.7990', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '118', 'stateRank': '210', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2013', 'playerName': 'Josh Augusta', 'highSchool': 'Peoria', 'city': 'Peoria', 'state': 'IL', 'position': 'DT', 'height': 77.0, 'weight': '295', 'compRating': '0.9105', 'compStars': 4, 'nationalRank': '234', 'positionRank': '19', 'stateRank': '9', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '206', '247positionRank': '16', '247stateRank': '8'}, {'school': 'missouri', 'year': '2013', 'playerName': 'Trent Hosick', 'highSchool': 'Staley', 'city': 'Kansas City', 'state': 'MO', 'position': 'DUAL', 'height': 74.0, 'weight': '220', 'compRating': '0.8841', 'compStars': 3, 'nationalRank': '358', 'positionRank': '16', 'stateRank': '4', '247Rating': ' 81 ', '247Stars': 3, '247nationalRank': '179', '247positionRank': '5', '247stateRank': '16'}, {'school': 'missouri', 'year': '2013', 'playerName': 'Clay Rhodes', 'highSchool': 'Blue Valley', 'city': 'Randolph', 'state': 'KS', 'position': 'OT', 'height': 78.0, 'weight': '270', 'compRating': '0.8720', 'compStars': 3, 'nationalRank': '457', 'positionRank': '36', 'stateRank': '3', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '53', '247stateRank': '2'}, {'school': 'missouri', 'year': '2013', 'playerName': 'Eric Beisel', 'highSchool': 'Rockwood Summit', 'city': 'Fenton', 'state': 'MO', 'position': 'ILB', 'height': 76.0, 'weight': '236', 'compRating': '0.8678', 'compStars': 3, 'nationalRank': '501', 'positionRank': '34', 'stateRank': '7', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '29', '247stateRank': '8'}, {'school': 'missouri', 'year': '2013', 'playerName': "J'Mon Moore", 'highSchool': 'Elkins', 'city': 'Missouri City', 'state': 'TX', 'position': 'WR', 'height': 74.0, 'weight': '168', 'compRating': '0.8653', 'compStars': 3, 'nationalRank': '546', 'positionRank': '75', 'stateRank': '78', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '39', '247stateRank': '46'}, {'school': 'missouri', 'year': '2013', 'playerName': 'Eddie Printz', 'highSchool': 'Lassiter', 'city': 'Marietta', 'state': 'GA', 'position': 'PRO', 'height': 76.0, 'weight': '200', 'compRating': '0.8609', 'compStars': 3, 'nationalRank': '611', 'positionRank': '30', 'stateRank': '58', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '33', '247stateRank': '62'}, {'school': 'missouri', 'year': '2013', 'playerName': 'Anthony Sherrils', 'highSchool': 'Hogan Preparatory Academy', 'city': 'Kansas City', 'state': 'MO', 'position': 'ATH', 'height': 72.0, 'weight': '175', 'compRating': '0.8590', 'compStars': 3, 'nationalRank': '650', 'positionRank': '44', 'stateRank': '10', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '52', '247stateRank': '10'}, {'school': 'missouri', 'year': '2013', 'playerName': 'Marcus Loud', 'highSchool': 'Wheatley', 'city': 'Houston', 'state': 'TX', 'position': 'SDE', 'height': 76.0, 'weight': '230', 'compRating': '0.8570', 'compStars': 3, 'nationalRank': '679', 'positionRank': '34', 'stateRank': '97'}, {'school': 'missouri', 'year': '2013', 'playerName': 'Harneet Gill', 'highSchool': 'Francis Howell', 'city': 'Saint Charles', 'state': 'MO', 'position': 'OT', 'height': 79.0, 'weight': '270', 'compRating': '0.8563', 'compStars': 3, 'nationalRank': '694', 'positionRank': '53', 'stateRank': '11', '247Rating': ' 85 ', '247Stars': 3, '247nationalRank': '91', '247positionRank': '6', '247stateRank': '24'}, {'school': 'missouri', 'year': '2013', 'playerName': 'Duron Singleton', 'highSchool': 'Fresno City College', 'city': 'Fresno', 'state': 'CA', 'position': 'S', 'height': 74.0, 'weight': '210', 'compRating': '0.8434', 'compStars': 3, 'nationalRank': '111', 'positionRank': '8', 'stateRank': '35'}, {'school': 'missouri', 'year': '2013', 'playerName': 'Aarion Penton', 'highSchool': 'Christian Brothers College', 'city': 'Saint Louis', 'state': 'MO', 'position': 'ATH', 'height': 70.0, 'weight': '175', 'compRating': '0.8422', 'compStars': 3, 'nationalRank': '946', 'positionRank': '66', 'stateRank': '13', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '85', '247stateRank': '12'}, {'school': 'missouri', 'year': '2013', 'playerName': 'Joe Burkett', 'highSchool': 'Jefferson City', 'city': 'Jefferson City', 'state': 'MO', 'position': 'OLB', 'height': 75.0, 'weight': '195', 'compRating': '0.8383', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '86', 'stateRank': '15', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '144', '247stateRank': '21'}, {'school': 'missouri', 'year': '2013', 'playerName': 'Jason Reese', 'highSchool': 'Trinity', 'city': 'Euless', 'state': 'TX', 'position': 'TE', 'height': 76.0, 'weight': '227', 'compRating': '0.8375', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '43', 'stateRank': '163', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '46', '247stateRank': '174'}, {'school': 'missouri', 'year': '2013', 'playerName': 'Nate Crawford', 'highSchool': 'West Florida Tech', 'city': 'Pensacola', 'state': 'FL', 'position': 'SDE', 'height': 76.0, 'weight': '260', 'compRating': '0.8224', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '64', 'stateRank': '191', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '58', '247stateRank': '165'}, {'school': 'missouri', 'year': '2013', 'playerName': 'A.J. Logan', 'highSchool': 'Rock Bridge', 'city': 'Columbia', 'state': 'MO', 'position': 'DT', 'height': 74.0, 'weight': '310', 'compRating': '0.8209', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '80', 'stateRank': '20', '247Rating': ' 78 ', '247Stars': 2, '247positionRank': '119', '247stateRank': '24'}, {'school': 'missouri', 'year': '2013', 'playerName': 'Alec Abeln', 'highSchool': 'St. Louis University', 'city': 'Saint Louis', 'state': 'MO', 'position': 'OC', 'height': 75.0, 'weight': '270', 'compRating': '0.8115', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '22', 'stateRank': '23', '247Rating': ' 78 ', '247Stars': 2, '247positionRank': '26', '247stateRank': '23'}, {'school': 'missouri', 'year': '2013', 'playerName': 'Shaun Rupert', 'highSchool': 'Carver', 'city': 'Montgomery', 'state': 'AL', 'position': 'S', 'height': 72.0, 'weight': '171', 'compRating': '0.8083', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '120', 'stateRank': '49', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '136', '247stateRank': '70'}, {'school': 'missouri', 'year': '2013', 'playerName': 'Charles Harris', 'highSchool': 'Lincoln College Prep', 'city': 'Kansas City', 'state': 'MO', 'position': 'WDE', 'height': 76.0, 'weight': '220', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '120', 'stateRank': '32', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2013', 'playerName': 'Dequinton Osborne', 'highSchool': 'South Grand Prairie', 'city': 'Grand Prairie', 'state': 'TX', 'position': 'DT', 'height': 71.5, 'weight': '300', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' 85 ', '247Stars': 3, '247nationalRank': '106', '247positionRank': '14', '247stateRank': '7'}, {'school': 'missouri', 'year': '2013', 'playerName': 'Chase Abbington', 'highSchool': 'Ft. Zumwalt South', 'city': 'Saint Peters', 'state': 'MO', 'position': 'S', 'height': 74.0, 'weight': '190', 'compRating': '0.9059', 'compStars': 4, 'nationalRank': '251', 'positionRank': '23', 'stateRank': '2', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '37', '247positionRank': '3', '247stateRank': '6'}, {'school': 'missouri', 'year': '2013', 'playerName': 'Antar Thompson', 'highSchool': 'Maplewood-richmond Hgts.', 'city': 'Saint Louis', 'state': 'MO', 'position': 'DT', 'height': 75.0, 'weight': '290', 'compRating': '0.8706', 'compStars': 3, 'nationalRank': '475', 'positionRank': '33', 'stateRank': '6', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '60', '247positionRank': '14', '247stateRank': '1'}, {'school': 'kentucky', 'year': '2017', 'playerName': 'Lynn Bowden Jr.', 'highSchool': 'Warren G Harding', 'city': 'Warren', 'state': 'OH', 'position': 'ATH', 'height': 73.0, 'weight': '185', 'compRating': '0.9307', 'compStars': 4, 'nationalRank': '164', 'positionRank': '4', 'stateRank': '3', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '110', '247positionRank': '2', '247stateRank': '3'}, {'school': 'kentucky', 'year': '2017', 'playerName': 'Josh Paschal', 'highSchool': 'Good Counsel', 'city': 'Olney', 'state': 'MD', 'position': 'SDE', 'height': 76.0, 'weight': '255', 'compRating': '0.9028', 'compStars': 4, 'nationalRank': '267', 'positionRank': '11', 'stateRank': '6', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '191', '247positionRank': '8', '247stateRank': '3'}, {'school': 'kentucky', 'year': '2017', 'playerName': 'Tyrell Ajian', 'highSchool': 'Madison', 'city': 'Mansfield', 'state': 'OH', 'position': 'ATH', 'height': 73.0, 'weight': '185', 'compRating': '0.8963', 'compStars': 4, 'nationalRank': '293', 'positionRank': '16', 'stateRank': '15', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '168', '247positionRank': '5', '247stateRank': '7'}, {'school': 'kentucky', 'year': '2017', 'playerName': 'JaVonte Richardson', 'highSchool': 'Maple Heights', 'city': 'Maple Heights', 'state': 'OH', 'position': 'WR', 'height': 76.0, 'weight': '210', 'compRating': '0.8939', 'compStars': 4, 'nationalRank': '309', 'positionRank': '42', 'stateRank': '17'}, {'school': 'kentucky', 'year': '2017', 'playerName': 'Yusuf Corker', 'highSchool': 'Woodland', 'city': 'Stockbridge', 'state': 'GA', 'position': 'CB', 'height': 72.0, 'weight': '183', 'compRating': '0.8935', 'compStars': 4, 'nationalRank': '311', 'positionRank': '36', 'stateRank': '30', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '62', '247stateRank': '64'}, {'school': 'kentucky', 'year': '2017', 'playerName': 'Danny Clark', 'highSchool': 'Archbishop Hoban', 'city': 'Akron', 'state': 'OH', 'position': 'PRO', 'height': 76.0, 'weight': '223', 'compRating': '0.8838', 'compStars': 3, 'nationalRank': '382', 'positionRank': '15', 'stateRank': '18', '247Rating': ' 81 ', '247Stars': 3, '247nationalRank': '226', '247positionRank': '5', '247stateRank': '44'}, {'school': 'kentucky', 'year': '2017', 'playerName': 'Jordan Wright', 'highSchool': 'Dillard', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'WDE', 'height': 77.0, 'weight': '225', 'compRating': '0.8706', 'compStars': 3, 'nationalRank': '475', 'positionRank': '28', 'stateRank': '61', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '26', '247stateRank': '41'}, {'school': 'kentucky', 'year': '2017', 'playerName': 'Phil Hoskins', 'highSchool': 'Highland C.C.', 'city': 'Highland', 'state': 'KS', 'position': 'DT', 'height': 77.0, 'weight': '275', 'compRating': '0.8656', 'compStars': 3, 'nationalRank': '46', 'positionRank': '5', 'stateRank': '5', '247Rating': ' 87 ', '247Stars': 3, '247nationalRank': '44', '247positionRank': '4', '247stateRank': '6'}, {'school': 'kentucky', 'year': '2017', 'playerName': 'Alex King', 'highSchool': 'William Mason', 'city': 'Mason', 'state': 'OH', 'position': 'WDE', 'height': 76.0, 'weight': '235', 'compRating': '0.8624', 'compStars': 3, 'nationalRank': '589', 'positionRank': '38', 'stateRank': '26', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '37', '247stateRank': '28'}, {'school': 'kentucky', 'year': '2017', 'playerName': 'Bryant Koback', 'highSchool': 'Springfield', 'city': 'Holland', 'state': 'OH', 'position': 'RB', 'height': 71.0, 'weight': '191', 'compRating': '0.8569', 'compStars': 3, 'nationalRank': '683', 'positionRank': '34', 'stateRank': '31', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '32', '247stateRank': '25'}, {'school': 'kentucky', 'year': '2017', 'playerName': 'Josh Ali', 'highSchool': 'Chaminade-Madonna Prep', 'city': 'Hollywood', 'state': 'FL', 'position': 'ATH', 'height': 72.0, 'weight': '180', 'compRating': '0.8550', 'compStars': 3, 'nationalRank': '720', 'positionRank': '54', 'stateRank': '94', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '71', '247stateRank': '131'}, {'school': 'kentucky', 'year': '2017', 'playerName': 'Clevan Thomas', 'highSchool': 'Charles W Flanagan', 'city': 'Hollywood', 'state': 'FL', 'position': 'WR', 'height': 71.5, 'weight': '192', 'compRating': '0.8549', 'compStars': 3, 'nationalRank': '722', 'positionRank': '102', 'stateRank': '95', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '149', '247stateRank': '149'}, {'school': 'kentucky', 'year': '2017', 'playerName': 'Lonnie Johnson', 'highSchool': 'Garden City C.C.', 'city': 'Garden City', 'state': 'KS', 'position': 'S', 'height': 75.0, 'weight': '190', 'compRating': '0.8522', 'compStars': 3, 'nationalRank': '74', 'positionRank': '5', 'stateRank': '9', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '25', '247stateRank': '6'}, {'school': 'kentucky', 'year': '2017', 'playerName': 'Sebastien Dolcine', 'highSchool': 'Miramar', 'city': 'Hollywood', 'state': 'FL', 'position': 'OG', 'height': 77.0, 'weight': '295', 'compRating': '0.8522', 'compStars': 3, 'nationalRank': '782', 'positionRank': '39', 'stateRank': '103'}, {'school': 'kentucky', 'year': '2017', 'playerName': 'Michael Nesbitt', 'highSchool': 'Boyd Anderson', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'CB', 'height': 72.0, 'weight': '185', 'compRating': '0.8509', 'compStars': 3, 'nationalRank': '822', 'positionRank': '83', 'stateRank': '112', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '127', '247stateRank': '160'}, {'school': 'kentucky', 'year': '2017', 'playerName': 'Jamin Davis', 'highSchool': 'Long County', 'city': 'Lincolnton', 'state': 'GA', 'position': 'OLB', 'height': 75.0, 'weight': '206', 'compRating': '0.8472', 'compStars': 3, 'nationalRank': '916', 'positionRank': '60', 'stateRank': '92', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '57', '247stateRank': '82'}, {'school': 'kentucky', 'year': '2017', 'playerName': 'Walker Wood', 'highSchool': 'Lafayette', 'city': 'Lexington', 'state': 'KY', 'position': 'DUAL', 'height': 73.0, 'weight': '187', 'compRating': '0.8452', 'compStars': 3, 'nationalRank': '975', 'positionRank': '20', 'stateRank': '4', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '26', '247stateRank': '8'}, {'school': 'kentucky', 'year': '2017', 'playerName': 'Quinton Bohanna', 'highSchool': 'Cordova', 'city': 'Cordova', 'state': 'TN', 'position': 'DT', 'height': 76.0, 'weight': '315', 'compRating': '0.8422', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '70', 'stateRank': '29', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '73', '247stateRank': '35'}, {'school': 'kentucky', 'year': '2017', 'playerName': 'Naasir Watkins', 'highSchool': 'Good Counsel', 'city': 'Olney', 'state': 'MD', 'position': 'OT', 'height': 78.0, 'weight': '300', 'compRating': '0.8400', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '103', 'stateRank': '18', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '97', '247stateRank': '20'}, {'school': 'kentucky', 'year': '2017', 'playerName': 'Abule Abadi-Fitzgerald', 'highSchool': 'Victory Christian Academy', 'city': 'Lakeland', 'state': 'FL', 'position': 'SDE', 'height': 79.0, 'weight': '245', 'compRating': '0.8399', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '54', 'stateRank': '160', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '62', '247stateRank': '188'}, {'school': 'kentucky', 'year': '2017', 'playerName': 'Christopher Whittaker', 'highSchool': 'Chaminade-Madonna Prep', 'city': 'Hollywood', 'state': 'FL', 'position': 'WDE', 'height': 76.0, 'weight': '246', 'compRating': '0.8385', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '65', 'stateRank': '167', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '60', '247stateRank': '133'}, {'school': 'kentucky', 'year': '2017', 'playerName': 'Isaiah Epps', 'highSchool': 'Jenks', 'city': 'Jenks', 'state': 'OK', 'position': 'WR', 'height': 75.0, 'weight': '185', 'compRating': '0.8280', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '206', 'stateRank': '22', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '140', '247stateRank': '17'}, {'school': 'kentucky', 'year': '2017', 'playerName': 'Cedrick Dort', 'highSchool': 'Dwyer', 'city': 'Palm Beach Gardens', 'state': 'FL', 'position': 'CB', 'height': 73.0, 'weight': '165', 'compRating': '0.8254', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '160', 'stateRank': '215', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '160', '247stateRank': '243'}, {'school': 'kentucky', 'year': '2017', 'playerName': 'Austin Dotson', 'highSchool': 'Belfry', 'city': 'Belfry', 'state': 'KY', 'position': 'OT', 'height': 78.0, 'weight': '305', 'compRating': '0.8225', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '142', 'stateRank': '9', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '95', '247stateRank': '3'}, {'school': 'mississippi-state', 'year': '2009', 'playerName': 'Chad Bumphis', 'highSchool': 'Tupelo', 'city': 'Tupelo', 'state': 'MS', 'position': 'WR', 'height': 70.0, 'weight': '200', 'compRating': '0.9391', 'compStars': 4, 'nationalRank': '129', 'positionRank': '18', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2009', 'playerName': 'Fletcher Cox', 'highSchool': 'Yazoo City', 'city': 'Yazoo City', 'state': 'MS', 'position': 'DT', 'height': 76.0, 'weight': '240', 'compRating': '0.9254', 'compStars': 4, 'nationalRank': '157', 'positionRank': '11', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2009', 'playerName': 'Pernell McPhee', 'highSchool': 'Itawamba C.C.', 'city': 'Fulton', 'state': 'MS', 'position': 'SDE', 'height': 76.0, 'weight': '270', 'compRating': '0.9222', 'compStars': 4, 'nationalRank': '7', 'positionRank': '2', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2009', 'playerName': 'Josh Boyd', 'highSchool': 'Philadelphia', 'city': 'Philadelphia', 'state': 'MS', 'position': 'DT', 'height': 75.0, 'weight': '295', 'compRating': '0.9209', 'compStars': 4, 'nationalRank': '173', 'positionRank': '14', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2009', 'playerName': 'Montrell Conner', 'highSchool': 'Ouachita Parish', 'city': 'Monroe', 'state': 'LA', 'position': 'RB', 'height': 74.0, 'weight': '215', 'compRating': '0.9190', 'compStars': 4, 'nationalRank': '181', 'positionRank': '20', 'stateRank': '8'}, {'school': 'mississippi-state', 'year': '2009', 'playerName': 'Tyler Russell', 'highSchool': 'Meridian', 'city': 'Meridian', 'state': 'MS', 'position': 'PRO', 'height': 76.0, 'weight': '200', 'compRating': '0.9107', 'compStars': 4, 'nationalRank': '218', 'positionRank': '13', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2009', 'playerName': 'Chris Smith', 'highSchool': 'Meridian', 'city': 'Meridian', 'state': 'MS', 'position': 'WR', 'height': 73.0, 'weight': '191', 'compRating': '0.8936', 'compStars': 4, 'nationalRank': '301', 'positionRank': '38', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2009', 'playerName': 'Chris White', 'highSchool': 'Mississippi Gulf Coast C.C.', 'city': 'Perkinston', 'state': 'MS', 'position': 'ILB', 'height': 76.0, 'weight': '238', 'compRating': '0.8889', 'compStars': 3, 'nationalRank': '27', 'positionRank': '3', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2009', 'playerName': 'Dennis Thames', 'highSchool': 'Louisville', 'city': 'Louisville', 'state': 'MS', 'position': 'ATH', 'height': 71.0, 'weight': '185', 'compRating': '0.8875', 'compStars': 3, 'nationalRank': '350', 'positionRank': '15', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2009', 'playerName': 'Ricco Sanders', 'highSchool': 'Byrnes', 'city': 'Duncan', 'state': 'SC', 'position': 'WR', 'height': 71.0, 'weight': '180', 'compRating': '0.8826', 'compStars': 3, 'nationalRank': '388', 'positionRank': '50', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2009', 'playerName': 'Brandon Heavens', 'highSchool': 'Jess Lanier', 'city': 'Hueytown', 'state': 'AL', 'position': 'WR', 'height': 70.0, 'weight': '175', 'compRating': '0.8826', 'compStars': 3, 'nationalRank': '396', 'positionRank': '52', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2009', 'playerName': 'Cameron Lawrence', 'highSchool': 'Magnolia Heights School', 'city': 'Senatobia', 'state': 'MS', 'position': 'OLB', 'height': 74.0, 'weight': '230', 'compRating': '0.8795', 'compStars': 3, 'nationalRank': '424', 'positionRank': '30', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2009', 'playerName': 'Johnthan Banks', 'highSchool': 'East Webster', 'city': 'Maben', 'state': 'MS', 'position': 'S', 'height': 75.0, 'weight': '180', 'compRating': '0.8715', 'compStars': 3, 'nationalRank': '539', 'positionRank': '40', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2009', 'playerName': 'Maurice Langston', 'highSchool': 'East Central C.C.', 'city': 'Decatur', 'state': 'MS', 'position': 'CB', 'height': 71.0, 'weight': '195', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '44', 'positionRank': '5', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2009', 'playerName': 'LaDarius Perkins', 'highSchool': 'Greenville Weston', 'city': 'Greenville', 'state': 'MS', 'position': 'RB', 'height': 69.0, 'weight': '180', 'compRating': '0.8653', 'compStars': 3, 'nationalRank': '642', 'positionRank': '58', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2009', 'playerName': 'Mardrecas Hood', 'highSchool': 'Pickens County', 'city': 'Reform', 'state': 'AL', 'position': 'ATH', 'height': 75.0, 'weight': '180', 'compRating': '0.8590', 'compStars': 3, 'nationalRank': '751', 'positionRank': '44', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2009', 'playerName': 'Sam Watts', 'highSchool': 'Salem', 'city': 'Conyers', 'state': 'GA', 'position': 'OG', 'height': 77.0, 'weight': '300', 'compRating': '0.8559', 'compStars': 3, 'nationalRank': '807', 'positionRank': '56', 'stateRank': '64', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2009', 'playerName': 'William Shumpert', 'highSchool': 'Itawamba Agricultural', 'city': 'Fulton', 'state': 'MS', 'position': 'FB', 'height': 72.0, 'weight': '238', 'compRating': '0.8528', 'compStars': 3, 'nationalRank': '865', 'positionRank': '14', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2009', 'playerName': 'Deontae Skinner', 'highSchool': 'Noxubee County', 'city': 'Macon', 'state': 'MS', 'position': 'OLB', 'height': 74.0, 'weight': '230', 'compRating': '0.8528', 'compStars': 3, 'nationalRank': '869', 'positionRank': '73', 'stateRank': '22', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2009', 'playerName': 'Nickoe Whitley', 'highSchool': 'Provine', 'city': 'Jackson', 'state': 'MS', 'position': 'ATH', 'height': 73.0, 'weight': '190', 'compRating': '0.8497', 'compStars': 3, 'nationalRank': '966', 'positionRank': '56', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2009', 'playerName': 'Leon Berry', 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'WR', 'height': 73.0, 'weight': '185', 'compRating': '0.8444', 'compStars': 3, 'nationalRank': '66', 'positionRank': '10', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2009', 'playerName': 'Gabe Jackson', 'highSchool': 'Amite County', 'city': 'Liberty', 'state': 'MS', 'position': 'OG', 'height': 76.0, 'weight': '320', 'compRating': '0.8417', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '78', 'stateRank': '29', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2009', 'playerName': 'Gabriel Jackson', 'highSchool': 'Amite County', 'city': 'Liberty', 'state': 'MS', 'position': 'OT', 'height': 76.0, 'weight': '310', 'compRating': '0.8389', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '92', 'stateRank': '31', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2009', 'playerName': 'Heath Hutchins', 'highSchool': 'Itawamba C.C.', 'city': 'Fulton', 'state': 'MS', 'position': 'K', 'height': 75.0, 'weight': '215', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '94', 'positionRank': '2', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2009', 'playerName': 'Sean Brauchle', 'highSchool': 'Mississippi Gulf Coast C.C.', 'city': 'Perkinston', 'state': 'MS', 'position': 'K', 'height': 69.0, 'weight': '180', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '96', 'positionRank': '3', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2009', 'playerName': 'Billy Hamilton', 'highSchool': 'Taylorsville', 'city': 'Taylorsville', 'state': 'MS', 'position': 'WR', 'height': 73.0, 'weight': '170', 'compRating': '0.8274', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '152', 'stateRank': '37', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2009', 'playerName': 'Darius Slay', 'highSchool': 'Brunswick', 'city': 'Brunswick', 'state': 'GA', 'position': 'WR', 'height': 73.0, 'weight': '180', 'compRating': '0.8146', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '161', 'stateRank': '100', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2009', 'playerName': 'Johnathan McKenzie', 'highSchool': 'Starkville Academy', 'city': 'Starkville', 'state': 'MS', 'position': 'SDE', 'height': 77.0, 'weight': '240', 'compRating': '0.7941', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '92', 'stateRank': '41', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2009', 'playerName': 'Adrian Marcus', 'highSchool': 'Thompson', 'city': 'Alabaster', 'state': 'AL', 'position': 'FB', 'height': 70.0, 'weight': '235', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2009', 'playerName': 'Baker Swedenburg', 'highSchool': 'Heritage Academy', 'city': 'Columbus', 'state': 'MS', 'position': 'P', 'height': 72.0, 'weight': '185', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2009', 'playerName': 'Derek DePasquale', 'highSchool': 'The Woodlands', 'city': 'The Woodlands', 'state': 'TX', 'position': 'K', 'height': 68.0, 'weight': '180', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2009', 'playerName': 'Brandon Wilson', 'highSchool': 'Northridge', 'city': 'Tuscaloosa', 'state': 'AL', 'position': 'ILB', 'height': 73.0, 'weight': '240', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2005', 'playerName': 'Chase Daniel', 'highSchool': 'Southlake Carroll', 'city': 'Southlake', 'state': 'TX', 'position': 'DUAL', 'height': 73.0, 'weight': '214', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '281', 'positionRank': '8', 'stateRank': '38', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2005', 'playerName': 'Darnell Terrell', 'highSchool': 'Coffeyville C.C.', 'city': 'Coffeyville', 'state': 'KS', 'position': 'S', 'height': 75.0, 'weight': '210', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '23', 'positionRank': '3', 'stateRank': '5'}, {'school': 'missouri', 'year': '2005', 'playerName': 'Dain Wise', 'highSchool': 'Carl Albert', 'city': 'Oklahoma City', 'state': 'OK', 'position': 'OG', 'height': 76.0, 'weight': '270', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '337', 'positionRank': '25', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2005', 'playerName': 'Chase Coffman', 'highSchool': 'Raymore-Peculiar', 'city': 'Peculiar', 'state': 'MO', 'position': 'TE', 'height': 79.0, 'weight': '210', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '456', 'positionRank': '27', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2005', 'playerName': 'Jaron Baston', 'highSchool': 'Blue Springs', 'city': 'Blue Springs', 'state': 'MO', 'position': 'SDE', 'height': 74.0, 'weight': '250', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '501', 'positionRank': '33', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2005', 'playerName': 'Brock Christopher', 'highSchool': 'Kearney', 'city': 'Kearney', 'state': 'MO', 'position': 'ILB', 'height': 75.0, 'weight': '215', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '526', 'positionRank': '25', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2005', 'playerName': 'Ziggy Hood', 'highSchool': 'Palo Duro', 'city': 'Amarillo', 'state': 'TX', 'position': 'WDE', 'height': 76.0, 'weight': '230', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '543', 'positionRank': '18', 'stateRank': '82', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2005', 'playerName': 'Hardy Ricks', 'highSchool': 'Brentwood', 'city': 'Saint Louis', 'state': 'MO', 'position': 'CB', 'height': 73.0, 'weight': '180', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '584', 'positionRank': '48', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2005', 'playerName': 'Connell Davis', 'highSchool': 'Gregory-Portland', 'city': 'Portland', 'state': 'TX', 'position': 'RB', 'height': 75.0, 'weight': '210', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '613', 'positionRank': '40', 'stateRank': '93', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2005', 'playerName': 'Chad Washington', 'highSchool': 'Lancaster', 'city': 'Lancaster', 'state': 'TX', 'position': 'CB', 'height': 71.0, 'weight': '192', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '634', 'positionRank': '52', 'stateRank': '97', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2005', 'playerName': 'Tarell Corby', 'highSchool': 'North Kansas City', 'city': 'Kansas City', 'state': 'MO', 'position': 'WDE', 'height': 76.0, 'weight': '210', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '655', 'positionRank': '25', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2005', 'playerName': 'Kurtis Gregory', 'highSchool': 'Santa Fe', 'city': 'Alma', 'state': 'MO', 'position': 'DT', 'height': 78.0, 'weight': '287', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '713', 'positionRank': '40', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2005', 'playerName': 'James Stigall', 'highSchool': 'Blue Springs', 'city': 'Blue Springs', 'state': 'MO', 'position': 'OG', 'height': 75.0, 'weight': '300', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '715', 'positionRank': '53', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2005', 'playerName': 'DeMarcus Scott', 'highSchool': 'Mississippi Delta C.C.', 'city': 'Moorhead', 'state': 'MS', 'position': 'SDE', 'height': 74.0, 'weight': '270', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '86', 'positionRank': '13', 'stateRank': '14'}, {'school': 'missouri', 'year': '2005', 'playerName': 'Louis Pintola', 'highSchool': 'Pasadena City College', 'city': 'Pasadena', 'state': 'CA', 'position': 'OT', 'height': 77.0, 'weight': '310', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '87', 'positionRank': '8', 'stateRank': '37'}, {'school': 'missouri', 'year': '2005', 'playerName': 'Matt Russell', 'highSchool': 'Solano C.C.', 'city': 'Fairfield', 'state': 'CA', 'position': 'OT', 'height': 77.0, 'weight': '310', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '91', 'positionRank': '9', 'stateRank': '40'}, {'school': 'missouri', 'year': '2005', 'playerName': 'Herman King', 'highSchool': 'Lancaster', 'city': 'Lancaster', 'state': 'WI', 'position': 'WDE', 'height': 75.0, 'weight': '215', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '825', 'positionRank': '33', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2005', 'playerName': 'Matt Casaday', 'highSchool': 'Plano West', 'city': 'Plano', 'state': 'TX', 'position': 'K', 'height': 70.0, 'weight': '190', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '860', 'positionRank': '8', 'stateRank': '127', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2005', 'playerName': 'Chad Marshall', 'highSchool': 'Mississippi Delta C.C.', 'city': 'Moorhead', 'state': 'MS', 'position': 'SDE', 'height': 74.0, 'weight': '240', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '109', 'positionRank': '16', 'stateRank': '16'}, {'school': 'missouri', 'year': '2005', 'playerName': 'Jamar Smith', 'highSchool': 'Northeastern Oklahoma A&M', 'city': 'Miami', 'state': 'OK', 'position': 'WDE', 'height': 74.0, 'weight': '270', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '110', 'positionRank': '6', 'stateRank': '5'}, {'school': 'missouri', 'year': '2005', 'playerName': 'Jon Gissinger', 'highSchool': 'Poway', 'city': 'Poway', 'state': 'CA', 'position': 'TE', 'height': 75.0, 'weight': '230', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '63', 'stateRank': '125', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2005', 'playerName': 'Chris Hudgins', 'highSchool': 'Van Vleck', 'city': 'Van Vleck', 'state': 'TX', 'position': 'TE', 'height': 76.0, 'weight': '250', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '68', 'stateRank': '183', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2005', 'playerName': 'Jason Townson', 'highSchool': 'Hazelwood East', 'city': 'Saint Louis', 'state': 'MO', 'position': 'DT', 'height': 76.0, 'weight': '285', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '70', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2008', 'playerName': 'Charles Mitchell', 'highSchool': 'Clarksdale', 'city': 'Clarksdale', 'state': 'MS', 'position': 'S', 'height': 71.0, 'weight': '205', 'compRating': '0.9349', 'compStars': 4, 'nationalRank': '133', 'positionRank': '11', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2008', 'playerName': 'Templeton Hardy', 'highSchool': 'North Panola', 'city': 'Sardis', 'state': 'MS', 'position': 'OG', 'height': 76.0, 'weight': '305', 'compRating': '0.8958', 'compStars': 4, 'nationalRank': '282', 'positionRank': '11', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2008', 'playerName': 'Phillip Freeman', 'highSchool': 'Copiah-Lincoln C.C.', 'city': 'Wesson', 'state': 'MS', 'position': 'OT', 'height': 78.0, 'weight': '290', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '47', 'positionRank': '3', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2008', 'playerName': 'Montario Patterson', 'highSchool': 'Biggersville', 'city': 'Corinth', 'state': 'MS', 'position': 'RB', 'height': 72.0, 'weight': '197', 'compRating': '0.8622', 'compStars': 3, 'nationalRank': '606', 'positionRank': '54', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2008', 'playerName': 'Josh Jackson', 'highSchool': 'Canton', 'city': 'Canton', 'state': 'MS', 'position': 'DT', 'height': 76.0, 'weight': '273', 'compRating': '0.8600', 'compStars': 3, 'nationalRank': '625', 'positionRank': '46', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2008', 'playerName': 'Bo Walters', 'highSchool': 'Briarwood Christian', 'city': 'Birmingham', 'state': 'AL', 'position': 'ILB', 'height': 74.0, 'weight': '220', 'compRating': '0.8542', 'compStars': 3, 'nationalRank': '716', 'positionRank': '36', 'stateRank': '30', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2008', 'playerName': 'John Paul Alford', 'highSchool': 'Kosciusko', 'city': 'Kosciusko', 'state': 'MS', 'position': 'OG', 'height': 75.0, 'weight': '275', 'compRating': '0.8420', 'compStars': 3, 'nationalRank': '841', 'positionRank': '62', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2008', 'playerName': 'Terrance Davis', 'highSchool': 'Salem', 'city': 'Conyers', 'state': 'GA', 'position': 'ATH', 'height': 71.0, 'weight': '180', 'compRating': '0.8399', 'compStars': 3, 'nationalRank': '870', 'positionRank': '60', 'stateRank': '60', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2008', 'playerName': 'Rashun Dixon', 'highSchool': 'Terry', 'city': 'Terry', 'state': 'MS', 'position': 'S', 'height': 72.0, 'weight': '185', 'compRating': '0.8375', 'compStars': 3, 'nationalRank': '904', 'positionRank': '75', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2008', 'playerName': 'Delmon Robinson', 'highSchool': 'Vicksburg', 'city': 'Vicksburg', 'state': 'MS', 'position': 'ATH', 'height': 71.0, 'weight': '181', 'compRating': '0.8337', 'compStars': 3, 'nationalRank': '950', 'positionRank': '68', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2008', 'playerName': 'Nelson Hurst', 'highSchool': 'Plainfield', 'city': 'Plainfield', 'state': 'IN', 'position': 'TE', 'height': 75.0, 'weight': '229', 'compRating': '0.8315', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '50', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2008', 'playerName': 'Charles Bailey', 'highSchool': 'Bartram Trail', 'city': 'Jacksonville', 'state': 'FL', 'position': 'WR', 'height': 75.0, 'weight': '175', 'compRating': '0.8194', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '133', 'stateRank': '135', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2008', 'playerName': 'Kirkland Gainous', 'highSchool': 'Lincoln', 'city': 'Tallahassee', 'state': 'FL', 'position': 'WDE', 'height': 74.0, 'weight': '225', 'compRating': '0.8163', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '38', 'stateRank': '140', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2008', 'playerName': 'Nick Bell', 'highSchool': 'Jess Lanier', 'city': 'Hueytown', 'state': 'AL', 'position': 'OLB', 'height': 76.0, 'weight': '225', 'compRating': '0.8083', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '90', 'stateRank': '49', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2008', 'playerName': 'Antonio Hoskins', 'highSchool': 'Water Valley', 'city': 'Water Valley', 'state': 'MS', 'position': 'OLB', 'height': 74.0, 'weight': '212', 'compRating': '0.7892', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '103', 'stateRank': '26', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2008', 'playerName': 'Arceto Clark', 'highSchool': 'Shannon', 'city': 'Shannon', 'state': 'MS', 'position': 'WR', 'height': 70.0, 'weight': '180', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2008', 'playerName': 'Louis Watson', 'highSchool': "St. Paul's Episcopal", 'city': 'Mobile', 'state': 'AL', 'position': 'S', 'height': 71.0, 'weight': '185', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2008', 'playerName': 'Corey Broomfield', 'highSchool': 'Bayside', 'city': 'Palm Bay', 'state': 'FL', 'position': 'CB', 'height': 70.0, 'weight': '180', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2008', 'playerName': 'Trevor Stigers', 'highSchool': 'Ridgeland', 'city': 'Ridgeland', 'state': 'MS', 'position': 'SDE', 'height': 77.0, 'weight': '245', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2008', 'playerName': 'Devin Jones', 'highSchool': 'DeSoto Central', 'city': 'Southaven', 'state': 'MS', 'position': 'SDE', 'height': 72.0, 'weight': '260', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2008', 'playerName': 'Tobias Smith', 'highSchool': 'Columbus', 'city': 'Columbus', 'state': 'MS', 'position': 'OG', 'height': 75.0, 'weight': '305', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2008', 'playerName': 'Sean Ferguson', 'highSchool': 'Norland', 'city': 'Miami', 'state': 'FL', 'position': 'SDE', 'height': 75.0, 'weight': '255', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2008', 'playerName': 'Shane McCardell', 'highSchool': 'West Brook', 'city': 'Beaumont', 'state': 'TX', 'position': 'WDE', 'height': 77.0, 'weight': '265', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2008', 'playerName': 'Kendrick Cook', 'highSchool': 'Etowah', 'city': 'Attalla', 'state': 'AL', 'position': 'TE', 'height': 73.0, 'weight': '255', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2004', 'playerName': 'Van Alexander', 'highSchool': 'Rock Bridge', 'city': 'Columbia', 'state': 'MO', 'position': 'OLB', 'height': 73.0, 'weight': '210', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '156', 'positionRank': '8', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2004', 'playerName': 'Jerrill Humphrey', 'highSchool': 'Highland Jr.-sr.', 'city': 'Lewistown', 'state': 'MO', 'position': 'WR', 'height': 76.0, 'weight': '210', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '187', 'positionRank': '28', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2004', 'playerName': 'Darrell Jackson', 'highSchool': 'Webster Groves', 'city': 'Saint Louis', 'state': 'MO', 'position': 'DUAL', 'height': 74.0, 'weight': '215', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '301', 'positionRank': '10', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2004', 'playerName': 'William Franklin', 'highSchool': 'Vashon', 'city': 'Saint Louis', 'state': 'MO', 'position': 'WR', 'height': 73.0, 'weight': '175', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '340', 'positionRank': '42', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2004', 'playerName': 'William Moore', 'highSchool': 'Hayti', 'city': 'Hayti', 'state': 'MO', 'position': 'WR', 'height': 74.0, 'weight': '200', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '519', 'positionRank': '61', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2004', 'playerName': 'George Lane', 'highSchool': 'College of the Siskiyous', 'city': 'Weed', 'state': 'CA', 'position': 'DT', 'height': 75.0, 'weight': '280', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '72', 'positionRank': '13', 'stateRank': '29'}, {'school': 'missouri', 'year': '2004', 'playerName': 'Aaron Saunders', 'highSchool': 'Jay', 'city': 'San Antonio', 'state': 'TX', 'position': 'OT', 'height': 79.0, 'weight': '282', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '688', 'positionRank': '46', 'stateRank': '106', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2004', 'playerName': 'Steve Redmond', 'highSchool': 'Rockhurst', 'city': 'Kansas City', 'state': 'MO', 'position': 'S', 'height': 72.0, 'weight': '200', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '746', 'positionRank': '47', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2004', 'playerName': 'Earl Goldsmith', 'highSchool': 'Ryan', 'city': 'Denton', 'state': 'TX', 'position': 'APB', 'height': 70.0, 'weight': '182', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '788', 'positionRank': '24', 'stateRank': '122', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2004', 'playerName': 'Chris Wade', 'highSchool': 'Broken Arrow', 'city': 'Broken Arrow', 'state': 'OK', 'position': 'SDE', 'height': 78.0, 'weight': '220', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': '874', 'positionRank': '51', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2004', 'playerName': 'Brian Barmann', 'highSchool': 'West Platte', 'city': 'Weston', 'state': 'MO', 'position': 'TE', 'height': 76.0, 'weight': '205', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': '920', 'positionRank': '39', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2004', 'playerName': 'Julius Denzmore', 'highSchool': 'East St. Louis', 'city': 'East Saint Louis', 'state': 'IL', 'position': 'ATH', 'height': 74.0, 'weight': '185', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '73', 'stateRank': '29', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2004', 'playerName': 'Jimmy Jackson', 'highSchool': 'Caruthersville', 'city': 'Caruthersville', 'state': 'MO', 'position': 'RB', 'height': 69.0, 'weight': '197', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '69', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2004', 'playerName': 'Mack Breed', 'highSchool': 'Jay', 'city': 'San Antonio', 'state': 'TX', 'position': 'ATH', 'height': 74.0, 'weight': '195', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '81', 'stateRank': '190', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2004', 'playerName': 'Ryan Madison', 'highSchool': 'South Harrison', 'city': 'Bethany', 'state': 'MO', 'position': 'DT', 'height': 77.0, 'weight': '255', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '92', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2004', 'playerName': "Aaron O'Neal", 'highSchool': 'Parkway North', 'city': 'Saint Louis', 'state': 'MO', 'position': 'RB', 'height': 74.0, 'weight': '210', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '79', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2004', 'playerName': 'Stryker Sulak', 'highSchool': 'Rockdale', 'city': 'Rockdale', 'state': 'TX', 'position': 'SDE', 'height': 77.0, 'weight': '230', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '81', 'stateRank': '214', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2004', 'playerName': 'Alvin Newhouse', 'highSchool': 'South Oak Cliff', 'city': 'Dallas', 'state': 'TX', 'position': 'ILB', 'height': 74.0, 'weight': '220', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '80', 'stateRank': '228', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2004', 'playerName': 'Trenile Washington', 'highSchool': 'Marietta', 'city': 'Marietta', 'state': 'OK', 'position': 'WR', 'height': 71.0, 'weight': '190', 'compRating': '0.7556', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '184', 'stateRank': '22', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2004', 'playerName': 'Calcius Williams', 'highSchool': 'Ryan', 'city': 'Denton', 'state': 'TX', 'position': 'WDE', 'height': 76.0, 'weight': '210', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '70', 'stateRank': '273', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2004', 'playerName': 'John Dirk', 'highSchool': 'Stephenville', 'city': 'Stephenville', 'state': 'TX', 'position': 'OG', 'height': 75.0, 'weight': '285', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '197', 'stateRank': '281', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2004', 'playerName': 'Domonique Johnson', 'highSchool': 'La Marque', 'city': 'La Marque', 'state': 'TX', 'position': 'S', 'height': 74.0, 'weight': '190', 'compRating': '0.7000', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '165', 'stateRank': '308', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2004', 'playerName': 'Chase Patton', 'highSchool': 'Rock Bridge', 'city': 'Columbia', 'state': 'MO', 'position': 'DUAL', 'height': 76.0, 'weight': '205', 'compRating': '0.9727', 'compStars': 4, 'nationalRank': '72', 'positionRank': '4', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2004', 'playerName': 'Tony Temple', 'highSchool': 'Rockhurst', 'city': 'Kansas City', 'state': 'MO', 'position': 'RB', 'height': 70.0, 'weight': '195', 'compRating': '0.9687', 'compStars': 4, 'nationalRank': '83', 'positionRank': '9', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2004', 'playerName': 'Kyle Riggs', 'highSchool': 'Festus', 'city': 'Festus', 'state': 'MO', 'position': 'OT', 'height': 77.0, 'weight': '305', 'compRating': '0.9639', 'compStars': 4, 'nationalRank': '96', 'positionRank': '9', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2016', 'playerName': 'Landon Young', 'highSchool': 'Lafayette', 'city': 'Lexington', 'state': 'KY', 'position': 'OT', 'height': 79.0, 'weight': '270', 'compRating': '0.9631', 'compStars': 4, 'nationalRank': '78', 'positionRank': '6', 'stateRank': '1', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '12', '247positionRank': '3', '247stateRank': '1'}, {'school': 'kentucky', 'year': '2016', 'playerName': 'Drake Jackson', 'highSchool': 'Woodford County', 'city': 'Versailles', 'state': 'KY', 'position': 'OC', 'height': 73.25, 'weight': '290', 'compRating': '0.9371', 'compStars': 4, 'nationalRank': '141', 'positionRank': '2', 'stateRank': '2', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '94', '247positionRank': '2', '247stateRank': '3'}, {'school': 'kentucky', 'year': '2016', 'playerName': 'Kash Daniel', 'highSchool': 'Paintsville', 'city': 'Paintsville', 'state': 'KY', 'position': 'ILB', 'height': 73.0, 'weight': '227', 'compRating': '0.8948', 'compStars': 4, 'nationalRank': '314', 'positionRank': '12', 'stateRank': '3', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '74', '247positionRank': '3', '247stateRank': '2'}, {'school': 'kentucky', 'year': '2016', 'playerName': 'Tate Leavitt', 'highSchool': 'Hutchinson C.C.', 'city': 'Hutchinson', 'state': 'KS', 'position': 'OT', 'height': 78.0, 'weight': '298', 'compRating': '0.8833', 'compStars': 3, 'nationalRank': '29', 'positionRank': '5', 'stateRank': '7', '247Rating': ' 89 ', '247Stars': 3, '247nationalRank': '28', '247positionRank': '4', '247stateRank': '5'}, {'school': 'kentucky', 'year': '2016', 'playerName': 'Jordan Griffin', 'highSchool': 'Jonesboro', 'city': 'Jonesboro', 'state': 'GA', 'position': 'CB', 'height': 73.0, 'weight': '170', 'compRating': '0.8811', 'compStars': 3, 'nationalRank': '392', 'positionRank': '37', 'stateRank': '35', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '42', '247stateRank': '33'}, {'school': 'kentucky', 'year': '2016', 'playerName': 'Tobias Gilliam', 'highSchool': 'Wayne', 'city': 'Dayton', 'state': 'OH', 'position': 'CB', 'height': 72.0, 'weight': '185', 'compRating': '0.8543', 'compStars': 3, 'nationalRank': '734', 'positionRank': '66', 'stateRank': '29', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '28', '247stateRank': '32'}, {'school': 'kentucky', 'year': '2016', 'playerName': "Zy'Aire Hughes", 'highSchool': 'McCracken County', 'city': 'Paducah', 'state': 'KY', 'position': 'ATH', 'height': 71.0, 'weight': '180', 'compRating': '0.8538', 'compStars': 3, 'nationalRank': '740', 'positionRank': '51', 'stateRank': '5', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '33', '247stateRank': '4'}, {'school': 'kentucky', 'year': '2016', 'playerName': 'Dakota Holtzclaw', 'highSchool': 'Worthington Kilbourne', 'city': 'Columbus', 'state': 'OH', 'position': 'TE', 'height': 79.0, 'weight': '215', 'compRating': '0.8518', 'compStars': 3, 'nationalRank': '793', 'positionRank': '42', 'stateRank': '35', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '49', '247stateRank': '45'}, {'school': 'kentucky', 'year': '2016', 'playerName': 'Jaylin Bannerman', 'highSchool': 'Pickerington Central', 'city': 'Pickerington', 'state': 'OH', 'position': 'WDE', 'height': 78.0, 'weight': '215', 'compRating': '0.8487', 'compStars': 3, 'nationalRank': '864', 'positionRank': '58', 'stateRank': '36', '247Rating': ' 85 ', '247Stars': 3, '247nationalRank': '96', '247positionRank': '9', '247stateRank': '12'}, {'school': 'kentucky', 'year': '2016', 'playerName': 'Gunnar Hoak', 'highSchool': 'Dublin Coffman', 'city': 'Dublin', 'state': 'OH', 'position': 'PRO', 'height': 76.0, 'weight': '190', 'compRating': '0.8485', 'compStars': 3, 'nationalRank': '872', 'positionRank': '40', 'stateRank': '37', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '51', '247stateRank': '56'}, {'school': 'kentucky', 'year': '2016', 'playerName': 'Benny Snell', 'highSchool': 'Westerville Central', 'city': 'Westerville', 'state': 'OH', 'position': 'RB', 'height': 71.0, 'weight': '200', 'compRating': '0.8482', 'compStars': 3, 'nationalRank': '876', 'positionRank': '56', 'stateRank': '38', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '43', '247stateRank': '26'}, {'school': 'kentucky', 'year': '2016', 'playerName': 'Kordell Looney', 'highSchool': 'Springfield', 'city': 'Springfield', 'state': 'OH', 'position': 'DT', 'height': 76.0, 'weight': '285', 'compRating': '0.8462', 'compStars': 3, 'nationalRank': '923', 'positionRank': '57', 'stateRank': '41', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '70', '247stateRank': '55'}, {'school': 'kentucky', 'year': '2016', 'playerName': 'Davonte Robinson', 'highSchool': 'Henry Clay', 'city': 'Lexington', 'state': 'KY', 'position': 'CB', 'height': 73.0, 'weight': '165', 'compRating': '0.8440', 'compStars': 3, 'nationalRank': '971', 'positionRank': '89', 'stateRank': '7', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '89', '247stateRank': '8'}, {'school': 'kentucky', 'year': '2016', 'playerName': 'Kayaune Ross', 'highSchool': 'Phoenix College', 'city': 'Phoenix', 'state': 'AZ', 'position': 'WR', 'height': 78.0, 'weight': '220', 'compRating': '0.8430', 'compStars': 3, 'nationalRank': '107', 'positionRank': '18', 'stateRank': '10', '247Rating': ' 84 ', '247Stars': 3, '247nationalRank': '125', '247positionRank': '22', '247stateRank': '13'}, {'school': 'kentucky', 'year': '2016', 'playerName': 'AJ Rose', 'highSchool': 'Garfield Heights', 'city': 'Cleveland', 'state': 'OH', 'position': 'ATH', 'height': 74.0, 'weight': '185', 'compRating': '0.8393', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '85', 'stateRank': '50', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '59', '247stateRank': '33'}, {'school': 'kentucky', 'year': '2016', 'playerName': 'Roland Walder', 'highSchool': 'Trotwood-Madison', 'city': 'Dayton', 'state': 'OH', 'position': 'ILB', 'height': 75.0, 'weight': '220', 'compRating': '0.8299', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '59', 'stateRank': '64', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '28', '247stateRank': '31'}, {'school': 'kentucky', 'year': '2016', 'playerName': 'JaQuize Cross', 'highSchool': 'Buckhorn', 'city': 'New Market', 'state': 'AL', 'position': 'DT', 'height': 75.0, 'weight': '310', 'compRating': '0.8280', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '83', 'stateRank': '51'}, {'school': 'kentucky', 'year': '2016', 'playerName': 'Luke Fortner', 'highSchool': 'Sylvania Northview', 'city': 'Sylvania', 'state': 'OH', 'position': 'OT', 'height': 77.0, 'weight': '278', 'compRating': '0.8274', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '115', 'stateRank': '68', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '71', '247stateRank': '35'}, {'school': 'kentucky', 'year': '2016', 'playerName': 'Justin Rigg', 'highSchool': 'Springboro', 'city': 'Springboro', 'state': 'OH', 'position': 'TE', 'height': 78.0, 'weight': '240', 'compRating': '0.8249', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '67', 'stateRank': '71', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '47', '247stateRank': '43'}, {'school': 'kentucky', 'year': '2016', 'playerName': 'Grant McKinniss', 'highSchool': 'Findlay', 'city': 'Findlay', 'state': 'OH', 'position': 'P', 'height': 73.0, 'weight': '190', 'compRating': '0.8240', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '7', 'stateRank': '72', '247Rating': ' 78 ', '247Stars': 2, '247positionRank': '9', '247stateRank': '96'}, {'school': 'kentucky', 'year': '2016', 'playerName': 'Boogie Watson', 'highSchool': 'Bishop McNamara', 'city': 'District Heights', 'state': 'MD', 'position': 'OLB', 'height': 74.0, 'weight': '220', 'compRating': '0.8182', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '116', 'stateRank': '42', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '124', '247stateRank': '44'}, {'school': 'kentucky', 'year': '2016', 'playerName': 'TJ Carter', 'highSchool': 'Whitefield Academy', 'city': 'Mableton', 'state': 'GA', 'position': 'SDE', 'height': 76.0, 'weight': '245', 'compRating': '0.8150', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '79', 'stateRank': '154', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '87', '247stateRank': '151'}, {'school': 'kentucky', 'year': '2016', 'playerName': 'Stephen Johnson', 'highSchool': 'College of the Desert', 'city': 'Palm Desert', 'state': 'CA', 'position': 'DUAL', 'height': 75.0, 'weight': '195', 'compRating': '0.8115', 'compStars': 3, 'nationalRank': '213', 'positionRank': '5', 'stateRank': '58', '247Rating': ' 79 ', '247Stars': 2, '247nationalRank': '238', '247positionRank': '6', '247stateRank': '64'}, {'school': 'kentucky', 'year': '2016', 'playerName': 'Naquez Pringle', 'highSchool': 'Itawamba C.C.', 'city': 'Fulton', 'state': 'MS', 'position': 'DT', 'height': 75.0, 'weight': '330', 'compRating': '0.8056', 'compStars': 3, 'nationalRank': '244', 'positionRank': '27', 'stateRank': '42', '247Rating': ' 80 ', '247Stars': 3, '247nationalRank': '203', '247positionRank': '22', '247stateRank': '34'}, {'school': 'kentucky', 'year': '2016', 'playerName': 'Jordan Bonner', 'highSchool': 'Northeastern Oklahoma A&M', 'city': 'Miami', 'state': 'OK', 'position': 'OLB', 'height': 77.0, 'weight': '215', 'compRating': '0.8606', 'compStars': 3, 'nationalRank': '65', 'positionRank': '4', 'stateRank': '3', '247Rating': ' 85 ', '247Stars': 3, '247nationalRank': '111', '247positionRank': '8', '247stateRank': '3'}, {'school': 'vanderbilt', 'year': '2008', 'playerName': 'DeAndre Jones', 'highSchool': 'Memphis University School', 'city': 'Memphis', 'state': 'TN', 'position': 'OLB', 'height': 72.0, 'weight': '223', 'compRating': '0.8653', 'compStars': 3, 'nationalRank': '550', 'positionRank': '46', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2008', 'playerName': 'Taylor Loftley', 'highSchool': 'Chamblee Charter', 'city': 'Atlanta', 'state': 'GA', 'position': 'SDE', 'height': 74.0, 'weight': '247', 'compRating': '0.8448', 'compStars': 3, 'nationalRank': '809', 'positionRank': '46', 'stateRank': '56', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2008', 'playerName': 'John Cole', 'highSchool': 'Somerset', 'city': 'Somerset', 'state': 'KY', 'position': 'WR', 'height': 72.0, 'weight': '171', 'compRating': '0.8417', 'compStars': 3, 'nationalRank': '848', 'positionRank': '99', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2008', 'playerName': 'Al Owens', 'highSchool': 'Springtown', 'city': 'Springtown', 'state': 'TX', 'position': 'S', 'height': 73.0, 'weight': '181', 'compRating': '0.8337', 'compStars': 3, 'nationalRank': '940', 'positionRank': '79', 'stateRank': '147', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2008', 'playerName': 'Casey Hayward', 'highSchool': 'Perry', 'city': 'Perry', 'state': 'GA', 'position': 'ATH', 'height': 73.0, 'weight': '185', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '963', 'positionRank': '70', 'stateRank': '68', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2008', 'playerName': 'Michael Bryant', 'highSchool': 'LaVergne', 'city': 'LaVergne', 'state': 'TN', 'position': 'OT', 'height': 78.0, 'weight': '285', 'compRating': '0.8194', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '84', 'stateRank': '31', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2008', 'playerName': 'Richard Cagle', 'highSchool': 'St. Pius X', 'city': 'Houston', 'state': 'TX', 'position': 'OT', 'height': 77.0, 'weight': '250', 'compRating': '0.8194', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '85', 'stateRank': '184', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2008', 'playerName': 'Colt Nichter', 'highSchool': 'Park City', 'city': 'Park City', 'state': 'UT', 'position': 'DT', 'height': 74.0, 'weight': '275', 'compRating': '0.8115', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '76', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2008', 'playerName': 'Josh Jelesky', 'highSchool': 'Naperville Central', 'city': 'Naperville', 'state': 'IL', 'position': 'SDE', 'height': 78.0, 'weight': '219', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '66', 'stateRank': '29', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2008', 'playerName': 'Ryan Fowler', 'highSchool': 'Eastside Hi', 'city': 'Taylors', 'state': 'SC', 'position': 'K', 'height': 71.0, 'weight': '155', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '15', 'stateRank': '30', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2008', 'playerName': 'Rob Lohr', 'highSchool': 'Phoenixville Area', 'city': 'Phoenixville', 'state': 'PA', 'position': 'ATH', 'height': 77.0, 'weight': '240', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '100', 'stateRank': '48', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2008', 'playerName': 'John Burrow', 'highSchool': 'Mortimer Jordan', 'city': 'Morris', 'state': 'AL', 'position': 'WDE', 'height': 77.0, 'weight': '210', 'compRating': '0.8009', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '48', 'stateRank': '52', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2008', 'playerName': 'Akeem Dunham', 'highSchool': 'Eustis', 'city': 'Eustis', 'state': 'FL', 'position': 'WR', 'height': 76.0, 'weight': '190', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '165', 'stateRank': '174', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2008', 'playerName': 'Dexter Daniels', 'highSchool': 'Brantley', 'city': 'Brantley', 'state': 'AL', 'position': 'OLB', 'height': 74.0, 'weight': '215', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '130', 'stateRank': '62', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2008', 'playerName': 'Archie Barnes', 'highSchool': 'Berkeley Prep', 'city': 'Tampa', 'state': 'FL', 'position': 'ATH', 'height': 76.0, 'weight': '200', 'compRating': '0.7556', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '141', 'stateRank': '225', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2008', 'playerName': 'Archibald Barnes', 'highSchool': 'Berkeley Prep', 'city': 'Tampa', 'state': 'FL', 'position': 'ATH', 'height': '0.0', 'weight': '0', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2008', 'playerName': 'Sean Richardson', 'highSchool': 'Linden', 'city': 'Linden', 'state': 'AL', 'position': 'S', 'height': '0.0', 'weight': '0', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2008', 'playerName': 'Austin Monahan', 'highSchool': 'Charlotte Country Day', 'city': 'Charlotte', 'state': 'NC', 'position': 'TE', 'height': 78.0, 'weight': '252', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2008', 'playerName': 'Ryan Seymour', 'highSchool': 'Camden County', 'city': 'Kingsland', 'state': 'GA', 'position': 'OG', 'height': 77.0, 'weight': '300', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2012', 'playerName': 'Dorial Green-Beckham', 'highSchool': 'Hillcrest', 'city': 'Springfield', 'state': 'MO', 'position': 'WR', 'height': 78.0, 'weight': '220', 'compRating': '0.9998', 'compStars': 5, 'nationalRank': '1', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 100 ', '247Stars': 5, '247nationalRank': '2', '247positionRank': '1', '247stateRank': '1'}, {'school': 'missouri', 'year': '2012', 'playerName': 'Evan Boehm', 'highSchool': "Lee's Summit West", 'city': 'Lees Summit', 'state': 'MO', 'position': 'OG', 'height': 75.0, 'weight': '290', 'compRating': '0.9558', 'compStars': 4, 'nationalRank': '103', 'positionRank': '8', 'stateRank': '4', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '164', '247positionRank': '7', '247stateRank': '5'}, {'school': 'missouri', 'year': '2012', 'playerName': 'Donavin Newsom', 'highSchool': 'North', 'city': 'Saint Louis', 'state': 'MO', 'position': 'ILB', 'height': 74.0, 'weight': '220', 'compRating': '0.9071', 'compStars': 4, 'nationalRank': '280', 'positionRank': '12', 'stateRank': '5', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '15', '247stateRank': '7'}, {'school': 'missouri', 'year': '2012', 'playerName': 'Maty Mauk', 'highSchool': 'Kenton', 'city': 'Kenton', 'state': 'OH', 'position': 'DUAL', 'height': 74.0, 'weight': '200', 'compRating': '0.9031', 'compStars': 4, 'nationalRank': '299', 'positionRank': '7', 'stateRank': '19', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '11', '247stateRank': '33'}, {'school': 'missouri', 'year': '2012', 'playerName': 'Morgan Steward', 'highSchool': 'Staley', 'city': 'Kansas City', 'state': 'MO', 'position': 'RB', 'height': 71.0, 'weight': '185', 'compRating': '0.8818', 'compStars': 3, 'nationalRank': '460', 'positionRank': '21', 'stateRank': '8'}, {'school': 'missouri', 'year': '2012', 'playerName': 'Michael Scherer', 'highSchool': 'Mary Institute & St Louis Country Day', 'city': 'Saint Louis', 'state': 'MO', 'position': 'OLB', 'height': 74.0, 'weight': '230', 'compRating': '0.8781', 'compStars': 3, 'nationalRank': '515', 'positionRank': '52', 'stateRank': '10'}, {'school': 'missouri', 'year': '2012', 'playerName': 'Russell Hansbrough', 'highSchool': 'Bowie', 'city': 'Arlington', 'state': 'TX', 'position': 'RB', 'height': 69.0, 'weight': '180', 'compRating': '0.8755', 'compStars': 3, 'nationalRank': '552', 'positionRank': '30', 'stateRank': '88', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '20', '247stateRank': '76'}, {'school': 'missouri', 'year': '2012', 'playerName': 'Sean Culkin', 'highSchool': 'Indian Rocks Christian School', 'city': 'Largo', 'state': 'FL', 'position': 'TE', 'height': 77.0, 'weight': '225', 'compRating': '0.8680', 'compStars': 3, 'nationalRank': '656', 'positionRank': '28', 'stateRank': '80', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '35', '247stateRank': '101'}, {'school': 'missouri', 'year': '2012', 'playerName': 'Evan Winston', 'highSchool': 'Muskegon Heights', 'city': 'Muskegon', 'state': 'MI', 'position': 'SDE', 'height': 76.0, 'weight': '245', 'compRating': '0.8478', 'compStars': 3, 'nationalRank': '901', 'positionRank': '49', 'stateRank': '20', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '53', '247stateRank': '18'}, {'school': 'missouri', 'year': '2012', 'playerName': 'Jordan Williams', 'highSchool': 'Ryan', 'city': 'Denton', 'state': 'TX', 'position': 'OT', 'height': 76.0, 'weight': '270', 'compRating': '0.8454', 'compStars': 3, 'nationalRank': '938', 'positionRank': '80', 'stateRank': '158'}, {'school': 'missouri', 'year': '2012', 'playerName': 'John Gibson', 'highSchool': 'Fort Bend Marshall', 'city': 'Missouri City', 'state': 'TX', 'position': 'CB', 'height': 70.0, 'weight': '175', 'compRating': '0.8422', 'compStars': 3, 'nationalRank': '990', 'positionRank': '68', 'stateRank': '171'}, {'school': 'missouri', 'year': '2012', 'playerName': 'Rickey Hatley', 'highSchool': 'Atlanta', 'city': 'Atlanta', 'state': 'TX', 'position': 'SDE', 'height': 76.0, 'weight': '245', 'compRating': '0.8412', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '55', 'stateRank': '177', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '65', '247stateRank': '206'}, {'school': 'missouri', 'year': '2012', 'playerName': 'Markus Golden', 'highSchool': 'Hutchinson C.C.', 'city': 'Hutchinson', 'state': 'KS', 'position': 'ILB', 'height': 75.0, 'weight': '230', 'compRating': '0.8367', 'compStars': 3, 'nationalRank': '68', 'positionRank': '5', 'stateRank': '10', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '23', '247positionRank': '1', '247stateRank': '3'}, {'school': 'missouri', 'year': '2012', 'playerName': 'Levi Copelin', 'highSchool': 'Broken Arrow', 'city': 'Broken Arrow', 'state': 'OK', 'position': 'S', 'height': 74.0, 'weight': '180', 'compRating': '0.8252', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '89', 'stateRank': '16'}, {'school': 'missouri', 'year': '2012', 'playerName': 'Harold Brantley', 'highSchool': 'Hershey', 'city': 'Hershey', 'state': 'PA', 'position': 'DT', 'height': 74.0, 'weight': '280', 'compRating': '0.8219', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '89', 'stateRank': '51'}, {'school': 'missouri', 'year': '2012', 'playerName': "Ka'Ra Stewart", 'highSchool': 'O Fallon', 'city': "O'Fallon", 'state': 'IL', 'position': 'OLB', 'height': 70.0, 'weight': '190', 'compRating': '0.8534', 'compStars': 3, 'nationalRank': '819', 'positionRank': '71', 'stateRank': '20'}, {'school': 'missouri', 'year': '2012', 'playerName': 'Torey Boozer', 'highSchool': 'Everman', 'city': 'Fort Worth', 'state': 'TX', 'position': 'OLB', 'height': 75.0, 'weight': '210', 'compRating': '0.8525', 'compStars': 3, 'nationalRank': '837', 'positionRank': '73', 'stateRank': '135'}, {'school': 'missouri', 'year': '2012', 'playerName': 'Chaston Cuffee', 'highSchool': 'Cleburne', 'city': 'Cleburne', 'state': 'TX', 'position': 'S', 'height': 74.0, 'weight': '180', 'compRating': '0.8503', 'compStars': 3, 'nationalRank': '867', 'positionRank': '55', 'stateRank': '142'}, {'school': 'missouri', 'year': '2012', 'playerName': 'Brandon Holifield', 'highSchool': 'Amos P. Godby', 'city': 'Tallahassee', 'state': 'FL', 'position': 'TE', 'height': 77.0, 'weight': '215', 'compRating': '0.8070', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '73', 'stateRank': '209'}, {'school': 'ole-miss', 'year': '2020', 'playerName': 'Demon Clowney', 'highSchool': 'St. Frances Academy', 'city': 'Baltimore', 'state': 'MD', 'position': 'WDE', 'height': 76.0, 'weight': '225', 'compRating': '0.9169', 'compStars': 4, 'nationalRank': '223', 'positionRank': '11', 'stateRank': '10', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '18', '247stateRank': '13'}, {'school': 'ole-miss', 'year': '2020', 'playerName': 'Lakevias Daniel', 'highSchool': 'Jones College', 'city': 'Ellisville', 'state': 'MS', 'position': 'CB', 'height': 72.0, 'weight': '177', 'compRating': '0.8709', 'compStars': 3, 'nationalRank': '35', 'positionRank': '7', 'stateRank': '6', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '54', '247positionRank': '8', '247stateRank': '10'}, {'school': 'ole-miss', 'year': '2020', 'playerName': 'Derek Bermudez', 'highSchool': 'Sandalwood', 'city': 'Jacksonville', 'state': 'FL', 'position': 'S', 'height': 73.0, 'weight': '180', 'compRating': '0.8709', 'compStars': 3, 'nationalRank': '609', 'positionRank': '46', 'stateRank': '81', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '72', '247stateRank': '96'}, {'school': 'ole-miss', 'year': '2020', 'playerName': 'Austin Keys', 'highSchool': 'Seminary', 'city': 'Seminary', 'state': 'MS', 'position': 'ILB', 'height': 74.0, 'weight': '241', 'compRating': '0.8663', 'compStars': 3, 'nationalRank': '686', 'positionRank': '32', 'stateRank': '21', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '41', '247stateRank': '28'}, {'school': 'ole-miss', 'year': '2020', 'playerName': 'Kade Renfro', 'highSchool': 'Stephenville', 'city': 'Stephenville', 'state': 'TX', 'position': 'PRO', 'height': 75.5, 'weight': '189', 'compRating': '0.8511', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '38', 'stateRank': '129', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '17', '247stateRank': '82'}, {'school': 'ole-miss', 'year': '2020', 'playerName': 'Daylen Gill', 'highSchool': 'Jones College', 'city': 'Ellisville', 'state': 'MS', 'position': 'S', 'height': 72.0, 'weight': '234', 'compRating': '0.8495', 'compStars': 3, 'nationalRank': '94', 'positionRank': '9', 'stateRank': '20', '247Rating': ' 84 ', '247Stars': 3, '247nationalRank': '106', '247positionRank': '7', '247stateRank': '21'}, {'school': 'ole-miss', 'year': '2020', 'playerName': 'Henry Parrish', 'highSchool': 'Columbus', 'city': 'Miami', 'state': 'FL', 'position': 'RB', 'height': 70.0, 'weight': '183', 'compRating': '0.9164', 'compStars': 4, 'nationalRank': '226', 'positionRank': '18', 'stateRank': '33', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '167', '247positionRank': '15', '247stateRank': '23'}, {'school': 'ole-miss', 'year': '2020', 'playerName': 'Marc Britt', 'highSchool': 'Miami Christian School', 'city': 'Miami', 'state': 'FL', 'position': 'ATH', 'height': 74.0, 'weight': '190', 'compRating': '0.9055', 'compStars': 4, 'nationalRank': '268', 'positionRank': '9', 'stateRank': '44', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '33', '247stateRank': '69'}, {'school': 'ole-miss', 'year': '2020', 'playerName': 'Jakivuan Brown', 'highSchool': 'Horn Lake', 'city': 'Horn Lake', 'state': 'MS', 'position': 'OLB', 'height': 75.0, 'weight': '235', 'compRating': '0.8987', 'compStars': 4, 'nationalRank': '303', 'positionRank': '19', 'stateRank': '6', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '206', '247positionRank': '12', '247stateRank': '4'}, {'school': 'ole-miss', 'year': '2020', 'playerName': 'Eli Acker', 'highSchool': 'Heritage Academy', 'city': 'Columbus', 'state': 'MS', 'position': 'OT', 'height': 78.0, 'weight': '285', 'compRating': '0.8851', 'compStars': 3, 'nationalRank': '421', 'positionRank': '34', 'stateRank': '9', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '36', '247stateRank': '11'}, {'school': 'ole-miss', 'year': '2020', 'playerName': 'Kentrel Bullock', 'highSchool': 'Columbia', 'city': 'Columbia', 'state': 'MS', 'position': 'RB', 'height': 70.0, 'weight': '195', 'compRating': '0.8801', 'compStars': 3, 'nationalRank': '478', 'positionRank': '34', 'stateRank': '12', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '24', '247stateRank': '7'}, {'school': 'ole-miss', 'year': '2020', 'playerName': 'Tobias Braun', 'highSchool': 'Salisbury School', 'city': 'Salisbury', 'state': 'CT', 'position': 'OT', 'height': 79.0, 'weight': '306', 'compRating': '0.8612', 'compStars': 3, 'nationalRank': '824', 'positionRank': '62', 'stateRank': '10', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '103', '247stateRank': '11'}, {'school': 'ole-miss', 'year': '2020', 'playerName': 'DeSanto Rollins', 'highSchool': 'Parkview Baptist School', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'DT', 'height': 76.0, 'weight': '290', 'compRating': '0.8593', 'compStars': 3, 'nationalRank': '863', 'positionRank': '75', 'stateRank': '35', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '76', '247stateRank': '43'}, {'school': 'ole-miss', 'year': '2020', 'playerName': 'DaMarcus Thomas', 'highSchool': 'Saraland', 'city': 'Saraland', 'state': 'AL', 'position': 'TE', 'height': 76.0, 'weight': '242', 'compRating': '0.8544', 'compStars': 3, 'nationalRank': '980', 'positionRank': '43', 'stateRank': '36', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '92', '247stateRank': '73'}, {'school': 'ole-miss', 'year': '2020', 'playerName': 'Cedric Johnson', 'highSchool': 'WP Davidson', 'city': 'Mobile', 'state': 'AL', 'position': 'WDE', 'height': 75.0, 'weight': '225', 'compRating': '0.8538', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '50', 'stateRank': '37', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '53', '247stateRank': '39'}, {'school': 'ole-miss', 'year': '2020', 'playerName': 'Luke Shouse', 'highSchool': 'Ravenwood', 'city': 'Brentwood', 'state': 'TN', 'position': 'OT', 'height': 78.0, 'weight': '255', 'compRating': '0.8530', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '85', 'stateRank': '31', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '69', '247stateRank': '23'}, {'school': 'ole-miss', 'year': '2020', 'playerName': 'Cedric Melton', 'highSchool': 'Klein Cain', 'city': 'Houston', 'state': 'TX', 'position': 'OT', 'height': 77.0, 'weight': '275', 'compRating': '0.8368', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '126', 'stateRank': '205', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '118', '247stateRank': '185'}, {'school': 'alabama', 'year': '2008', 'playerName': 'Julio Jones', 'highSchool': 'Foley', 'city': 'Foley', 'state': 'AL', 'position': 'WR', 'height': 76.0, 'weight': '220', 'compRating': '0.9992', 'compStars': 5, 'nationalRank': '3', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2008', 'playerName': 'Tyler Love', 'highSchool': 'Mountain Brook', 'city': 'Birmingham', 'state': 'AL', 'position': 'OT', 'height': 78.0, 'weight': '307', 'compRating': '0.9884', 'compStars': 5, 'nationalRank': '23', 'positionRank': '3', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2008', 'playerName': 'B.J. Scott', 'highSchool': 'Vigor', 'city': 'Mobile', 'state': 'AL', 'position': 'CB', 'height': 71.0, 'weight': '193', 'compRating': '0.9846', 'compStars': 5, 'nationalRank': '27', 'positionRank': '3', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2008', 'playerName': 'Jerrell Harris', 'highSchool': 'Gadsden City', 'city': 'Gadsden', 'state': 'AL', 'position': 'OLB', 'height': 75.0, 'weight': '242', 'compRating': '0.9758', 'compStars': 4, 'nationalRank': '52', 'positionRank': '4', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2008', 'playerName': 'Mark Barron', 'highSchool': "St. Paul's Episcopal", 'city': 'Mobile', 'state': 'AL', 'position': 'S', 'height': 74.0, 'weight': '218', 'compRating': '0.9665', 'compStars': 4, 'nationalRank': '71', 'positionRank': '3', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2008', 'playerName': 'Courtney Upshaw', 'highSchool': 'Eufaula', 'city': 'Eufaula', 'state': 'AL', 'position': 'OLB', 'height': 74.0, 'weight': '265', 'compRating': '0.9500', 'compStars': 4, 'nationalRank': '101', 'positionRank': '10', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2008', 'playerName': 'Mark Ingram', 'highSchool': 'Southwestern Commencement Academy', 'city': 'Flint', 'state': 'MI', 'position': 'RB', 'height': 70.0, 'weight': '215', 'compRating': '0.9444', 'compStars': 4, 'nationalRank': '112', 'positionRank': '10', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2008', 'playerName': 'Alonzo Lawrence', 'highSchool': 'George County', 'city': 'Lucedale', 'state': 'MS', 'position': 'CB', 'height': 73.0, 'weight': '185', 'compRating': '0.9440', 'compStars': 4, 'nationalRank': '113', 'positionRank': '9', 'stateRank': '2'}, {'school': 'alabama', 'year': '2008', 'playerName': 'Barrett Jones', 'highSchool': 'Evangelical Christian', 'city': 'Cordova', 'state': 'TN', 'position': 'OG', 'height': 77.0, 'weight': '311', 'compRating': '0.9269', 'compStars': 4, 'nationalRank': '161', 'positionRank': '5', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2008', 'playerName': 'Burton Scott', 'highSchool': 'Vigor', 'city': 'Mobile', 'state': 'AL', 'position': 'ATH', 'height': 71.0, 'weight': '194', 'compRating': '0.9264', 'compStars': 4, 'nationalRank': '165', 'positionRank': '11', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2008', 'playerName': 'Star Jackson', 'highSchool': 'Lake Worth', 'city': 'Lake Worth', 'state': 'FL', 'position': 'PRO', 'height': 75.0, 'weight': '185', 'compRating': '0.9148', 'compStars': 4, 'nationalRank': '197', 'positionRank': '9', 'stateRank': '33', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2008', 'playerName': 'Michael Williams', 'highSchool': 'Pickens County', 'city': 'Reform', 'state': 'AL', 'position': 'TE', 'height': 78.0, 'weight': '269', 'compRating': '0.9124', 'compStars': 4, 'nationalRank': '208', 'positionRank': '8', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2008', 'playerName': 'Marcell Dareus', 'highSchool': 'Huffman', 'city': 'Birmingham', 'state': 'AL', 'position': 'SDE', 'height': 76.0, 'weight': '306', 'compRating': '0.9064', 'compStars': 4, 'nationalRank': '233', 'positionRank': '14', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2008', 'playerName': 'Devonta Bolton', 'highSchool': 'Norcross', 'city': 'Norcross', 'state': 'GA', 'position': 'ATH', 'height': 76.0, 'weight': '220', 'compRating': '0.9063', 'compStars': 4, 'nationalRank': '234', 'positionRank': '16', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2008', 'playerName': 'Chris Jackson', 'highSchool': 'Henry County', 'city': 'McDonough', 'state': 'GA', 'position': 'RB', 'height': 73.0, 'weight': '205', 'compRating': '0.9026', 'compStars': 4, 'nationalRank': '249', 'positionRank': '25', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2008', 'playerName': 'Chris Jordan', 'highSchool': 'Brentwood Academy', 'city': 'Brentwood', 'state': 'TN', 'position': 'ILB', 'height': 75.0, 'weight': '240', 'compRating': '0.9020', 'compStars': 4, 'nationalRank': '254', 'positionRank': '11', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2008', 'playerName': 'Damion Square', 'highSchool': 'Yates', 'city': 'Houston', 'state': 'TX', 'position': 'SDE', 'height': 75.0, 'weight': '285', 'compRating': '0.9007', 'compStars': 4, 'nationalRank': '259', 'positionRank': '16', 'stateRank': '36', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2008', 'playerName': 'John Michael Boswell', 'highSchool': 'Tuscaloosa County', 'city': 'Northport', 'state': 'AL', 'position': 'OT', 'height': 78.0, 'weight': '290', 'compRating': '0.8993', 'compStars': 4, 'nationalRank': '265', 'positionRank': '26', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2008', 'playerName': 'Robby Green', 'highSchool': 'John Curtis', 'city': 'New Orleans', 'state': 'LA', 'position': 'CB', 'height': 72.0, 'weight': '181', 'compRating': '0.8958', 'compStars': 4, 'nationalRank': '281', 'positionRank': '24', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2008', 'playerName': 'Destin Hood', 'highSchool': "St. Paul's Episcopal", 'city': 'Mobile', 'state': 'AL', 'position': 'WR', 'height': 75.0, 'weight': '190', 'compRating': '0.8940', 'compStars': 4, 'nationalRank': '297', 'positionRank': '43', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2008', 'playerName': "Dont'a Hightower", 'highSchool': 'Marshall County', 'city': 'Lewisburg', 'state': 'TN', 'position': 'OLB', 'height': 76.0, 'weight': '260', 'compRating': '0.8938', 'compStars': 4, 'nationalRank': '303', 'positionRank': '25', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2008', 'playerName': 'Brandon Lewis', 'highSchool': 'Pleasant Grove', 'city': 'Pleasant Grove', 'state': 'AL', 'position': 'SDE', 'height': 75.0, 'weight': '275', 'compRating': '0.8906', 'compStars': 4, 'nationalRank': '325', 'positionRank': '19', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2008', 'playerName': 'Robert Lester', 'highSchool': 'Foley', 'city': 'Foley', 'state': 'AL', 'position': 'S', 'height': 74.0, 'weight': '210', 'compRating': '0.8844', 'compStars': 3, 'nationalRank': '361', 'positionRank': '27', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2008', 'playerName': 'Glenn Harbin', 'highSchool': 'McGill Toolen', 'city': 'Mobile', 'state': 'AL', 'position': 'WDE', 'height': 77.0, 'weight': '260', 'compRating': '0.8844', 'compStars': 3, 'nationalRank': '363', 'positionRank': '12', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2008', 'playerName': 'Ivan Matchett', 'highSchool': "St. Paul's Episcopal", 'city': 'Mobile', 'state': 'AL', 'position': 'RB', 'height': 70.0, 'weight': '206', 'compRating': '0.8795', 'compStars': 3, 'nationalRank': '405', 'positionRank': '37', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2008', 'playerName': 'Terrence Cody', 'highSchool': 'Mississippi Gulf Coast C.C.', 'city': 'Perkinston', 'state': 'MS', 'position': 'DT', 'height': 77.0, 'weight': '395', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '29', 'positionRank': '2', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2008', 'playerName': 'Jermaine Preyear', 'highSchool': 'WP Davidson', 'city': 'Mobile', 'state': 'AL', 'position': 'RB', 'height': 71.0, 'weight': '205', 'compRating': '0.8733', 'compStars': 3, 'nationalRank': '474', 'positionRank': '44', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2008', 'playerName': 'Undra Billingsley', 'highSchool': 'Woodlawn', 'city': 'Birmingham', 'state': 'AL', 'position': 'SDE', 'height': 74.0, 'weight': '288', 'compRating': '0.8639', 'compStars': 3, 'nationalRank': '576', 'positionRank': '28', 'stateRank': '27', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2008', 'playerName': 'Brad Smelley', 'highSchool': 'American Christian', 'city': 'Tuscaloosa', 'state': 'AL', 'position': 'TE', 'height': 75.0, 'weight': '229', 'compRating': '0.8510', 'compStars': 3, 'nationalRank': '736', 'positionRank': '34', 'stateRank': '33', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2008', 'playerName': 'Corey Smith', 'highSchool': 'Musselman', 'city': 'Inwood', 'state': 'WV', 'position': 'P', 'height': 73.0, 'weight': '208', 'compRating': '0.8337', 'compStars': 3, 'nationalRank': '953', 'positionRank': '2', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2008', 'playerName': 'Kerry Murphy', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'DT', 'height': 77.0, 'weight': '325', 'compRating': '0.9127', 'compStars': 4, 'nationalRank': '1', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2004', 'playerName': 'William Morrisey', 'highSchool': 'Silsbee', 'city': 'Silsbee', 'state': 'TX', 'position': 'DT', 'height': 73.0, 'weight': '285', 'compRating': '0.9222', 'compStars': 4, 'nationalRank': '123', 'positionRank': '13', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2004', 'playerName': 'Stephen McGee', 'highSchool': 'Burnet', 'city': 'Burnet', 'state': 'TX', 'position': 'PRO', 'height': 75.0, 'weight': '205', 'compRating': '0.9222', 'compStars': 4, 'nationalRank': '125', 'positionRank': '7', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2004', 'playerName': 'Terrence Smith', 'highSchool': 'Northwest Mississippi C.C.', 'city': 'Senatobia', 'state': 'MS', 'position': 'ILB', 'height': 75.0, 'weight': '235', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '9', 'positionRank': '2', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2004', 'playerName': 'DeQawn Mobley', 'highSchool': 'City College of San Francisco', 'city': 'San Francisco', 'state': 'CA', 'position': 'WR', 'height': 74.0, 'weight': '195', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '10', 'positionRank': '1', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2004', 'playerName': 'D.J. Davis', 'highSchool': 'Dunbar', 'city': 'Fort Worth', 'state': 'TX', 'position': 'ATH', 'height': 71.0, 'weight': '182', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '219', 'positionRank': '13', 'stateRank': '31', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2004', 'playerName': 'Danny Gorrer', 'highSchool': 'Memorial', 'city': 'Port Arthur', 'state': 'TX', 'position': 'CB', 'height': 71.0, 'weight': '180', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '231', 'positionRank': '15', 'stateRank': '33', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2004', 'playerName': 'Pierre Brown', 'highSchool': 'Duncanville', 'city': 'Duncanville', 'state': 'TX', 'position': 'ATH', 'height': 74.0, 'weight': '180', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '260', 'positionRank': '20', 'stateRank': '41', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2004', 'playerName': 'Aaron Brown', 'highSchool': 'Compton C.C.', 'city': 'Compton', 'state': 'CA', 'position': 'OLB', 'height': 74.0, 'weight': '230', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '29', 'positionRank': '2', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2004', 'playerName': 'Samson Taylor', 'highSchool': 'The Woodlands', 'city': 'The Woodlands', 'state': 'TX', 'position': 'ATH', 'height': 72.0, 'weight': '212', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '323', 'positionRank': '27', 'stateRank': '51', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2004', 'playerName': 'Keith Dickerson', 'highSchool': 'La Marque', 'city': 'La Marque', 'state': 'TX', 'position': 'WR', 'height': 74.0, 'weight': '185', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '359', 'positionRank': '44', 'stateRank': '60', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2004', 'playerName': 'Amos Gbunblee', 'highSchool': 'Cy Springs', 'city': 'Cypress', 'state': 'TX', 'position': 'TE', 'height': 76.0, 'weight': '237', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '384', 'positionRank': '17', 'stateRank': '63', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2004', 'playerName': 'Kerry Franks', 'highSchool': 'West Orange-Stark', 'city': 'Orange', 'state': 'TX', 'position': 'ATH', 'height': 70.0, 'weight': '185', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '394', 'positionRank': '30', 'stateRank': '66', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2004', 'playerName': 'Jordan Chambless', 'highSchool': 'Calallen', 'city': 'Corpus Christi', 'state': 'TX', 'position': 'DUAL', 'height': 74.0, 'weight': '200', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '407', 'positionRank': '15', 'stateRank': '68', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2004', 'playerName': 'Tory Degrate', 'highSchool': 'Waco', 'city': 'Waco', 'state': 'TX', 'position': 'WR', 'height': 71.0, 'weight': '177', 'compRating': '0.8444', 'compStars': 3, 'nationalRank': '444', 'positionRank': '55', 'stateRank': '74', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2004', 'playerName': 'Lee Foliaki', 'highSchool': 'Butler C.C.', 'city': 'El Dorado', 'state': 'KS', 'position': 'ILB', 'height': 75.0, 'weight': '240', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '40', 'positionRank': '6', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2004', 'playerName': 'Cyril Obiozor', 'highSchool': 'Pearland', 'city': 'Pearland', 'state': 'TX', 'position': 'SDE', 'height': 76.0, 'weight': '236', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '484', 'positionRank': '29', 'stateRank': '78', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2004', 'playerName': 'Keondra Smith', 'highSchool': 'Lee', 'city': 'Houston', 'state': 'TX', 'position': 'RB', 'height': 71.0, 'weight': '185', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '716', 'positionRank': '48', 'stateRank': '111', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2004', 'playerName': 'Mark Young', 'highSchool': 'Mount Pleasant', 'city': 'Mount Pleasant', 'state': 'TX', 'position': 'OLB', 'height': 75.0, 'weight': '220', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '727', 'positionRank': '39', 'stateRank': '114', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2004', 'playerName': 'Grant Dickey', 'highSchool': 'Tyler J.C.', 'city': 'Tyler', 'state': 'TX', 'position': 'OG', 'height': 78.0, 'weight': '305', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '88', 'positionRank': '11', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2004', 'playerName': 'Quinten Gardner', 'highSchool': 'Tyler Lee', 'city': 'Tyler', 'state': 'TX', 'position': 'CB', 'height': 71.0, 'weight': '187', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': '821', 'positionRank': '59', 'stateRank': '124', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2004', 'playerName': 'Alton Boudreaux', 'highSchool': 'Lafayette', 'city': 'Lafayette', 'state': 'LA', 'position': 'ILB', 'height': 75.0, 'weight': '230', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': '829', 'positionRank': '48', 'stateRank': '30', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2004', 'playerName': 'Kevin Bryan', 'highSchool': 'Lufkin', 'city': 'Lufkin', 'state': 'TX', 'position': 'TE', 'height': 76.0, 'weight': '245', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': '845', 'positionRank': '33', 'stateRank': '130', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2004', 'playerName': 'Yemi Babalola', 'highSchool': 'Bryan', 'city': 'Bryan', 'state': 'TX', 'position': 'OG', 'height': 76.0, 'weight': '290', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': '871', 'positionRank': '68', 'stateRank': '136', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2004', 'playerName': 'Kedric Goins', 'highSchool': 'Brazosport', 'city': 'Freeport', 'state': 'TX', 'position': 'OLB', 'height': 72.0, 'weight': '205', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': '875', 'positionRank': '54', 'stateRank': '138', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2004', 'playerName': 'Travis Schneider', 'highSchool': 'Bellville', 'city': 'Bellville', 'state': 'TX', 'position': 'OT', 'height': 79.0, 'weight': '260', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '84', 'stateRank': '187', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2004', 'playerName': 'Renuel Green', 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'OLB', 'height': 76.0, 'weight': '220', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': '248', 'positionRank': '8', 'stateRank': '45', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2004', 'playerName': 'Richie Bean', 'highSchool': 'John Ehret', 'city': 'Marrero', 'state': 'LA', 'position': 'K', 'height': 72.0, 'weight': '175', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '37', 'stateRank': '92', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2004', 'playerName': 'William Morrisey', 'highSchool': 'Silsbee', 'city': 'Silsbee', 'state': 'TX', 'position': 'DT', 'height': 73.0, 'weight': '285', 'compRating': '0.9751', 'compStars': 4, 'nationalRank': '58', 'positionRank': '6', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2004', 'playerName': 'Stephen McGee', 'highSchool': 'Burnet', 'city': 'Burnet', 'state': 'TX', 'position': 'PRO', 'height': 75.0, 'weight': '205', 'compRating': '0.9743', 'compStars': 4, 'nationalRank': '64', 'positionRank': '5', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2004', 'playerName': 'Chris Smith', 'highSchool': 'Allen', 'city': 'Allen', 'state': 'TX', 'position': 'SDE', 'height': 77.0, 'weight': '265', 'compRating': '0.9719', 'compStars': 4, 'nationalRank': '75', 'positionRank': '1', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2011', 'playerName': 'Jeff Driskel', 'highSchool': 'Hagerty', 'city': 'Oviedo', 'state': 'FL', 'position': 'DUAL', 'height': 76.0, 'weight': '235', 'compRating': '0.9916', 'compStars': 5, 'nationalRank': '17', 'positionRank': '1', 'stateRank': '6', '247Rating': ' 99 ', '247Stars': 5, '247nationalRank': '13', '247positionRank': '1', '247stateRank': '6'}, {'school': 'florida', 'year': '2011', 'playerName': 'A.C. Leonard', 'highSchool': 'University Christian', 'city': 'Jacksonville', 'state': 'FL', 'position': 'TE', 'height': 74.0, 'weight': '245', 'compRating': '0.9727', 'compStars': 4, 'nationalRank': '52', 'positionRank': '4', 'stateRank': '13', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '42', '247positionRank': '2', '247stateRank': '11'}, {'school': 'florida', 'year': '2011', 'playerName': 'Mike Blakely', 'highSchool': 'Manatee', 'city': 'Bradenton', 'state': 'FL', 'position': 'RB', 'height': 68.0, 'weight': '193', 'compRating': '0.9711', 'compStars': 4, 'nationalRank': '58', 'positionRank': '6', 'stateRank': '15'}, {'school': 'florida', 'year': '2011', 'playerName': 'Marcus Roberson', 'highSchool': 'St. Thomas Aquinas', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'CB', 'height': 73.0, 'weight': '170', 'compRating': '0.9629', 'compStars': 4, 'nationalRank': '73', 'positionRank': '5', 'stateRank': '17', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '112', '247positionRank': '10', '247stateRank': '23'}, {'school': 'florida', 'year': '2011', 'playerName': 'Jacoby Brissett', 'highSchool': 'Dwyer', 'city': 'Palm Beach Gardens', 'state': 'FL', 'position': 'PRO', 'height': 77.0, 'weight': '225', 'compRating': '0.9405', 'compStars': 4, 'nationalRank': '120', 'positionRank': '3', 'stateRank': '25', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '99', '247positionRank': '2', '247stateRank': '20'}, {'school': 'florida', 'year': '2011', 'playerName': 'Jabari Gorman', 'highSchool': 'Monsignor Pace', 'city': 'Opa Locka', 'state': 'FL', 'position': 'S', 'height': 70.0, 'weight': '170', 'compRating': '0.9368', 'compStars': 4, 'nationalRank': '128', 'positionRank': '7', 'stateRank': '27', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '142', '247positionRank': '10', '247stateRank': '27'}, {'school': 'florida', 'year': '2011', 'playerName': "Ja'Juan Story", 'highSchool': 'Nature Coast Tech', 'city': 'Brooksville', 'state': 'FL', 'position': 'WR', 'height': 75.0, 'weight': '195', 'compRating': '0.9348', 'compStars': 4, 'nationalRank': '134', 'positionRank': '19', 'stateRank': '29', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '158', '247positionRank': '22', '247stateRank': '31'}, {'school': 'florida', 'year': '2011', 'playerName': 'Javares McRoy', 'highSchool': 'Lakeland', 'city': 'Lakeland', 'state': 'FL', 'position': 'WR', 'height': 67.0, 'weight': '159', 'compRating': '0.9153', 'compStars': 4, 'nationalRank': '193', 'positionRank': '26', 'stateRank': '35', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '117', '247positionRank': '17', '247stateRank': '24'}, {'school': 'florida', 'year': '2011', 'playerName': 'Valdez Showers', 'highSchool': 'Madison', 'city': 'Madison Heights', 'state': 'MI', 'position': 'S', 'height': 72.0, 'weight': '185', 'compRating': '0.9054', 'compStars': 4, 'nationalRank': '220', 'positionRank': '16', 'stateRank': '6', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '178', '247positionRank': '13', '247stateRank': '5'}, {'school': 'florida', 'year': '2011', 'playerName': 'Loucheiz Purifoy', 'highSchool': 'Pine Forest', 'city': 'Pensacola', 'state': 'FL', 'position': 'CB', 'height': 72.0, 'weight': '170', 'compRating': '0.8955', 'compStars': 4, 'nationalRank': '261', 'positionRank': '23', 'stateRank': '45', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '185', '247positionRank': '17', '247stateRank': '38'}, {'school': 'florida', 'year': '2011', 'playerName': 'Graham Stewart', 'highSchool': 'Xavier', 'city': 'Middletown', 'state': 'CT', 'position': 'OLB', 'height': 73.0, 'weight': '215', 'compRating': '0.8912', 'compStars': 4, 'nationalRank': '279', 'positionRank': '20', 'stateRank': '1', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '25', '247stateRank': '1'}, {'school': 'florida', 'year': '2011', 'playerName': 'Trip Thurman', 'highSchool': 'Dover', 'city': 'Dover', 'state': 'DE', 'position': 'OT', 'height': 78.0, 'weight': '310', 'compRating': '0.8876', 'compStars': 3, 'nationalRank': '294', 'positionRank': '30', 'stateRank': '1', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '144', '247positionRank': '13', '247stateRank': '1'}, {'school': 'florida', 'year': '2011', 'playerName': "De'Ante Saunders", 'highSchool': 'Deland', 'city': 'Deland', 'state': 'FL', 'position': 'S', 'height': 69.0, 'weight': '190', 'compRating': '0.8797', 'compStars': 3, 'nationalRank': '332', 'positionRank': '24', 'stateRank': '54', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '19', '247stateRank': '57'}, {'school': 'florida', 'year': '2011', 'playerName': 'Clay Burton', 'highSchool': 'Venice', 'city': 'Venice', 'state': 'FL', 'position': 'SDE', 'height': 75.0, 'weight': '235', 'compRating': '0.8681', 'compStars': 3, 'nationalRank': '424', 'positionRank': '29', 'stateRank': '64', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '26', '247stateRank': '68'}, {'school': 'florida', 'year': '2011', 'playerName': 'Chris Johnson', 'highSchool': 'Trinity Catholic', 'city': 'Ocala', 'state': 'FL', 'position': 'OLB', 'height': 69.0, 'weight': '205', 'compRating': '0.8649', 'compStars': 3, 'nationalRank': '464', 'positionRank': '36', 'stateRank': '69', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '28', '247stateRank': '73'}, {'school': 'florida', 'year': '2011', 'playerName': 'Hunter Joyer', 'highSchool': 'Tampa Catholic', 'city': 'Tampa', 'state': 'FL', 'position': 'FB', 'height': 71.0, 'weight': '245', 'compRating': '0.8637', 'compStars': 3, 'nationalRank': '482', 'positionRank': '2', 'stateRank': '72', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '2', '247stateRank': '54'}, {'school': 'florida', 'year': '2011', 'playerName': 'Tommy Jordan', 'highSchool': 'Ridgefield', 'city': 'Ridgefield', 'state': 'CT', 'position': 'OT', 'height': 77.0, 'weight': '285', 'compRating': '0.8618', 'compStars': 3, 'nationalRank': '512', 'positionRank': '53', 'stateRank': '2', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '49', '247stateRank': '2'}, {'school': 'florida', 'year': '2011', 'playerName': 'Kyle Christy', 'highSchool': 'Brownsburg', 'city': 'Brownsburg', 'state': 'IN', 'position': 'K', 'height': 75.0, 'weight': '195', 'compRating': '0.8369', 'compStars': 3, 'nationalRank': '946', 'positionRank': '1', 'stateRank': '12', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '3', '247stateRank': '16'}, {'school': 'florida', 'year': '2011', 'playerName': 'Tevin Westbrook', 'highSchool': 'North Broward Prep', 'city': 'Pompano Beach', 'state': 'FL', 'position': 'SDE', 'height': 77.0, 'weight': '250', 'compRating': '0.8240', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '76', 'stateRank': '150', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '49', '247stateRank': '98'}, {'school': 'auburn', 'year': '2003', 'playerName': 'Tez Doolittle', 'highSchool': 'Opelika', 'city': 'Opelika', 'state': 'AL', 'position': 'FB', 'height': 75.0, 'weight': '260', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '141', 'positionRank': '1', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2003', 'playerName': 'Jarrod Britt', 'highSchool': 'McEachern', 'city': 'Powder Springs', 'state': 'GA', 'position': 'OG', 'height': 77.0, 'weight': '270', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '160', 'positionRank': '11', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2003', 'playerName': 'Tim Duckworth', 'highSchool': 'Taylorsville', 'city': 'Taylorsville', 'state': 'MS', 'position': 'DT', 'height': 76.0, 'weight': '287', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '183', 'positionRank': '14', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2003', 'playerName': 'Quentin Groves', 'highSchool': 'Greenville Weston', 'city': 'Greenville', 'state': 'MS', 'position': 'WDE', 'height': 76.0, 'weight': '235', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '213', 'positionRank': '11', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2003', 'playerName': 'Courtney Denson', 'highSchool': 'Miami Central', 'city': 'Miami', 'state': 'FL', 'position': 'ATH', 'height': 73.0, 'weight': '185', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '220', 'positionRank': '7', 'stateRank': '32', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2003', 'playerName': 'Lloyd Blevins', 'highSchool': 'Wenonah Sch', 'city': 'Birmingham', 'state': 'AL', 'position': 'WDE', 'height': 76.0, 'weight': '220', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '265', 'positionRank': '13', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2003', 'playerName': 'Doug Langenfeld', 'highSchool': 'Reedley College', 'city': 'Reedley', 'state': 'CA', 'position': 'SDE', 'height': 75.0, 'weight': '245', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '46', 'positionRank': '5', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2003', 'playerName': 'Kody Bliss', 'highSchool': 'Brentwood Academy', 'city': 'Brentwood', 'state': 'TN', 'position': 'K', 'height': 71.0, 'weight': '170', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '280', 'positionRank': '6', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2003', 'playerName': 'Tony McClain', 'highSchool': 'Coffeyville C.C.', 'city': 'Coffeyville', 'state': 'KS', 'position': 'WDE', 'height': 74.0, 'weight': '262', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '51', 'positionRank': '2', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2003', 'playerName': 'Kevin Sears', 'highSchool': 'Russellville', 'city': 'Russellville', 'state': 'AL', 'position': 'OLB', 'height': 76.0, 'weight': '217', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '344', 'positionRank': '24', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2003', 'playerName': 'Cole Bennett', 'highSchool': 'Dalton', 'city': 'Dalton', 'state': 'GA', 'position': 'TE', 'height': 77.0, 'weight': '225', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '360', 'positionRank': '19', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2003', 'playerName': 'Montavian Collier', 'highSchool': 'Opelika', 'city': 'Opelika', 'state': 'AL', 'position': 'OLB', 'height': 74.0, 'weight': '218', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '403', 'positionRank': '28', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2003', 'playerName': 'Josh Thompson', 'highSchool': 'Statesboro', 'city': 'Statesboro', 'state': 'GA', 'position': 'DT', 'height': 73.0, 'weight': '285', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '421', 'positionRank': '31', 'stateRank': '27', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2003', 'playerName': 'Kenny Williams', 'highSchool': 'American', 'city': 'Hialeah', 'state': 'FL', 'position': 'TE', 'height': 79.0, 'weight': '230', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '458', 'positionRank': '29', 'stateRank': '56', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2003', 'playerName': 'Kevin Williams', 'highSchool': 'Sebastian River', 'city': 'Sebastian', 'state': 'FL', 'position': 'DT', 'height': 79.0, 'weight': '270', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '473', 'positionRank': '34', 'stateRank': '59', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2003', 'playerName': 'King Dunlap', 'highSchool': 'Brentwood Academy', 'city': 'Brentwood', 'state': 'TN', 'position': 'OT', 'height': 79.0, 'weight': '275', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '506', 'positionRank': '40', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2003', 'playerName': 'Patrick Lee', 'highSchool': 'Columbus', 'city': 'Miami', 'state': 'FL', 'position': 'CB', 'height': 72.0, 'weight': '177', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '514', 'positionRank': '38', 'stateRank': '64', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2003', 'playerName': 'Kelcy Luke', 'highSchool': 'Central', 'city': 'Phenix City', 'state': 'AL', 'position': 'DUAL', 'height': 73.0, 'weight': '196', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '590', 'positionRank': '16', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2003', 'playerName': 'John Vaughn', 'highSchool': 'Brentwood Academy', 'city': 'Brentwood', 'state': 'TN', 'position': 'K', 'height': 73.0, 'weight': '170', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '649', 'positionRank': '23', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2003', 'playerName': 'Eric Brock', 'highSchool': 'Benjamin Russell Sch', 'city': 'Alexander City', 'state': 'AL', 'position': 'S', 'height': 72.0, 'weight': '180', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '851', 'positionRank': '53', 'stateRank': '28', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2003', 'playerName': 'Carl Stewart', 'highSchool': 'Maryville', 'city': 'Maryville', 'state': 'TN', 'position': 'RB', 'height': 74.0, 'weight': '205', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '880', 'positionRank': '50', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2003', 'playerName': 'Rudy Taylor', 'highSchool': 'Chaminade-Madonna Prep', 'city': 'Hollywood', 'state': 'FL', 'position': 'ILB', 'height': 73.0, 'weight': '250', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '89', 'stateRank': '180', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2003', 'playerName': 'Marquies Gunn', 'highSchool': 'Benjamin Russell Sch', 'city': 'Alexander City', 'state': 'AL', 'position': 'WDE', 'height': 76.0, 'weight': '205', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '58', 'stateRank': '60', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2003', 'playerName': 'Bruce Edwards', 'highSchool': 'Columbus', 'city': 'Columbus', 'state': 'MS', 'position': 'WR', 'height': 71.0, 'weight': '165', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '220', 'stateRank': '44', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2003', 'playerName': 'Stanley McClover', 'highSchool': 'Dillard', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'SDE', 'height': 76.0, 'weight': '235', 'compRating': '0.9410', 'compStars': 4, 'nationalRank': '89', 'positionRank': '8', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2002', 'playerName': 'Kedric Golston', 'highSchool': 'Sandy Creek', 'city': 'Tyrone', 'state': 'GA', 'position': 'DT', 'height': 76.0, 'weight': '285', 'compRating': '0.9845', 'compStars': 5, 'nationalRank': '33', 'positionRank': '3', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2002', 'playerName': 'Max Jean-Gilles', 'highSchool': 'North Miami Beach Senior', 'city': 'Miami', 'state': 'FL', 'position': 'OT', 'height': 75.0, 'weight': '340', 'compRating': '0.9484', 'compStars': 4, 'nationalRank': '94', 'positionRank': '8', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2002', 'playerName': 'Leonard Pope', 'highSchool': 'Americus Sumter County South', 'city': 'Americus', 'state': 'GA', 'position': 'TE', 'height': 79.0, 'weight': '240', 'compRating': '0.9333', 'compStars': 4, 'nationalRank': '108', 'positionRank': '5', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2002', 'playerName': 'Reshard Dudley', 'highSchool': 'Marianna', 'city': 'Marianna', 'state': 'FL', 'position': 'RB', 'height': 70.0, 'weight': '208', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '123', 'positionRank': '13', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2002', 'playerName': 'Mario Raley', 'highSchool': 'Independence', 'city': 'Charlotte', 'state': 'NC', 'position': 'WR', 'height': 73.0, 'weight': '185', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '157', 'positionRank': '18', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2002', 'playerName': 'Demario Minter', 'highSchool': 'Stephenson', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'CB', 'height': 71.0, 'weight': '180', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '159', 'positionRank': '10', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2002', 'playerName': 'Joe Tereshinski', 'highSchool': 'Athens Academy', 'city': 'Athens', 'state': 'GA', 'position': 'PRO', 'height': 75.0, 'weight': '205', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '179', 'positionRank': '8', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2002', 'playerName': 'Dan Inman', 'highSchool': 'South View', 'city': 'Hope Mills', 'state': 'NC', 'position': 'OT', 'height': 79.0, 'weight': '300', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '253', 'positionRank': '24', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2002', 'playerName': 'Ray Gant', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'DT', 'height': 75.0, 'weight': '280', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '1', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2002', 'playerName': 'Tony Taylor', 'highSchool': 'Oconee County', 'city': 'Watkinsville', 'state': 'GA', 'position': 'OLB', 'height': 74.0, 'weight': '215', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '278', 'positionRank': '17', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2002', 'playerName': 'Josh Brock', 'highSchool': 'Cartersville', 'city': 'Cartersville', 'state': 'GA', 'position': 'OG', 'height': 76.0, 'weight': '280', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '289', 'positionRank': '17', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2002', 'playerName': 'Dale Dixson', 'highSchool': 'Garland', 'city': 'Garland', 'state': 'TX', 'position': 'SDE', 'height': 75.0, 'weight': '265', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '299', 'positionRank': '16', 'stateRank': '40', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2002', 'playerName': 'B.J. Fields', 'highSchool': 'Camden County', 'city': 'Kingsland', 'state': 'GA', 'position': 'CB', 'height': 71.0, 'weight': '180', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '304', 'positionRank': '22', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2002', 'playerName': 'Bryan uga McClendon', 'highSchool': 'Mays', 'city': 'Atlanta', 'state': 'GA', 'position': 'ATH', 'height': 73.0, 'weight': '180', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '310', 'positionRank': '22', 'stateRank': '25', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2002', 'playerName': 'Darrius Swain', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'DT', 'height': 76.0, 'weight': '295', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '4', 'positionRank': '2', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2002', 'playerName': 'Michael Cooper', 'highSchool': 'Screven County', 'city': 'Sylvania', 'state': 'GA', 'position': 'RB', 'height': 72.0, 'weight': '215', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '321', 'positionRank': '25', 'stateRank': '26', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2002', 'playerName': 'Preston Pannell', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'SDE', 'height': 79.0, 'weight': '240', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '5', 'positionRank': '1', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2002', 'playerName': 'Quentin Moses', 'highSchool': 'Cedar Shoals', 'city': 'Athens', 'state': 'GA', 'position': 'SDE', 'height': 77.0, 'weight': '235', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '377', 'positionRank': '21', 'stateRank': '29', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2002', 'playerName': 'Tyson Browning', 'highSchool': 'Fork Union Military Academy', 'city': 'Fork Union', 'state': 'VA', 'position': 'ATH', 'height': 71.0, 'weight': '170', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '6', 'positionRank': '1', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2002', 'playerName': 'Olaolu Sanni-Osomo', 'highSchool': 'LaGrange', 'city': 'Lagrange', 'state': 'GA', 'position': 'S', 'height': 74.0, 'weight': '195', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '550', 'positionRank': '36', 'stateRank': '37', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2002', 'playerName': 'Bartley Miller', 'highSchool': 'Marist School', 'city': 'Atlanta', 'state': 'GA', 'position': 'OT', 'height': 77.0, 'weight': '275', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '596', 'positionRank': '49', 'stateRank': '43', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2002', 'playerName': 'Randall Swoopes', 'highSchool': 'Clarke Central', 'city': 'Athens', 'state': 'GA', 'position': 'OG', 'height': 75.0, 'weight': '305', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '600', 'positionRank': '46', 'stateRank': '44', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2002', 'playerName': 'Aaron Scranton', 'highSchool': 'Buford', 'city': 'Buford', 'state': 'GA', 'position': 'WDE', 'height': 77.0, 'weight': '230', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '634', 'positionRank': '27', 'stateRank': '45', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2002', 'playerName': 'Martrez Milner', 'highSchool': 'West Hall', 'city': 'Oakwood', 'state': 'GA', 'position': 'ATH', 'height': 77.0, 'weight': '235', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '635', 'positionRank': '36', 'stateRank': '46', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2002', 'playerName': 'Antonio Mercier', 'highSchool': 'Washington-Wilkes', 'city': 'Washington', 'state': 'GA', 'position': 'OT', 'height': 77.0, 'weight': '335', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '642', 'positionRank': '55', 'stateRank': '47', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2002', 'playerName': 'Michael Turner', 'highSchool': 'Brookwood', 'city': 'Snellville', 'state': 'GA', 'position': 'TE', 'height': 77.0, 'weight': '250', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '879', 'positionRank': '45', 'stateRank': '61', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2002', 'playerName': 'Cedric Haywood', 'highSchool': 'Central Fellowship Christian Academy', 'city': 'Macon', 'state': 'GA', 'position': 'WR', 'height': 73.0, 'weight': '183', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': '922', 'positionRank': '87', 'stateRank': '62', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2002', 'playerName': 'Tim Jennings', 'highSchool': 'Orangeburg-Wilkinson', 'city': 'Orangeburg', 'state': 'SC', 'position': 'CB', 'height': 69.0, 'weight': '165', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '99', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2002', 'playerName': 'Chris Hickman', 'highSchool': 'Wheeler', 'city': 'Marietta', 'state': 'GA', 'position': 'FB', 'height': 71.0, 'weight': '248', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '30', 'stateRank': '88', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2002', 'playerName': 'Marcus Jackson', 'highSchool': 'Norcross', 'city': 'Norcross', 'state': 'GA', 'position': 'WDE', 'height': 75.0, 'weight': '235', 'compRating': '0.9779', 'compStars': 4, 'nationalRank': '50', 'positionRank': '5', 'stateRank': '3'}, {'school': 'tennessee', 'year': '2004', 'playerName': 'Albert Toeaina', 'highSchool': 'City College of San Francisco', 'city': 'San Francisco', 'state': 'CA', 'position': 'OT', 'height': 77.0, 'weight': '345', 'compRating': '0.9667', 'compStars': 4, 'nationalRank': '4', 'positionRank': '2', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2004', 'playerName': 'Jesse Mahelona', 'highSchool': 'Orange Coast College', 'city': 'Costa Mesa', 'state': 'CA', 'position': 'DT', 'height': 74.0, 'weight': '290', 'compRating': '0.9667', 'compStars': 4, 'nationalRank': '5', 'positionRank': '2', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2004', 'playerName': 'Robert Ayers', 'highSchool': 'Marlboro County', 'city': 'Bennettsville', 'state': 'SC', 'position': 'ILB', 'height': 75.0, 'weight': '230', 'compRating': '0.9471', 'compStars': 4, 'nationalRank': '106', 'positionRank': '9', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2004', 'playerName': "Ja'Kouri Williams", 'highSchool': 'Plaquemine', 'city': 'Plaquemine', 'state': 'LA', 'position': 'RB', 'height': 71.0, 'weight': '180', 'compRating': '0.9159', 'compStars': 4, 'nationalRank': '144', 'positionRank': '12', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2004', 'playerName': 'Erik Ainge', 'highSchool': 'Glencoe', 'city': 'Hillsboro', 'state': 'OR', 'position': 'PRO', 'height': 78.0, 'weight': '200', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '162', 'positionRank': '10', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2004', 'playerName': 'Jerod Mayo', 'highSchool': 'Kecoughtan', 'city': 'Hampton', 'state': 'VA', 'position': 'OLB', 'height': 74.0, 'weight': '214', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '171', 'positionRank': '10', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2004', 'playerName': 'Xavier Mitchell', 'highSchool': 'Long Beach', 'city': 'Long Beach', 'state': 'MS', 'position': 'SDE', 'height': 76.0, 'weight': '245', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '193', 'positionRank': '11', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2004', 'playerName': 'David Holbert', 'highSchool': 'Brentwood Academy', 'city': 'Brentwood', 'state': 'TN', 'position': 'FB', 'height': 73.0, 'weight': '237', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '205', 'positionRank': '4', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2004', 'playerName': 'Jonathan Hefney', 'highSchool': 'Rock Hill', 'city': 'Rock Hill', 'state': 'SC', 'position': 'CB', 'height': 70.0, 'weight': '172', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '312', 'positionRank': '22', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2004', 'playerName': 'Antonio Reynolds', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'WDE', 'height': 75.0, 'weight': '225', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '5', 'positionRank': '1', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2004', 'playerName': 'Sinclair Cannon', 'highSchool': 'Greer', 'city': 'Greer', 'state': 'SC', 'position': 'ATH', 'height': 75.0, 'weight': '190', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '402', 'positionRank': '31', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2004', 'playerName': 'Ramon Foster', 'highSchool': 'Ripley', 'city': 'Ripley', 'state': 'TN', 'position': 'OT', 'height': 79.0, 'weight': '285', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '474', 'positionRank': '34', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2004', 'playerName': 'Arian Foster', 'highSchool': 'Mission Bay', 'city': 'San Diego', 'state': 'CA', 'position': 'APB', 'height': 73.0, 'weight': '208', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '524', 'positionRank': '14', 'stateRank': '64', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2004', 'playerName': 'Cameron Mayo', 'highSchool': 'Dalton', 'city': 'Dalton', 'state': 'GA', 'position': 'OG', 'height': 77.0, 'weight': '258', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '551', 'positionRank': '39', 'stateRank': '30', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2004', 'playerName': 'Ell Ash', 'highSchool': 'Willingboro', 'city': 'Willingboro', 'state': 'NJ', 'position': 'OG', 'height': 77.0, 'weight': '273', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '615', 'positionRank': '49', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2004', 'playerName': 'Inky Johnson', 'highSchool': 'Crim', 'city': 'Atlanta', 'state': 'GA', 'position': 'ATH', 'height': 72.0, 'weight': '170', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '677', 'positionRank': '51', 'stateRank': '39', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2004', 'playerName': 'Ellix Wilson', 'highSchool': 'Melrose', 'city': 'Memphis', 'state': 'TN', 'position': 'S', 'height': 72.0, 'weight': '205', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '748', 'positionRank': '48', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2004', 'playerName': 'Ryan Karl', 'highSchool': 'Battle Ground Academy', 'city': 'Franklin', 'state': 'TN', 'position': 'S', 'height': 72.0, 'weight': '200', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '104', 'stateRank': '25', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2004', 'playerName': 'Brent Schaeffer', 'highSchool': 'Deerfield Beach', 'city': 'Deerfield Beach', 'state': 'FL', 'position': 'DUAL', 'height': 74.0, 'weight': '190', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2004', 'playerName': 'James Turner', 'highSchool': 'Augusta', 'city': 'Augusta', 'state': 'AR', 'position': 'OLB', 'height': 70.0, 'weight': '210', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2004', 'playerName': 'Anthony Parker', 'highSchool': 'Lovejoy', 'city': 'Hampton', 'state': 'GA', 'position': 'OG', 'height': 76.0, 'weight': '290', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2004', 'playerName': 'Chris Brown', 'highSchool': 'Jesuit', 'city': 'New Orleans', 'state': 'LA', 'position': 'TE', 'height': 75.0, 'weight': '235', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2004', 'playerName': 'Demonte Bolden', 'highSchool': 'Tyner Academy', 'city': 'Chattanooga', 'state': 'TN', 'position': 'DT', 'height': 77.0, 'weight': '295', 'compRating': '0.9845', 'compStars': 5, 'nationalRank': '34', 'positionRank': '4', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2010', 'playerName': 'Marcus Lattimore', 'highSchool': 'Byrnes', 'city': 'Duncan', 'state': 'SC', 'position': 'APB', 'height': 72.0, 'weight': '215', 'compRating': '0.9953', 'compStars': 5, 'nationalRank': '9', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '16', '247positionRank': '2', '247stateRank': '1'}, {'school': 'south-carolina', 'year': '2010', 'playerName': 'A.J. Cann', 'highSchool': 'Bamberg-Ehrhardt', 'city': 'Bamberg', 'state': 'SC', 'position': 'OC', 'height': 74.0, 'weight': '285', 'compRating': '0.9361', 'compStars': 4, 'nationalRank': '140', 'positionRank': '3', 'stateRank': '8', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '131', '247positionRank': '2', '247stateRank': '5'}, {'school': 'south-carolina', 'year': '2010', 'playerName': 'Victor Hampton', 'highSchool': 'Darlington', 'city': 'Darlington', 'state': 'SC', 'position': 'CB', 'height': 69.0, 'weight': '175', 'compRating': '0.9282', 'compStars': 4, 'nationalRank': '163', 'positionRank': '13', 'stateRank': '9', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '167', '247positionRank': '9', '247stateRank': '7'}, {'school': 'south-carolina', 'year': '2010', 'playerName': 'Connor Shaw', 'highSchool': 'Flowery Branch', 'city': 'Flowery Branch', 'state': 'GA', 'position': 'DUAL', 'height': 73.0, 'weight': '192', 'compRating': '0.8843', 'compStars': 3, 'nationalRank': '396', 'positionRank': '11', 'stateRank': '35', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2010', 'playerName': 'Ace Sanders', 'highSchool': 'Manatee', 'city': 'Bradenton', 'state': 'FL', 'position': 'WR', 'height': 67.0, 'weight': '170', 'compRating': '0.8688', 'compStars': 3, 'nationalRank': '585', 'positionRank': '82', 'stateRank': '85', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2010', 'playerName': 'Toquavius Gilchrist', 'highSchool': 'Butler C.C.', 'city': 'El Dorado', 'state': 'KS', 'position': 'ILB', 'height': 74.0, 'weight': '230', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '27', 'positionRank': '1', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2010', 'playerName': 'Tramell Williams', 'highSchool': 'Robert E. Lee', 'city': 'Jacksonville', 'state': 'FL', 'position': 'OC', 'height': 72.0, 'weight': '290', 'compRating': '0.8447', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '14', 'stateRank': '187', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2010', 'playerName': 'Cody Gibson', 'highSchool': 'Lincoln', 'city': 'Tallahassee', 'state': 'FL', 'position': 'OT', 'height': 78.0, 'weight': '260', 'compRating': '0.8414', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '90', 'stateRank': '189', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2010', 'playerName': 'Nick Jones', 'highSchool': 'Byrnes', 'city': 'Duncan', 'state': 'SC', 'position': 'WR', 'height': 68.0, 'weight': '188', 'compRating': '0.8414', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '165', 'stateRank': '30', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2010', 'playerName': 'Ronald Patrick', 'highSchool': 'Cocoa', 'city': 'Cocoa', 'state': 'FL', 'position': 'OG', 'height': 73.0, 'weight': '277', 'compRating': '0.8403', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '67', 'stateRank': '190', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2010', 'playerName': 'Corey Robinson', 'highSchool': 'Havelock', 'city': 'Havelock', 'state': 'NC', 'position': 'OT', 'height': 79.0, 'weight': '292', 'compRating': '0.8227', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '112', 'stateRank': '38', '247Rating': ' 75 ', '247Stars': 2, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2010', 'playerName': 'J.T. Surratt', 'highSchool': 'Parkland', 'city': 'Winston Salem', 'state': 'NC', 'position': 'DT', 'height': 74.0, 'weight': '293', 'compRating': '0.8225', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '107', 'stateRank': '39', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2010', 'playerName': 'Sharrod Golightly', 'highSchool': 'Southwest DeKalb', 'city': 'Decatur', 'state': 'GA', 'position': 'S', 'height': 70.0, 'weight': '178', 'compRating': '0.8185', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '123', 'stateRank': '129', '247Rating': ' 75 ', '247Stars': 2, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2010', 'playerName': 'Cadarious Sanders', 'highSchool': 'Troup County', 'city': 'Lagrange', 'state': 'GA', 'position': 'CB', 'height': 71.0, 'weight': '181', 'compRating': '0.8132', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '151', 'stateRank': '132', '247Rating': ' 75 ', '247Stars': 2, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2010', 'playerName': 'Dylan Thompson', 'highSchool': 'Boiling Springs', 'city': 'Boiling Springs', 'state': 'SC', 'position': 'PRO', 'height': 74.0, 'weight': '206', 'compRating': '0.8037', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '64', 'stateRank': '41', '247Rating': ' 75 ', '247Stars': 2, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2010', 'playerName': 'Byron Jerideau', 'highSchool': 'Fort Scott C.C.', 'city': 'Fort Scott', 'state': 'KS', 'position': 'DT', 'height': 72.0, 'weight': '310', 'compRating': '0.7685', 'compStars': 2, 'nationalRank': '198', 'positionRank': '29', 'stateRank': '23', '247Rating': ' 75 ', '247Stars': 2, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2010', 'playerName': 'Qua Gilchrist', 'highSchool': 'Butler C.C.', 'city': 'El Dorado', 'state': 'KS', 'position': 'ILB', 'height': 73.0, 'weight': '230', 'compRating': '0.7500', 'compStars': 2, 'nationalRank': '254', 'positionRank': '11', 'stateRank': '31', '247Rating': ' 75 ', '247Stars': 2, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2010', 'playerName': 'Patrick Fish', 'highSchool': 'Burns', 'city': 'Lawndale', 'state': 'NC', 'position': 'K', 'height': 71.0, 'weight': '165', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '46', 'stateRank': '52', '247Rating': ' 70 ', '247Stars': 2, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2010', 'playerName': 'Corey Simmons', 'highSchool': 'Greater Atlanta Christian School', 'city': 'Norcross', 'state': 'GA', 'position': 'WDE', 'height': 77.0, 'weight': '225', 'compRating': '0.7333', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '129', 'stateRank': '171', '247Rating': ' 70 ', '247Stars': 2, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2010', 'playerName': 'Kelcy Quarles', 'highSchool': 'Greenwood', 'city': 'Greenwood', 'state': 'SC', 'position': 'DT', 'height': 76.0, 'weight': '267', 'compRating': '0.9576', 'compStars': 4, 'nationalRank': '88', 'positionRank': '6', 'stateRank': '5', '247Rating': ' 94 ', '247Stars': 4, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2010', 'playerName': 'Brison Williams', 'highSchool': 'Northside', 'city': 'Warner Robins', 'state': 'GA', 'position': 'CB', 'height': 72.0, 'weight': '180', 'compRating': '0.8426', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '106', 'stateRank': '96', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2010', 'playerName': "Du'Von Millsap", 'highSchool': 'Buford', 'city': 'Buford', 'state': 'GA', 'position': 'OG', 'height': 76.0, 'weight': '330', 'compRating': '0.8227', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '92', 'stateRank': '126'}, {'school': 'south-carolina', 'year': '2010', 'playerName': 'Javon Bell', 'highSchool': 'Jean Ribault', 'city': 'Jacksonville', 'state': 'FL', 'position': 'WR', 'height': 71.0, 'weight': '170', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '238', 'stateRank': '278'}, {'school': 'auburn', 'year': '2015', 'playerName': 'Byron Cowart', 'highSchool': 'Armwood', 'city': 'Seffner', 'state': 'FL', 'position': 'SDE', 'height': 76.0, 'weight': '250', 'compRating': '0.9987', 'compStars': 5, 'nationalRank': '3', 'positionRank': '1', 'stateRank': '2', '247Rating': ' 99 ', '247Stars': 5, '247nationalRank': '7', '247positionRank': '1', '247stateRank': '3'}, {'school': 'auburn', 'year': '2015', 'playerName': 'Kerryon Johnson', 'highSchool': 'Madison Academy', 'city': 'Madison', 'state': 'AL', 'position': 'ATH', 'height': 72.0, 'weight': '200', 'compRating': '0.9811', 'compStars': 4, 'nationalRank': '43', 'positionRank': '2', 'stateRank': '2', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '46', '247positionRank': '2', '247stateRank': '1'}, {'school': 'auburn', 'year': '2015', 'playerName': 'Jovon Robinson', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'RB', 'height': 71.0, 'weight': '225', 'compRating': '0.9803', 'compStars': 4, 'nationalRank': '1', 'positionRank': '1', 'stateRank': '1'}, {'school': 'auburn', 'year': '2015', 'playerName': 'Prince Tega Wanogho Jr.', 'highSchool': 'Edgewood Academy', 'city': 'Elmore', 'state': 'AL', 'position': 'SDE', 'height': 80.0, 'weight': '250', 'compRating': '0.9481', 'compStars': 4, 'nationalRank': '113', 'positionRank': '9', 'stateRank': '4', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '79', '247positionRank': '7', '247stateRank': '4'}, {'school': 'auburn', 'year': '2015', 'playerName': 'Jeff Holland', 'highSchool': 'Trinity Christian Academy', 'city': 'Jacksonville', 'state': 'FL', 'position': 'OLB', 'height': 74.0, 'weight': '230', 'compRating': '0.9450', 'compStars': 4, 'nationalRank': '122', 'positionRank': '8', 'stateRank': '19', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '112', '247positionRank': '9', '247stateRank': '16'}, {'school': 'auburn', 'year': '2015', 'playerName': 'Darius Slayton', 'highSchool': 'Greater Atlanta Christian School', 'city': 'Norcross', 'state': 'GA', 'position': 'WR', 'height': 73.0, 'weight': '182', 'compRating': '0.9380', 'compStars': 4, 'nationalRank': '140', 'positionRank': '15', 'stateRank': '16', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '126', '247positionRank': '15', '247stateRank': '13'}, {'school': 'auburn', 'year': '2015', 'playerName': 'Jordan Colbert', 'highSchool': 'Griffin', 'city': 'Griffin', 'state': 'GA', 'position': 'S', 'height': 74.0, 'weight': '205', 'compRating': '0.9270', 'compStars': 4, 'nationalRank': '168', 'positionRank': '9', 'stateRank': '18'}, {'school': 'auburn', 'year': '2015', 'playerName': 'Darrell Williams', 'highSchool': 'Hoover', 'city': 'Hoover', 'state': 'AL', 'position': 'OLB', 'height': 75.0, 'weight': '226', 'compRating': '0.9259', 'compStars': 4, 'nationalRank': '172', 'positionRank': '11', 'stateRank': '6', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '20', '247stateRank': '11'}, {'school': 'auburn', 'year': '2015', 'playerName': 'Ryan Davis', 'highSchool': 'Lakewood', 'city': 'Saint Petersburg', 'state': 'FL', 'position': 'WR', 'height': 70.5, 'weight': '172', 'compRating': '0.9235', 'compStars': 4, 'nationalRank': '178', 'positionRank': '21', 'stateRank': '25', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '36', '247stateRank': '42'}, {'school': 'auburn', 'year': '2015', 'playerName': 'Richard McBryde', 'highSchool': 'Charles Henderson Sch', 'city': 'Troy', 'state': 'AL', 'position': 'OLB', 'height': 74.0, 'weight': '210', 'compRating': '0.9194', 'compStars': 4, 'nationalRank': '199', 'positionRank': '13', 'stateRank': '8', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '95', '247positionRank': '6', '247stateRank': '5'}, {'school': 'auburn', 'year': '2015', 'playerName': 'Marquel Harrell', 'highSchool': 'Creekside', 'city': 'Fairburn', 'state': 'GA', 'position': 'OG', 'height': 75.0, 'weight': '295', 'compRating': '0.9116', 'compStars': 4, 'nationalRank': '224', 'positionRank': '11', 'stateRank': '22', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '23', '247stateRank': '30'}, {'school': 'auburn', 'year': '2015', 'playerName': 'Tyler Carr', 'highSchool': 'Southside', 'city': 'Gadsden', 'state': 'AL', 'position': 'OG', 'height': 77.0, 'weight': '311', 'compRating': '0.9088', 'compStars': 4, 'nationalRank': '238', 'positionRank': '14', 'stateRank': '9', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '36', '247stateRank': '18'}, {'school': 'auburn', 'year': '2015', 'playerName': 'Jason Smith', 'highSchool': 'Mississippi Gulf Coast C.C.', 'city': 'Perkinston', 'state': 'MS', 'position': 'ATH', 'height': 73.0, 'weight': '180', 'compRating': '0.9085', 'compStars': 4, 'nationalRank': '10', 'positionRank': '1', 'stateRank': '5', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '8', '247positionRank': '1', '247stateRank': '4'}, {'school': 'auburn', 'year': '2015', 'playerName': 'Kaleb Kim', 'highSchool': 'Mill Creek', 'city': 'Hoschton', 'state': 'GA', 'position': 'OC', 'height': 75.0, 'weight': '280', 'compRating': '0.9053', 'compStars': 4, 'nationalRank': '256', 'positionRank': '5', 'stateRank': '26', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '5', '247stateRank': '27'}, {'school': 'auburn', 'year': '2015', 'playerName': 'Montavious Atkinson', 'highSchool': 'Langston Hughes', 'city': 'Fairburn', 'state': 'GA', 'position': 'ILB', 'height': 73.0, 'weight': '200', 'compRating': '0.9010', 'compStars': 4, 'nationalRank': '277', 'positionRank': '10', 'stateRank': '29', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '10', '247stateRank': '22'}, {'school': 'auburn', 'year': '2015', 'playerName': 'Tim Irvin', 'highSchool': 'Westminster Christian School', 'city': 'Miami', 'state': 'FL', 'position': 'ATH', 'height': 68.5, 'weight': '194', 'compRating': '0.8994', 'compStars': 4, 'nationalRank': '290', 'positionRank': '17', 'stateRank': '39', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '19', '247stateRank': '35'}, {'school': 'auburn', 'year': '2015', 'playerName': 'Javaris Davis', 'highSchool': 'Ed White', 'city': 'Jacksonville', 'state': 'FL', 'position': 'RB', 'height': 69.5, 'weight': '173', 'compRating': '0.8987', 'compStars': 4, 'nationalRank': '295', 'positionRank': '23', 'stateRank': '42', '247Rating': ' 92 ', '247Stars': 4, '247positionRank': '21', '247stateRank': '33'}, {'school': 'auburn', 'year': '2015', 'playerName': 'Chandler Cox', 'highSchool': 'Apopka', 'city': 'Apopka', 'state': 'FL', 'position': 'FB', 'height': 72.5, 'weight': '222', 'compRating': '0.8912', 'compStars': 4, 'nationalRank': '334', 'positionRank': '2', 'stateRank': '49', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '2', '247stateRank': '47'}, {'school': 'auburn', 'year': '2015', 'playerName': 'Carlton Davis', 'highSchool': 'Norland', 'city': 'Miami', 'state': 'FL', 'position': 'CB', 'height': 74.0, 'weight': '184', 'compRating': '0.8904', 'compStars': 4, 'nationalRank': '340', 'positionRank': '32', 'stateRank': '50', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '214', '247positionRank': '26', '247stateRank': '28'}, {'school': 'auburn', 'year': '2015', 'playerName': 'Tyler Queen', 'highSchool': 'North Cobb', 'city': 'Kennesaw', 'state': 'GA', 'position': 'PRO', 'height': 74.0, 'weight': '229', 'compRating': '0.8832', 'compStars': 3, 'nationalRank': '381', 'positionRank': '15', 'stateRank': '35', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '14', '247stateRank': '43'}, {'school': 'auburn', 'year': '2015', 'playerName': 'Bailey Sharp', 'highSchool': 'Sprayberry', 'city': 'Marietta', 'state': 'GA', 'position': 'OT', 'height': 77.0, 'weight': '280', 'compRating': '0.8777', 'compStars': 3, 'nationalRank': '418', 'positionRank': '42', 'stateRank': '37', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '45', '247stateRank': '44'}, {'school': 'auburn', 'year': '2015', 'playerName': 'Jauntavius Johnson', 'highSchool': 'Lincoln Sch', 'city': 'Lincoln', 'state': 'AL', 'position': 'DT', 'height': 74.25, 'weight': '330', 'compRating': '0.8700', 'compStars': 3, 'nationalRank': '505', 'positionRank': '31', 'stateRank': '18', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '20', '247stateRank': '9'}, {'school': 'auburn', 'year': '2015', 'playerName': 'Maurice Swain Jr.', 'highSchool': 'Mississippi Gulf Coast C.C.', 'city': 'Perkinston', 'state': 'MS', 'position': 'DT', 'height': 76.0, 'weight': '295', 'compRating': '0.8650', 'compStars': 3, 'nationalRank': '51', 'positionRank': '9', 'stateRank': '20', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '42', '247positionRank': '6', '247stateRank': '16'}, {'school': 'auburn', 'year': '2015', 'playerName': 'Jalen Harris', 'highSchool': 'St James School', 'city': 'Montgomery', 'state': 'AL', 'position': 'TE', 'height': 77.0, 'weight': '244', 'compRating': '0.8615', 'compStars': 3, 'nationalRank': '617', 'positionRank': '19', 'stateRank': '22', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '27', '247stateRank': '27'}, {'school': 'auburn', 'year': '2015', 'playerName': 'Mike Horton', 'highSchool': 'Lakeside', 'city': 'Atlanta', 'state': 'GA', 'position': 'OT', 'height': 76.0, 'weight': '310', 'compRating': '0.8605', 'compStars': 3, 'nationalRank': '634', 'positionRank': '70', 'stateRank': '69', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '65', '247stateRank': '63'}, {'school': 'auburn', 'year': '2015', 'playerName': 'Jeremiah Dinson', 'highSchool': 'American', 'city': 'Hialeah', 'state': 'FL', 'position': 'CB', 'height': 72.0, 'weight': '180', 'compRating': '0.8375', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '108', 'stateRank': '168', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '111', '247stateRank': '173'}, {'school': 'auburn', 'year': '2015', 'playerName': 'Ian Shannon', 'highSchool': 'Marietta', 'city': 'Marietta', 'state': 'GA', 'position': 'P', 'height': 76.0, 'weight': '190', 'compRating': '0.8266', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '4', 'stateRank': '153', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '3', '247stateRank': '179'}, {'school': 'auburn', 'year': '2015', 'playerName': 'Robert Muschamp', 'highSchool': 'Darlington School', 'city': 'Rome', 'state': 'GA', 'position': 'OLB', 'height': 74.0, 'weight': '225', 'compRating': '0.8039', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '137', 'stateRank': '183', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '152', '247stateRank': '198'}, {'school': 'georgia', 'year': '2014', 'playerName': 'Lorenzo Carter', 'highSchool': 'Norcross', 'city': 'Norcross', 'state': 'GA', 'position': 'WDE', 'height': 77.0, 'weight': '232', 'compRating': '0.9913', 'compStars': 5, 'nationalRank': '18', 'positionRank': '2', 'stateRank': '1', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '20', '247positionRank': '2', '247stateRank': '2'}, {'school': 'georgia', 'year': '2014', 'playerName': 'Sony Michel', 'highSchool': 'American Heritage', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'RB', 'height': 71.0, 'weight': '205', 'compRating': '0.9905', 'compStars': 5, 'nationalRank': '20', 'positionRank': '3', 'stateRank': '3', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '57', '247positionRank': '6', '247stateRank': '8'}, {'school': 'georgia', 'year': '2014', 'playerName': 'Nick Chubb', 'highSchool': 'Cedartown', 'city': 'Cedartown', 'state': 'GA', 'position': 'RB', 'height': 71.0, 'weight': '216', 'compRating': '0.9846', 'compStars': 5, 'nationalRank': '33', 'positionRank': '5', 'stateRank': '3', '247Rating': ' 99 ', '247Stars': 5, '247nationalRank': '17', '247positionRank': '4', '247stateRank': '1'}, {'school': 'georgia', 'year': '2014', 'playerName': 'Malkom Parrish', 'highSchool': 'Brooks County', 'city': 'Quitman', 'state': 'GA', 'position': 'CB', 'height': 69.0, 'weight': '186', 'compRating': '0.9672', 'compStars': 4, 'nationalRank': '71', 'positionRank': '8', 'stateRank': '5', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '77', '247positionRank': '9', '247stateRank': '5'}, {'school': 'georgia', 'year': '2014', 'playerName': 'Isaiah Wynn', 'highSchool': 'Lakewood', 'city': 'Saint Petersburg', 'state': 'FL', 'position': 'OG', 'height': 74.0, 'weight': '272', 'compRating': '0.9474', 'compStars': 4, 'nationalRank': '110', 'positionRank': '7', 'stateRank': '16', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '139', '247positionRank': '9', '247stateRank': '20'}, {'school': 'georgia', 'year': '2014', 'playerName': 'Jacob Park', 'highSchool': 'Stratford', 'city': 'Goose Creek', 'state': 'SC', 'position': 'PRO', 'height': 75.0, 'weight': '202', 'compRating': '0.9448', 'compStars': 4, 'nationalRank': '119', 'positionRank': '6', 'stateRank': '2', '247Rating': ' 85 ', '247Stars': 3, '247nationalRank': '118', '247positionRank': '4', '247stateRank': '4'}, {'school': 'georgia', 'year': '2014', 'playerName': 'Jeb Blazevich', 'highSchool': 'Charlotte Christian', 'city': 'Charlotte', 'state': 'NC', 'position': 'TE', 'height': 76.5, 'weight': '230', 'compRating': '0.9397', 'compStars': 4, 'nationalRank': '135', 'positionRank': '3', 'stateRank': '7', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '10', '247stateRank': '15'}, {'school': 'georgia', 'year': '2014', 'playerName': 'Lamont Gaillard', 'highSchool': 'Pine Forest', 'city': 'Fayetteville', 'state': 'NC', 'position': 'DT', 'height': 75.0, 'weight': '310', 'compRating': '0.9367', 'compStars': 4, 'nationalRank': '144', 'positionRank': '10', 'stateRank': '8', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '136', '247positionRank': '12', '247stateRank': '5'}, {'school': 'georgia', 'year': '2014', 'playerName': 'Keyon Richardson', 'highSchool': 'Hardee', 'city': 'Wauchula', 'state': 'FL', 'position': 'WDE', 'height': 75.0, 'weight': '230', 'compRating': '0.9364', 'compStars': 4, 'nationalRank': '145', 'positionRank': '7', 'stateRank': '22', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '229', '247positionRank': '13', '247stateRank': '29'}, {'school': 'georgia', 'year': '2014', 'playerName': 'Dyshon Sims', 'highSchool': 'Lowndes', 'city': 'Valdosta', 'state': 'GA', 'position': 'OT', 'height': 76.0, 'weight': '278', 'compRating': '0.9084', 'compStars': 4, 'nationalRank': '238', 'positionRank': '17', 'stateRank': '17', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '186', '247positionRank': '17', '247stateRank': '14'}, {'school': 'georgia', 'year': '2014', 'playerName': 'Kendall Baker', 'highSchool': 'Marist School', 'city': 'Atlanta', 'state': 'GA', 'position': 'OT', 'height': 78.0, 'weight': '275', 'compRating': '0.8997', 'compStars': 4, 'nationalRank': '272', 'positionRank': '21', 'stateRank': '20', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '36', '247stateRank': '38'}, {'school': 'georgia', 'year': '2014', 'playerName': 'Shakenneth Williams', 'highSchool': 'Rutland', 'city': 'Macon', 'state': 'GA', 'position': 'WR', 'height': 73.5, 'weight': '195', 'compRating': '0.8947', 'compStars': 4, 'nationalRank': '295', 'positionRank': '41', 'stateRank': '22', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '46', '247stateRank': '19'}, {'school': 'georgia', 'year': '2014', 'playerName': 'Isaiah McKenzie', 'highSchool': 'American Heritage', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'WR', 'height': 68.0, 'weight': '175', 'compRating': '0.8945', 'compStars': 4, 'nationalRank': '296', 'positionRank': '42', 'stateRank': '42', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '151', '247positionRank': '23', '247stateRank': '23'}, {'school': 'georgia', 'year': '2014', 'playerName': 'Shattle Fenteng', 'highSchool': 'Hutchinson C.C.', 'city': 'Hutchinson', 'state': 'KS', 'position': 'CB', 'height': 74.0, 'weight': '200', 'compRating': '0.8864', 'compStars': 3, 'nationalRank': '25', 'positionRank': '3', 'stateRank': '5', '247Rating': ' 89 ', '247Stars': 3, '247nationalRank': '42', '247positionRank': '3', '247stateRank': '9'}, {'school': 'georgia', 'year': '2014', 'playerName': 'Rico Johnson', 'highSchool': 'Georgia Prep Sports Academy', 'city': 'Atlanta', 'state': 'GA', 'position': 'WR', 'height': 70.0, 'weight': '170', 'compRating': '0.8800', 'compStars': 3, 'nationalRank': '6', 'positionRank': '2', 'stateRank': '1'}, {'school': 'georgia', 'year': '2014', 'playerName': 'Detric Bing-Dukes', 'highSchool': 'Tucker', 'city': 'Tucker', 'state': 'GA', 'position': 'ILB', 'height': 72.0, 'weight': '220', 'compRating': '0.8708', 'compStars': 3, 'nationalRank': '477', 'positionRank': '20', 'stateRank': '40', '247Rating': ' 85 ', '247Stars': 3, '247nationalRank': '112', '247positionRank': '4', '247stateRank': '4'}, {'school': 'georgia', 'year': '2014', 'playerName': 'Jake Edwards', 'highSchool': 'Heard County', 'city': 'Franklin', 'state': 'GA', 'position': 'OG', 'height': 76.0, 'weight': '286', 'compRating': '0.8665', 'compStars': 3, 'nationalRank': '524', 'positionRank': '28', 'stateRank': '43', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '26', '247stateRank': '47'}, {'school': 'georgia', 'year': '2014', 'playerName': 'Dominick Sanders', 'highSchool': 'Tucker', 'city': 'Tucker', 'state': 'GA', 'position': 'S', 'height': 71.0, 'weight': '187', 'compRating': '0.8491', 'compStars': 3, 'nationalRank': '822', 'positionRank': '68', 'stateRank': '73', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '48', '247stateRank': '48'}, {'school': 'georgia', 'year': '2014', 'playerName': 'Hunter Atkinson', 'highSchool': 'West Hall', 'city': 'Oakwood', 'state': 'GA', 'position': 'TE', 'height': 78.0, 'weight': '250', 'compRating': '0.8448', 'compStars': 3, 'nationalRank': '915', 'positionRank': '41', 'stateRank': '79', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '15', '247stateRank': '39'}, {'school': 'georgia', 'year': '2014', 'playerName': 'Shaquille Jones', 'highSchool': 'Merritt Island', 'city': 'Merritt Island', 'state': 'FL', 'position': 'CB', 'height': 74.0, 'weight': '175', 'compRating': '0.8348', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '87', 'stateRank': '156'}, {'school': 'georgia', 'year': '2014', 'playerName': 'Gilbert Johnson', 'highSchool': 'Homestead', 'city': 'Homestead', 'state': 'FL', 'position': 'WR', 'height': 74.0, 'weight': '190', 'compRating': '0.8512', 'compStars': 3, 'nationalRank': '782', 'positionRank': '106', 'stateRank': '116'}, {'school': 'tennessee', 'year': '2012', 'playerName': 'Cordarrelle Patterson', 'highSchool': 'Hutchinson C.C.', 'city': 'Hutchinson', 'state': 'KS', 'position': 'WR', 'height': 75.0, 'weight': '205', 'compRating': '0.9671', 'compStars': 4, 'nationalRank': '1', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 99 ', '247Stars': 5, '247nationalRank': '1', '247positionRank': '1', '247stateRank': '1'}, {'school': 'tennessee', 'year': '2012', 'playerName': 'LaDarrell McNeil', 'highSchool': 'Wilmer-Hutchins', 'city': 'Dallas', 'state': 'TX', 'position': 'S', 'height': 73.0, 'weight': '195', 'compRating': '0.9595', 'compStars': 4, 'nationalRank': '90', 'positionRank': '7', 'stateRank': '12', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '115', '247positionRank': '7', '247stateRank': '14'}, {'school': 'tennessee', 'year': '2012', 'playerName': 'Omari Phillips', 'highSchool': 'Venice', 'city': 'Venice', 'state': 'FL', 'position': 'DT', 'height': 78.0, 'weight': '325', 'compRating': '0.9352', 'compStars': 4, 'nationalRank': '165', 'positionRank': '15', 'stateRank': '28', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '213', '247positionRank': '19', '247stateRank': '30'}, {'school': 'tennessee', 'year': '2012', 'playerName': "Danny O'Brien", 'highSchool': 'Flint Powers Catholic', 'city': 'Flint', 'state': 'MI', 'position': 'DT', 'height': 75.0, 'weight': '300', 'compRating': '0.9253', 'compStars': 4, 'nationalRank': '201', 'positionRank': '18', 'stateRank': '6', '247Rating': ' 92 ', '247Stars': 4, '247positionRank': '23', '247stateRank': '6'}, {'school': 'tennessee', 'year': '2012', 'playerName': 'Drae Bowles', 'highSchool': 'Jackson Christian', 'city': 'Jackson', 'state': 'TN', 'position': 'WR', 'height': 73.0, 'weight': '200', 'compRating': '0.9160', 'compStars': 4, 'nationalRank': '246', 'positionRank': '33', 'stateRank': '4', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '212', '247positionRank': '27', '247stateRank': '4'}, {'school': 'tennessee', 'year': '2012', 'playerName': 'Jason Croom', 'highSchool': 'Norcross', 'city': 'Norcross', 'state': 'GA', 'position': 'WR', 'height': 77.0, 'weight': '220', 'compRating': '0.9173', 'compStars': 4, 'nationalRank': '239', 'positionRank': '30', 'stateRank': '18', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '178', '247positionRank': '22', '247stateRank': '15'}, {'school': 'tennessee', 'year': '2012', 'playerName': 'Pig Howard', 'highSchool': 'Edgewater', 'city': 'Orlando', 'state': 'FL', 'position': 'WR', 'height': 68.0, 'weight': '180', 'compRating': '0.9088', 'compStars': 4, 'nationalRank': '275', 'positionRank': '38', 'stateRank': '37', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '121', '247positionRank': '16', '247stateRank': '19'}, {'school': 'tennessee', 'year': '2012', 'playerName': 'Davante Bourque', 'highSchool': 'Crowley', 'city': 'Crowley', 'state': 'LA', 'position': 'APB', 'height': 74.0, 'weight': '210', 'compRating': '0.8996', 'compStars': 4, 'nationalRank': '320', 'positionRank': '10', 'stateRank': '12'}, {'school': 'tennessee', 'year': '2012', 'playerName': 'Nathan Peterman', 'highSchool': 'Bartram Trail', 'city': 'Jacksonville', 'state': 'FL', 'position': 'PRO', 'height': 74.0, 'weight': '210', 'compRating': '0.8913', 'compStars': 4, 'nationalRank': '371', 'positionRank': '17', 'stateRank': '44', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '15', '247stateRank': '52'}, {'school': 'tennessee', 'year': '2012', 'playerName': 'Deion Bonner', 'highSchool': 'Carver', 'city': 'Columbus', 'state': 'GA', 'position': 'CB', 'height': 72.0, 'weight': '170', 'compRating': '0.8892', 'compStars': 3, 'nationalRank': '387', 'positionRank': '29', 'stateRank': '30', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '46', '247stateRank': '39'}, {'school': 'tennessee', 'year': '2012', 'playerName': 'Trent Taylor', 'highSchool': 'Lake Gibson', 'city': 'Lakeland', 'state': 'FL', 'position': 'SDE', 'height': 74.0, 'weight': '270', 'compRating': '0.8911', 'compStars': 4, 'nationalRank': '374', 'positionRank': '21', 'stateRank': '46'}, {'school': 'tennessee', 'year': '2012', 'playerName': 'LaTroy Lewis', 'highSchool': 'Archbishop Hoban', 'city': 'Akron', 'state': 'OH', 'position': 'WDE', 'height': 76.0, 'weight': '230', 'compRating': '0.8828', 'compStars': 3, 'nationalRank': '448', 'positionRank': '28', 'stateRank': '27', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '34', '247stateRank': '22'}, {'school': 'tennessee', 'year': '2012', 'playerName': 'Daniel McCullers', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'DT', 'height': 78.0, 'weight': '390', 'compRating': '0.8785', 'compStars': 3, 'nationalRank': '20', 'positionRank': '3', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2012', 'playerName': 'Darrington Sentimore', 'highSchool': 'Mississippi Gulf Coast C.C.', 'city': 'Perkinston', 'state': 'MS', 'position': 'DT', 'height': 75.0, 'weight': '270', 'compRating': '0.8771', 'compStars': 3, 'nationalRank': '22', 'positionRank': '4', 'stateRank': '8', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '20', '247positionRank': '2', '247stateRank': '8'}, {'school': 'tennessee', 'year': '2012', 'playerName': 'Quenshaun Watson', 'highSchool': 'Clarke Central', 'city': 'Athens', 'state': 'GA', 'position': 'RB', 'height': 70.0, 'weight': '175', 'compRating': '0.8605', 'compStars': 3, 'nationalRank': '736', 'positionRank': '44', 'stateRank': '59', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '69', '247stateRank': '98'}, {'school': 'tennessee', 'year': '2012', 'playerName': 'Alden Hill', 'highSchool': 'Marlington', 'city': 'Alliance', 'state': 'OH', 'position': 'RB', 'height': 73.0, 'weight': '215', 'compRating': '0.8588', 'compStars': 3, 'nationalRank': '758', 'positionRank': '46', 'stateRank': '47', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '61', '247stateRank': '57'}, {'school': 'tennessee', 'year': '2012', 'playerName': 'Justin Meredith', 'highSchool': 'T L Hanna', 'city': 'Anderson', 'state': 'SC', 'position': 'TE', 'height': 77.0, 'weight': '223', 'compRating': '0.8495', 'compStars': 3, 'nationalRank': '876', 'positionRank': '45', 'stateRank': '18', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '59', '247stateRank': '27'}, {'school': 'tennessee', 'year': '2012', 'playerName': 'Justin King', 'highSchool': 'Dunwoody', 'city': 'Atlanta', 'state': 'GA', 'position': 'ATH', 'height': 75.0, 'weight': '212', 'compRating': '0.8474', 'compStars': 3, 'nationalRank': '910', 'positionRank': '66', 'stateRank': '77', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '97', '247stateRank': '90'}, {'school': 'tennessee', 'year': '2012', 'playerName': 'Kenny Bynum', 'highSchool': 'Raines', 'city': 'Jacksonville', 'state': 'FL', 'position': 'ILB', 'height': 73.0, 'weight': '221', 'compRating': '0.8458', 'compStars': 3, 'nationalRank': '933', 'positionRank': '44', 'stateRank': '108', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '32', '247stateRank': '111'}, {'school': 'tennessee', 'year': '2012', 'playerName': 'Cody Blanc', 'highSchool': 'Knoxville Central', 'city': 'Knoxville', 'state': 'TN', 'position': 'ATH', 'height': 74.0, 'weight': '204', 'compRating': '0.8326', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '85', 'stateRank': '26', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '77', '247stateRank': '24'}, {'school': 'tennessee', 'year': '2012', 'playerName': 'Daniel Gray', 'highSchool': 'Boyd Anderson', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'CB', 'height': 72.0, 'weight': '170', 'compRating': '0.8291', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '91', 'stateRank': '153', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '108', '247stateRank': '184'}, {'school': 'tennessee', 'year': '2012', 'playerName': 'George Bullock', 'highSchool': 'Knoxville West', 'city': 'Knoxville', 'state': 'TN', 'position': 'K', 'height': 73.0, 'weight': '190', 'compRating': '0.7998', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '13', 'stateRank': '36', '247Rating': ' 75 ', '247Stars': 2, '247positionRank': '13', '247stateRank': '43'}, {'school': 'lsu', 'year': '2016', 'playerName': 'Kristian Fulton', 'highSchool': 'Archbishop Rummel', 'city': 'Metairie', 'state': 'LA', 'position': 'CB', 'height': 72.0, 'weight': '177', 'compRating': '0.9861', 'compStars': 5, 'nationalRank': '22', 'positionRank': '3', 'stateRank': '1', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '28', '247positionRank': '3', '247stateRank': '3'}, {'school': 'lsu', 'year': '2016', 'playerName': 'Rashard Lawrence', 'highSchool': 'Neville', 'city': 'Monroe', 'state': 'LA', 'position': 'DT', 'height': 75.0, 'weight': '305', 'compRating': '0.9847', 'compStars': 5, 'nationalRank': '23', 'positionRank': '5', 'stateRank': '2', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '20', '247positionRank': '5', '247stateRank': '2'}, {'school': 'lsu', 'year': '2016', 'playerName': 'Saivion Smith', 'highSchool': 'IMG Academy', 'city': 'Bradenton', 'state': 'FL', 'position': 'CB', 'height': 73.0, 'weight': '175', 'compRating': '0.9749', 'compStars': 4, 'nationalRank': '48', 'positionRank': '5', 'stateRank': '8', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '2', '247positionRank': '1', '247stateRank': '1'}, {'school': 'lsu', 'year': '2016', 'playerName': 'Eric Monroe', 'highSchool': 'North Shore', 'city': 'Houston', 'state': 'TX', 'position': 'S', 'height': 72.0, 'weight': '180', 'compRating': '0.9729', 'compStars': 4, 'nationalRank': '55', 'positionRank': '3', 'stateRank': '9', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '42', '247positionRank': '1', '247stateRank': '3'}, {'school': 'lsu', 'year': '2016', 'playerName': 'Michael Divinity', 'highSchool': 'John Ehret', 'city': 'Marrero', 'state': 'LA', 'position': 'OLB', 'height': 74.0, 'weight': '218', 'compRating': '0.9675', 'compStars': 4, 'nationalRank': '64', 'positionRank': '6', 'stateRank': '3', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '18', '247positionRank': '1', '247stateRank': '1'}, {'school': 'lsu', 'year': '2016', 'playerName': 'Ed Alexander', 'highSchool': 'St. Thomas Aquinas', 'city': 'Hammond', 'state': 'LA', 'position': 'DT', 'height': 74.0, 'weight': '310', 'compRating': '0.9665', 'compStars': 4, 'nationalRank': '68', 'positionRank': '8', 'stateRank': '4', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '46', '247positionRank': '6', '247stateRank': '4'}, {'school': 'lsu', 'year': '2016', 'playerName': 'Stephen Sullivan', 'highSchool': 'Donaldsonville', 'city': 'Donaldsonville', 'state': 'LA', 'position': 'WR', 'height': 77.0, 'weight': '230', 'compRating': '0.9427', 'compStars': 4, 'nationalRank': '126', 'positionRank': '21', 'stateRank': '7', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '204', '247positionRank': '38', '247stateRank': '13'}, {'school': 'lsu', 'year': '2016', 'playerName': 'Drake Davis', 'highSchool': 'IMG Academy', 'city': 'Bradenton', 'state': 'FL', 'position': 'WR', 'height': 76.0, 'weight': '215', 'compRating': '0.9419', 'compStars': 4, 'nationalRank': '129', 'positionRank': '24', 'stateRank': '22', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '59', '247stateRank': '42'}, {'school': 'lsu', 'year': '2016', 'playerName': 'Devin White', 'highSchool': 'North Webster', 'city': 'Springhill', 'state': 'LA', 'position': 'RB', 'height': 72.5, 'weight': '258', 'compRating': '0.9393', 'compStars': 4, 'nationalRank': '135', 'positionRank': '5', 'stateRank': '8', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '151', '247positionRank': '4', '247stateRank': '8'}, {'school': 'lsu', 'year': '2016', 'playerName': 'Donavaughn Campbell', 'highSchool': 'Ponchatoula', 'city': 'Ponchatoula', 'state': 'LA', 'position': 'OG', 'height': 76.0, 'weight': '347', 'compRating': '0.9374', 'compStars': 4, 'nationalRank': '140', 'positionRank': '6', 'stateRank': '9', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '160', '247positionRank': '6', '247stateRank': '9'}, {'school': 'lsu', 'year': '2016', 'playerName': 'Glen Logan', 'highSchool': 'Destrehan', 'city': 'Destrehan', 'state': 'LA', 'position': 'DT', 'height': 76.0, 'weight': '290', 'compRating': '0.9318', 'compStars': 4, 'nationalRank': '156', 'positionRank': '18', 'stateRank': '10', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '148', '247positionRank': '19', '247stateRank': '7'}, {'school': 'lsu', 'year': '2016', 'playerName': 'Willie Allen', 'highSchool': 'John Curtis', 'city': 'New Orleans', 'state': 'LA', 'position': 'OT', 'height': 79.5, 'weight': '300', 'compRating': '0.9248', 'compStars': 4, 'nationalRank': '183', 'positionRank': '17', 'stateRank': '11', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '73', '247positionRank': '12', '247stateRank': '9'}, {'school': 'lsu', 'year': '2016', 'playerName': 'Dee Anderson', 'highSchool': 'DeSoto', 'city': 'DeSoto', 'state': 'TX', 'position': 'WR', 'height': 77.0, 'weight': '205', 'compRating': '0.9242', 'compStars': 4, 'nationalRank': '185', 'positionRank': '37', 'stateRank': '26', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '211', '247positionRank': '39', '247stateRank': '33'}, {'school': 'lsu', 'year': '2016', 'playerName': 'Andre Anthony', 'highSchool': 'Edna Karr', 'city': 'New Orleans', 'state': 'LA', 'position': 'WDE', 'height': 75.0, 'weight': '214', 'compRating': '0.9216', 'compStars': 4, 'nationalRank': '203', 'positionRank': '14', 'stateRank': '13', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '111', '247positionRank': '9', '247stateRank': '6'}, {'school': 'lsu', 'year': '2016', 'playerName': 'Ray Thornton', 'highSchool': 'Shoemaker', 'city': 'Killeen', 'state': 'TX', 'position': 'WDE', 'height': 75.5, 'weight': '225', 'compRating': '0.9206', 'compStars': 4, 'nationalRank': '205', 'positionRank': '15', 'stateRank': '32', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '189', '247positionRank': '15', '247stateRank': '30'}, {'school': 'lsu', 'year': '2016', 'playerName': 'Greedy Williams', 'highSchool': 'Calvary Baptist Academy', 'city': 'Shreveport', 'state': 'LA', 'position': 'CB', 'height': 74.0, 'weight': '166', 'compRating': '0.9164', 'compStars': 4, 'nationalRank': '219', 'positionRank': '20', 'stateRank': '14', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '173', '247positionRank': '16', '247stateRank': '10'}, {'school': 'lsu', 'year': '2016', 'playerName': 'Jamal Pettigrew', 'highSchool': 'St. Augustine', 'city': 'New Orleans', 'state': 'LA', 'position': 'TE', 'height': 78.0, 'weight': '229', 'compRating': '0.9124', 'compStars': 4, 'nationalRank': '233', 'positionRank': '9', 'stateRank': '16', '247Rating': ' 92 ', '247Stars': 4, '247positionRank': '10', '247stateRank': '14'}, {'school': 'lsu', 'year': '2016', 'playerName': 'Cameron Lewis', 'highSchool': 'Wossman', 'city': 'Monroe', 'state': 'LA', 'position': 'S', 'height': 73.0, 'weight': '192', 'compRating': '0.8871', 'compStars': 3, 'nationalRank': '352', 'positionRank': '16', 'stateRank': '22', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '22', '247stateRank': '22'}, {'school': 'lsu', 'year': '2016', 'playerName': 'Caleb Roddy', 'highSchool': 'Denham Springs', 'city': 'Denham Springs', 'state': 'LA', 'position': 'SDE', 'height': 76.5, 'weight': '275', 'compRating': '0.8835', 'compStars': 3, 'nationalRank': '371', 'positionRank': '17', 'stateRank': '24', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '15', '247stateRank': '18'}, {'school': 'lsu', 'year': '2016', 'playerName': 'Travonte Valentine', 'highSchool': 'Mississippi Gulf Coast C.C.', 'city': 'Perkinston', 'state': 'MS', 'position': 'DT', 'height': 74.0, 'weight': '315', 'compRating': '0.8745', 'compStars': 3, 'nationalRank': '40', 'positionRank': '6', 'stateRank': '7'}, {'school': 'lsu', 'year': '2016', 'playerName': 'Sci Martin', 'highSchool': 'McDonogh 35', 'city': 'New Orleans', 'state': 'LA', 'position': 'WDE', 'height': 76.0, 'weight': '230', 'compRating': '0.8659', 'compStars': 3, 'nationalRank': '542', 'positionRank': '33', 'stateRank': '28', '247Rating': ' 85 ', '247Stars': 3, '247nationalRank': '95', '247positionRank': '8', '247stateRank': '19'}, {'school': 'lsu', 'year': '2016', 'playerName': 'Lindsey Scott', 'highSchool': 'Zachary', 'city': 'Zachary', 'state': 'LA', 'position': 'DUAL', 'height': 71.0, 'weight': '205', 'compRating': '0.8410', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '26', 'stateRank': '54', '247Rating': ' 87 ', '247Stars': 3, '247nationalRank': '48', '247positionRank': '1', '247stateRank': '12'}, {'school': 'lsu', 'year': '2016', 'playerName': 'Jakori Savage', 'highSchool': 'Baldwin County', 'city': 'Bay Minette', 'state': 'AL', 'position': 'OT', 'height': 78.0, 'weight': '300', 'compRating': '0.8400', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '92', 'stateRank': '38', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '86', '247stateRank': '32'}, {'school': 'lsu', 'year': '2016', 'playerName': 'Layton Garnett', 'highSchool': 'West Monroe', 'city': 'West Monroe', 'state': 'LA', 'position': 'ILB', 'height': 75.0, 'weight': '250', 'compRating': '0.8399', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '43', 'stateRank': '57', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '52', '247stateRank': '59'}, {'school': 'lsu', 'year': '2016', 'playerName': 'Lloyd Cushenberry', 'highSchool': 'Dutchtown', 'city': 'Geismar', 'state': 'LA', 'position': 'OG', 'height': 75.0, 'weight': '310', 'compRating': '0.8238', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '82', 'stateRank': '71', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '80', '247stateRank': '74'}, {'school': 'lsu', 'year': '2016', 'playerName': 'Connor Culp', 'highSchool': 'Desert Vista', 'city': 'Phoenix', 'state': 'AZ', 'position': 'K', 'height': 70.5, 'weight': '185', 'compRating': '0.8195', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '12', 'stateRank': '16', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '7', '247stateRank': '17'}, {'school': 'lsu', 'year': '2016', 'playerName': 'Leon Pinto', 'highSchool': 'Lamar', 'city': 'Houston', 'state': 'TX', 'position': 'OG', 'height': 75.0, 'weight': '290', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2006', 'playerName': 'Clarence Bailey', 'highSchool': 'Trenton Central', 'city': 'Trenton', 'state': 'NJ', 'position': 'OT', 'height': 78.0, 'weight': '308', 'compRating': '0.9333', 'compStars': 4, 'nationalRank': '130', 'positionRank': '8', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2006', 'playerName': 'Garrett Anderson', 'highSchool': 'Dutch Fork', 'city': 'Irmo', 'state': 'SC', 'position': 'OG', 'height': 76.0, 'weight': '270', 'compRating': '0.9222', 'compStars': 4, 'nationalRank': '167', 'positionRank': '9', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2006', 'playerName': 'Chris Smelley', 'highSchool': 'American Christian', 'city': 'Tuscaloosa', 'state': 'AL', 'position': 'PRO', 'height': 75.0, 'weight': '213', 'compRating': '0.8844', 'compStars': 3, 'nationalRank': '265', 'positionRank': '11', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2006', 'playerName': 'Clark Gaston', 'highSchool': 'Ooltewah', 'city': 'Ooltewah', 'state': 'TN', 'position': 'FB', 'height': 75.0, 'weight': '238', 'compRating': '0.8573', 'compStars': 3, 'nationalRank': '483', 'positionRank': '10', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2006', 'playerName': 'Seaver Brown', 'highSchool': 'Clearwater', 'city': 'Clearwater', 'state': 'FL', 'position': 'OG', 'height': 77.0, 'weight': '306', 'compRating': '0.8559', 'compStars': 3, 'nationalRank': '490', 'positionRank': '30', 'stateRank': '67'}, {'school': 'south-carolina', 'year': '2006', 'playerName': 'Moe Brown', 'highSchool': 'New Covenant Presbyterian School', 'city': 'Anderson', 'state': 'SC', 'position': 'WR', 'height': 72.0, 'weight': '170', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '525', 'positionRank': '65', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2006', 'playerName': 'Darian Stewart', 'highSchool': 'Lee', 'city': 'Huntsville', 'state': 'AL', 'position': 'S', 'height': 72.0, 'weight': '215', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '529', 'positionRank': '40', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2006', 'playerName': 'Vandaral Shackleford', 'highSchool': 'Charles Drew', 'city': 'Riverdale', 'state': 'GA', 'position': 'OLB', 'height': 72.0, 'weight': '191', 'compRating': '0.8528', 'compStars': 3, 'nationalRank': '560', 'positionRank': '31', 'stateRank': '27', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2006', 'playerName': 'Nick Prochak', 'highSchool': 'Spartanburg', 'city': 'Spartanburg', 'state': 'SC', 'position': 'ATH', 'height': 76.0, 'weight': '207', 'compRating': '0.8448', 'compStars': 3, 'nationalRank': '636', 'positionRank': '55', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2006', 'playerName': 'Joel Reaves', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'DT', 'height': 75.0, 'weight': '270', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '71', 'positionRank': '10', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2006', 'playerName': 'Captain Munnerlyn', 'highSchool': 'Murphy', 'city': 'Mobile', 'state': 'AL', 'position': 'CB', 'height': 69.0, 'weight': '175', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '78', 'stateRank': '40', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2006', 'playerName': 'Pierre Andrews', 'highSchool': 'North Carolina Tech', 'city': 'Charlotte', 'state': 'NC', 'position': 'OG', 'height': 75.0, 'weight': '286', 'compRating': '0.8101', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '85', 'stateRank': '35', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2006', 'playerName': 'Chris Hail', 'highSchool': 'Lovejoy', 'city': 'Hampton', 'state': 'GA', 'position': 'WR', 'height': 71.0, 'weight': '175', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '161', 'stateRank': '79', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2006', 'playerName': 'Spencer Lanning', 'highSchool': 'York Comprehensive', 'city': 'York', 'state': 'SC', 'position': 'K', 'height': '0.0', 'weight': '0', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2006', 'playerName': 'Rodney Paulk', 'highSchool': 'Richland Northeast', 'city': 'Columbia', 'state': 'SC', 'position': 'ILB', 'height': 72.0, 'weight': '225', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2006', 'playerName': 'Hutch Eckerson', 'highSchool': 'Lumberton Senior', 'city': 'Lumberton', 'state': 'NC', 'position': 'OT', 'height': 76.0, 'weight': '281', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2006', 'playerName': 'Eric Norwood', 'highSchool': 'North Cobb', 'city': 'Kennesaw', 'state': 'GA', 'position': 'WDE', 'height': 72.0, 'weight': '240', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2006', 'playerName': 'Jasper Brinkley', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'ILB', 'height': 74.0, 'weight': '250', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2006', 'playerName': 'Casper Brinkley', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'SDE', 'height': 75.0, 'weight': '250', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2006', 'playerName': 'Emanuel Cook', 'highSchool': 'Palm Beach Gardens', 'city': 'Palm Beach Gardens', 'state': 'FL', 'position': 'S', 'height': 69.0, 'weight': '200', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2006', 'playerName': 'Terrence Campbell', 'highSchool': 'South Cobb', 'city': 'Avondale Estates', 'state': 'GA', 'position': 'OG', 'height': 75.0, 'weight': '305', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2006', 'playerName': 'Kevin Young', 'highSchool': 'Clearwater Central Catholic', 'city': 'Clearwater', 'state': 'FL', 'position': 'OG', 'height': 77.0, 'weight': '317', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2006', 'playerName': 'Kenrick Ellis', 'highSchool': 'John I. Leonard', 'city': 'Lake Worth', 'state': 'FL', 'position': 'DT', 'height': 77.0, 'weight': '320', 'compRating': '0.9372', 'compStars': 4, 'nationalRank': '120', 'positionRank': '8', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2006', 'playerName': 'Heath Batchelor', 'highSchool': 'Haleyville Sch', 'city': 'Haleyville', 'state': 'AL', 'position': 'OT', 'height': 79.0, 'weight': '285', 'compRating': '0.8323', 'compStars': 3, 'nationalRank': '874', 'positionRank': '56', 'stateRank': '32'}, {'school': 'south-carolina', 'year': '2006', 'playerName': 'Ryan Broadhead', 'highSchool': 'Lee County', 'city': 'Leesburg', 'state': 'GA', 'position': 'OC', 'height': 77.0, 'weight': '264', 'compRating': '0.8007', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '3', 'stateRank': '63', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2007', 'playerName': 'James Wilson', 'highSchool': 'Nease', 'city': 'Ponte Vedra Beach', 'state': 'FL', 'position': 'OT', 'height': 76.0, 'weight': '325', 'compRating': '0.9896', 'compStars': 5, 'nationalRank': '18', 'positionRank': '2', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2007', 'playerName': 'Deonte Thompson', 'highSchool': 'Glades Central', 'city': 'Belle Glade', 'state': 'FL', 'position': 'WR', 'height': 71.0, 'weight': '200', 'compRating': '0.9872', 'compStars': 5, 'nationalRank': '23', 'positionRank': '3', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2007', 'playerName': 'Cam Newton', 'highSchool': 'Westlake', 'city': 'Atlanta', 'state': 'GA', 'position': 'DUAL', 'height': 77.0, 'weight': '235', 'compRating': '0.9850', 'compStars': 5, 'nationalRank': '26', 'positionRank': '2', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2007', 'playerName': 'John Brantley', 'highSchool': 'Trinity Catholic', 'city': 'Ocala', 'state': 'FL', 'position': 'PRO', 'height': 75.0, 'weight': '220', 'compRating': '0.9842', 'compStars': 5, 'nationalRank': '30', 'positionRank': '4', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2007', 'playerName': 'Aaron Hernandez', 'highSchool': 'Bristol Central', 'city': 'Bristol', 'state': 'CT', 'position': 'TE', 'height': 76.0, 'weight': '235', 'compRating': '0.9814', 'compStars': 4, 'nationalRank': '35', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2007', 'playerName': 'Major Wright', 'highSchool': 'St. Thomas Aquinas', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'S', 'height': 73.0, 'weight': '200', 'compRating': '0.9788', 'compStars': 4, 'nationalRank': '43', 'positionRank': '4', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2007', 'playerName': 'Chris Rainey', 'highSchool': 'Lakeland', 'city': 'Lakeland', 'state': 'FL', 'position': 'RB', 'height': 69.0, 'weight': '183', 'compRating': '0.9787', 'compStars': 4, 'nationalRank': '45', 'positionRank': '5', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2007', 'playerName': 'Jerimy Finch', 'highSchool': 'Warren Central', 'city': 'Indianapolis', 'state': 'IN', 'position': 'S', 'height': 74.0, 'weight': '205', 'compRating': '0.9782', 'compStars': 4, 'nationalRank': '49', 'positionRank': '5', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2007', 'playerName': 'John Brown', 'highSchool': 'Lakeland', 'city': 'Lakeland', 'state': 'FL', 'position': 'DT', 'height': 74.0, 'weight': '285', 'compRating': '0.9652', 'compStars': 4, 'nationalRank': '73', 'positionRank': '6', 'stateRank': '9'}, {'school': 'florida', 'year': '2007', 'playerName': 'Justin Trattou', 'highSchool': 'Don Bosco Prep', 'city': 'Ramsey', 'state': 'NJ', 'position': 'WDE', 'height': 76.0, 'weight': '255', 'compRating': '0.9468', 'compStars': 4, 'nationalRank': '97', 'positionRank': '4', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2007', 'playerName': 'Jaye Howard', 'highSchool': 'Jones', 'city': 'Orlando', 'state': 'FL', 'position': 'DT', 'height': 75.0, 'weight': '295', 'compRating': '0.9375', 'compStars': 4, 'nationalRank': '118', 'positionRank': '13', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2007', 'playerName': 'Bo Williams', 'highSchool': 'Northeast', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'RB', 'height': 73.0, 'weight': '205', 'compRating': '0.9324', 'compStars': 4, 'nationalRank': '132', 'positionRank': '16', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2007', 'playerName': 'Joe Haden', 'highSchool': 'Friendly', 'city': 'Fort Washington', 'state': 'MD', 'position': 'ATH', 'height': 71.0, 'weight': '190', 'compRating': '0.9290', 'compStars': 4, 'nationalRank': '142', 'positionRank': '5', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2007', 'playerName': 'Lorenzo Edwards', 'highSchool': 'Edgewater', 'city': 'Orlando', 'state': 'FL', 'position': 'OLB', 'height': 73.0, 'weight': '220', 'compRating': '0.9272', 'compStars': 4, 'nationalRank': '145', 'positionRank': '7', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2007', 'playerName': 'Brandon Hicks', 'highSchool': 'Forrest', 'city': 'Jacksonville', 'state': 'FL', 'position': 'OLB', 'height': 74.0, 'weight': '228', 'compRating': '0.8986', 'compStars': 4, 'nationalRank': '201', 'positionRank': '10', 'stateRank': '29', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2007', 'playerName': 'Maurkice Pouncey', 'highSchool': 'Lakeland', 'city': 'Lakeland', 'state': 'FL', 'position': 'OG', 'height': 76.0, 'weight': '287', 'compRating': '0.8906', 'compStars': 4, 'nationalRank': '227', 'positionRank': '12', 'stateRank': '35', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2007', 'playerName': 'Bryan Waggener', 'highSchool': 'Citrus College', 'city': 'Glendora', 'state': 'CA', 'position': 'PRO', 'height': 76.0, 'weight': '230', 'compRating': '0.8889', 'compStars': 3, 'nationalRank': '34', 'positionRank': '1', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2007', 'playerName': 'Mike Pouncey', 'highSchool': 'Lakeland', 'city': 'Lakeland', 'state': 'FL', 'position': 'OG', 'height': 76.0, 'weight': '280', 'compRating': '0.8844', 'compStars': 3, 'nationalRank': '279', 'positionRank': '15', 'stateRank': '41', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2007', 'playerName': 'Jerry Howard', 'highSchool': 'Jones', 'city': 'Orlando', 'state': 'FL', 'position': 'WDE', 'height': 76.0, 'weight': '240', 'compRating': '0.8757', 'compStars': 3, 'nationalRank': '355', 'positionRank': '16', 'stateRank': '48', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2007', 'playerName': 'John Jones', 'highSchool': 'Booker', 'city': 'Sarasota', 'state': 'FL', 'position': 'OLB', 'height': 75.0, 'weight': '210', 'compRating': '0.8701', 'compStars': 3, 'nationalRank': '400', 'positionRank': '23', 'stateRank': '53', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2007', 'playerName': 'Paul Wilson', 'highSchool': 'Lakeland', 'city': 'Lakeland', 'state': 'FL', 'position': 'WR', 'height': 73.0, 'weight': '175', 'compRating': '0.8403', 'compStars': 3, 'nationalRank': '750', 'positionRank': '87', 'stateRank': '92', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2007', 'playerName': 'Steve Wilks', 'highSchool': 'Lakeland', 'city': 'Lakeland', 'state': 'FL', 'position': 'S', 'height': 74.0, 'weight': '195', 'compRating': '0.8306', 'compStars': 3, 'nationalRank': '976', 'positionRank': '66', 'stateRank': '108', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2007', 'playerName': 'Steven Wilks', 'highSchool': 'Lakeland', 'city': 'Lakeland', 'state': 'FL', 'position': 'FB', 'height': 74.0, 'weight': '235', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2007', 'playerName': 'Chas Henry', 'highSchool': 'East Paulding', 'city': 'Dallas', 'state': 'GA', 'position': 'P', 'height': 75.0, 'weight': '215', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2007', 'playerName': 'Ahmad Black', 'highSchool': 'Lakeland', 'city': 'Lakeland', 'state': 'FL', 'position': 'S', 'height': 69.0, 'weight': '190', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2007', 'playerName': 'Duke Lemmens', 'highSchool': 'Oaks Christian', 'city': 'Westlake Village', 'state': 'CA', 'position': 'WDE', 'height': 75.0, 'weight': '250', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2007', 'playerName': 'Moses Jenkins', 'highSchool': 'Boyd Anderson', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'CB', 'height': 75.0, 'weight': '190', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2007', 'playerName': 'Carlos Dunlap', 'highSchool': 'Fort Dorchester', 'city': 'North Charleston', 'state': 'SC', 'position': 'SDE', 'height': 79.0, 'weight': '260', 'compRating': '0.9935', 'compStars': 5, 'nationalRank': '14', 'positionRank': '2', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2007', 'playerName': 'Torrey Davis', 'highSchool': 'Armwood', 'city': 'Seffner', 'state': 'FL', 'position': 'DT', 'height': 76.0, 'weight': '285', 'compRating': '0.9878', 'compStars': 5, 'nationalRank': '20', 'positionRank': '2', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2012', 'playerName': 'Trey Williams', 'highSchool': 'Dekaney', 'city': 'Houston', 'state': 'TX', 'position': 'APB', 'height': 68.0, 'weight': '175', 'compRating': '0.9901', 'compStars': 5, 'nationalRank': '18', 'positionRank': '2', 'stateRank': '4'}, {'school': 'texas-am', 'year': '2012', 'playerName': 'Thomas Johnson', 'highSchool': 'Skyline', 'city': 'Dallas', 'state': 'TX', 'position': 'WR', 'height': 71.0, 'weight': '175', 'compRating': '0.9845', 'compStars': 5, 'nationalRank': '33', 'positionRank': '3', 'stateRank': '5', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '44', '247positionRank': '5', '247stateRank': '6'}, {'school': 'texas-am', 'year': '2012', 'playerName': "De'Vante Harris", 'highSchool': 'Horn', 'city': 'Mesquite', 'state': 'TX', 'position': 'CB', 'height': 71.0, 'weight': '170', 'compRating': '0.9564', 'compStars': 4, 'nationalRank': '102', 'positionRank': '6', 'stateRank': '13', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '94', '247positionRank': '9', '247stateRank': '12'}, {'school': 'texas-am', 'year': '2012', 'playerName': 'Matt Davis', 'highSchool': 'Klein Forest', 'city': 'Houston', 'state': 'TX', 'position': 'DUAL', 'height': 74.0, 'weight': '211', 'compRating': '0.9494', 'compStars': 4, 'nationalRank': '123', 'positionRank': '4', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2012', 'playerName': 'Mike Matthews', 'highSchool': 'Elkins', 'city': 'Missouri City', 'state': 'TX', 'position': 'OC', 'height': 75.0, 'weight': '265', 'compRating': '0.9121', 'compStars': 4, 'nationalRank': '259', 'positionRank': '2', 'stateRank': '35', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '201', '247positionRank': '1', '247stateRank': '26'}, {'school': 'texas-am', 'year': '2012', 'playerName': 'Germain Ifedi', 'highSchool': 'Westside', 'city': 'Houston', 'state': 'TX', 'position': 'OG', 'height': 78.0, 'weight': '305', 'compRating': '0.9101', 'compStars': 4, 'nationalRank': '268', 'positionRank': '13', 'stateRank': '39', '247Rating': ' 92 ', '247Stars': 4, '247positionRank': '14', '247stateRank': '34'}, {'school': 'texas-am', 'year': '2012', 'playerName': 'Edward Pope', 'highSchool': 'Carthage', 'city': 'Carthage', 'state': 'TX', 'position': 'ATH', 'height': 75.0, 'weight': '175', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '316', 'positionRank': '22', 'stateRank': '50', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '221', '247positionRank': '16', '247stateRank': '29'}, {'school': 'texas-am', 'year': '2012', 'playerName': 'Jordan Richmond', 'highSchool': 'Ryan', 'city': 'Denton', 'state': 'TX', 'position': 'OLB', 'height': 75.0, 'weight': '225', 'compRating': '0.8998', 'compStars': 4, 'nationalRank': '318', 'positionRank': '32', 'stateRank': '52', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '38', '247stateRank': '50'}, {'school': 'texas-am', 'year': '2012', 'playerName': 'Kenneth Marshall', 'highSchool': 'South Houston', 'city': 'South Houston', 'state': 'TX', 'position': 'S', 'height': 72.0, 'weight': '200', 'compRating': '0.9010', 'compStars': 4, 'nationalRank': '307', 'positionRank': '19', 'stateRank': '47', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '19', '247stateRank': '45'}, {'school': 'texas-am', 'year': '2012', 'playerName': 'Polo Manukainiu', 'highSchool': 'Trinity', 'city': 'Euless', 'state': 'TX', 'position': 'SDE', 'height': 77.0, 'weight': '263', 'compRating': '0.8901', 'compStars': 4, 'nationalRank': '379', 'positionRank': '24', 'stateRank': '59', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '16', '247stateRank': '35'}, {'school': 'texas-am', 'year': '2012', 'playerName': 'Michael Richardson', 'highSchool': 'DeSoto', 'city': 'DeSoto', 'state': 'TX', 'position': 'WDE', 'height': 75.0, 'weight': '230', 'compRating': '0.8886', 'compStars': 3, 'nationalRank': '395', 'positionRank': '26', 'stateRank': '60', '247Rating': ' 92 ', '247Stars': 4, '247positionRank': '16', '247stateRank': '33'}, {'school': 'texas-am', 'year': '2012', 'playerName': 'Kimo Tipoti', 'highSchool': 'Bell', 'city': 'Hurst', 'state': 'TX', 'position': 'OT', 'height': 76.0, 'weight': '314', 'compRating': '0.8843', 'compStars': 3, 'nationalRank': '425', 'positionRank': '44', 'stateRank': '65', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '37', '247stateRank': '57'}, {'school': 'texas-am', 'year': '2012', 'playerName': 'Tyrone Taylor', 'highSchool': 'Galena Park', 'city': 'Galena Park', 'state': 'TX', 'position': 'WDE', 'height': 77.0, 'weight': '225', 'compRating': '0.8827', 'compStars': 3, 'nationalRank': '450', 'positionRank': '29', 'stateRank': '68', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '21', '247stateRank': '44'}, {'school': 'texas-am', 'year': '2012', 'playerName': 'Tramain Jacobs', 'highSchool': 'Mississippi Gulf Coast C.C.', 'city': 'Perkinston', 'state': 'MS', 'position': 'CB', 'height': 72.0, 'weight': '188', 'compRating': '0.8771', 'compStars': 3, 'nationalRank': '21', 'positionRank': '5', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2012', 'playerName': 'Julien Obioha', 'highSchool': 'Brother Martin', 'city': 'New Orleans', 'state': 'LA', 'position': 'SDE', 'height': 75.0, 'weight': '255', 'compRating': '0.8755', 'compStars': 3, 'nationalRank': '554', 'positionRank': '28', 'stateRank': '23', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '26', '247stateRank': '20'}, {'school': 'texas-am', 'year': '2012', 'playerName': 'Alonzo Williams', 'highSchool': 'Long Beach Poly', 'city': 'Long Beach', 'state': 'CA', 'position': 'TE', 'height': 77.0, 'weight': '240', 'compRating': '0.8694', 'compStars': 3, 'nationalRank': '636', 'positionRank': '27', 'stateRank': '68', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '21', '247stateRank': '64'}, {'school': 'texas-am', 'year': '2012', 'playerName': 'Sabian Holmes', 'highSchool': 'Southlake Carroll', 'city': 'Southlake', 'state': 'TX', 'position': 'CB', 'height': 70.0, 'weight': '165', 'compRating': '0.8438', 'compStars': 3, 'nationalRank': '963', 'positionRank': '66', 'stateRank': '166', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '65', '247stateRank': '145'}, {'school': 'texas-am', 'year': '2012', 'playerName': 'Derel Walker', 'highSchool': 'Trinity Valley C.C.', 'city': 'Athens', 'state': 'TX', 'position': 'WR', 'height': 74.0, 'weight': '175', 'compRating': '0.8115', 'compStars': 3, 'nationalRank': '114', 'positionRank': '12', 'stateRank': '14', '247Rating': ' 79 ', '247Stars': 2, '247nationalRank': '133', '247positionRank': '15', '247stateRank': '18'}, {'school': 'texas-am', 'year': '2012', 'playerName': 'Edmund Ray', 'highSchool': 'Ritenour', 'city': 'Saint Louis', 'state': 'MO', 'position': 'DT', 'height': 77.0, 'weight': '290', 'compRating': '0.8715', 'compStars': 3, 'nationalRank': '603', 'positionRank': '46', 'stateRank': '11'}, {'school': 'alabama', 'year': '2012', 'playerName': 'Landon Collins', 'highSchool': 'Dutchtown', 'city': 'Geismar', 'state': 'LA', 'position': 'S', 'height': 72.0, 'weight': '210', 'compRating': '0.9971', 'compStars': 5, 'nationalRank': '7', 'positionRank': '2', 'stateRank': '1', '247Rating': ' 100 ', '247Stars': 5, '247nationalRank': '3', '247positionRank': '1', '247stateRank': '1'}, {'school': 'alabama', 'year': '2012', 'playerName': 'Eddie Williams', 'highSchool': 'Arnold', 'city': 'Panama City Beach', 'state': 'FL', 'position': 'ATH', 'height': 74.5, 'weight': '196', 'compRating': '0.9910', 'compStars': 5, 'nationalRank': '17', 'positionRank': '2', 'stateRank': '2', '247Rating': ' 99 ', '247Stars': 5, '247nationalRank': '8', '247positionRank': '2', '247stateRank': '1'}, {'school': 'alabama', 'year': '2012', 'playerName': 'T.J. Yeldon', 'highSchool': 'Daphne', 'city': 'Daphne', 'state': 'AL', 'position': 'RB', 'height': 74.0, 'weight': '205', 'compRating': '0.9876', 'compStars': 5, 'nationalRank': '27', 'positionRank': '2', 'stateRank': '2', '247Rating': ' 99 ', '247Stars': 5, '247nationalRank': '13', '247positionRank': '2', '247stateRank': '1'}, {'school': 'alabama', 'year': '2012', 'playerName': 'Reggie Ragland', 'highSchool': 'Bob Jones', 'city': 'Madison', 'state': 'AL', 'position': 'ILB', 'height': 75.0, 'weight': '245', 'compRating': '0.9809', 'compStars': 4, 'nationalRank': '40', 'positionRank': '1', 'stateRank': '4', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '39', '247positionRank': '2', '247stateRank': '4'}, {'school': 'alabama', 'year': '2012', 'playerName': 'Cyrus Jones', 'highSchool': 'Gilman', 'city': 'Baltimore', 'state': 'MD', 'position': 'ATH', 'height': 70.0, 'weight': '195', 'compRating': '0.9788', 'compStars': 4, 'nationalRank': '44', 'positionRank': '6', 'stateRank': '3', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '75', '247positionRank': '6', '247stateRank': '3'}, {'school': 'alabama', 'year': '2012', 'playerName': 'Amari Cooper', 'highSchool': 'Northwestern', 'city': 'Miami', 'state': 'FL', 'position': 'WR', 'height': 73.0, 'weight': '183', 'compRating': '0.9776', 'compStars': 4, 'nationalRank': '45', 'positionRank': '5', 'stateRank': '8', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '55', '247positionRank': '6', '247stateRank': '10'}, {'school': 'alabama', 'year': '2012', 'playerName': 'Chris Black', 'highSchool': 'First Coast', 'city': 'Jacksonville', 'state': 'FL', 'position': 'WR', 'height': 71.0, 'weight': '175', 'compRating': '0.9772', 'compStars': 4, 'nationalRank': '48', 'positionRank': '6', 'stateRank': '9', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '42', '247positionRank': '4', '247stateRank': '8'}, {'school': 'alabama', 'year': '2012', 'playerName': 'Geno Smith', 'highSchool': 'St. Pius X', 'city': 'Atlanta', 'state': 'GA', 'position': 'CB', 'height': 71.5, 'weight': '185', 'compRating': '0.9722', 'compStars': 4, 'nationalRank': '61', 'positionRank': '4', 'stateRank': '5', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '65', '247positionRank': '6', '247stateRank': '5'}, {'school': 'alabama', 'year': '2012', 'playerName': 'Ryan Anderson', 'highSchool': 'Daphne', 'city': 'Daphne', 'state': 'AL', 'position': 'OLB', 'height': 75.0, 'weight': '250', 'compRating': '0.9663', 'compStars': 4, 'nationalRank': '75', 'positionRank': '6', 'stateRank': '5', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '19', '247positionRank': '1', '247stateRank': '2'}, {'school': 'alabama', 'year': '2012', 'playerName': 'Dillon Lee', 'highSchool': 'Buford', 'city': 'Buford', 'state': 'GA', 'position': 'OLB', 'height': 76.0, 'weight': '235', 'compRating': '0.9556', 'compStars': 4, 'nationalRank': '104', 'positionRank': '9', 'stateRank': '9'}, {'school': 'alabama', 'year': '2012', 'playerName': 'Tyler Hayes', 'highSchool': 'Thomasville', 'city': 'Thomasville', 'state': 'AL', 'position': 'OLB', 'height': 75.0, 'weight': '215', 'compRating': '0.9527', 'compStars': 4, 'nationalRank': '112', 'positionRank': '11', 'stateRank': '7'}, {'school': 'alabama', 'year': '2012', 'playerName': 'Kenyan Drake', 'highSchool': 'Hillgrove', 'city': 'Powder Springs', 'state': 'GA', 'position': 'APB', 'height': 73.0, 'weight': '187', 'compRating': '0.9477', 'compStars': 4, 'nationalRank': '128', 'positionRank': '5', 'stateRank': '10', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '88', '247positionRank': '4', '247stateRank': '7'}, {'school': 'alabama', 'year': '2012', 'playerName': 'Brandon Greene', 'highSchool': 'Cedar Grove', 'city': 'Ellenwood', 'state': 'GA', 'position': 'OT', 'height': 77.0, 'weight': '297', 'compRating': '0.9472', 'compStars': 4, 'nationalRank': '130', 'positionRank': '13', 'stateRank': '11', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '141', '247positionRank': '14', '247stateRank': '12'}, {'school': 'alabama', 'year': '2012', 'playerName': 'Denzel Devall', 'highSchool': 'Bastrop', 'city': 'Bastrop', 'state': 'LA', 'position': 'ILB', 'height': 74.0, 'weight': '240', 'compRating': '0.9450', 'compStars': 4, 'nationalRank': '134', 'positionRank': '6', 'stateRank': '3', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '111', '247positionRank': '5', '247stateRank': '3'}, {'school': 'alabama', 'year': '2012', 'playerName': 'Korren Kirven', 'highSchool': 'Brookville', 'city': 'Lynchburg', 'state': 'VA', 'position': 'DT', 'height': 76.0, 'weight': '280', 'compRating': '0.9341', 'compStars': 4, 'nationalRank': '168', 'positionRank': '16', 'stateRank': '5', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '189', '247positionRank': '15', '247stateRank': '6'}, {'school': 'alabama', 'year': '2012', 'playerName': 'Travell Dixon', 'highSchool': 'Eastern Arizona College', 'city': 'Thatcher', 'state': 'AZ', 'position': 'CB', 'height': 74.0, 'weight': '200', 'compRating': '0.9282', 'compStars': 4, 'nationalRank': '5', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '8', '247positionRank': '2', '247stateRank': '1'}, {'school': 'alabama', 'year': '2012', 'playerName': 'Dalvin Tomlinson', 'highSchool': 'Henry County', 'city': 'McDonough', 'state': 'GA', 'position': 'DT', 'height': 75.0, 'weight': '270', 'compRating': '0.9237', 'compStars': 4, 'nationalRank': '208', 'positionRank': '19', 'stateRank': '16', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '247', '247positionRank': '22', '247stateRank': '21'}, {'school': 'alabama', 'year': '2012', 'playerName': 'Alphonse Taylor', 'highSchool': 'WP Davidson', 'city': 'Mobile', 'state': 'AL', 'position': 'OT', 'height': 77.0, 'weight': '330', 'compRating': '0.9133', 'compStars': 4, 'nationalRank': '255', 'positionRank': '28', 'stateRank': '13', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '33', '247stateRank': '13'}, {'school': 'alabama', 'year': '2012', 'playerName': 'Dakota Ball', 'highSchool': 'Pepperell', 'city': 'Lindale', 'state': 'GA', 'position': 'DT', 'height': 74.0, 'weight': '293', 'compRating': '0.8830', 'compStars': 3, 'nationalRank': '442', 'positionRank': '30', 'stateRank': '34', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '36', '247stateRank': '34'}, {'school': 'alabama', 'year': '2012', 'playerName': 'Deion Belue', 'highSchool': 'Northeast Mississippi C.C.', 'city': 'Booneville', 'state': 'MS', 'position': 'CB', 'height': 72.0, 'weight': '180', 'compRating': '0.8797', 'compStars': 3, 'nationalRank': '19', 'positionRank': '4', 'stateRank': '6', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '7', '247positionRank': '1', '247stateRank': '3'}, {'school': 'alabama', 'year': '2012', 'playerName': 'Kurt Freitag', 'highSchool': 'Buford', 'city': 'Buford', 'state': 'GA', 'position': 'TE', 'height': 76.0, 'weight': '245', 'compRating': '0.8792', 'compStars': 3, 'nationalRank': '492', 'positionRank': '18', 'stateRank': '40', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '24', '247stateRank': '42'}, {'school': 'alabama', 'year': '2012', 'playerName': 'Alec Morris', 'highSchool': 'Allen', 'city': 'Allen', 'state': 'TX', 'position': 'PRO', 'height': 76.0, 'weight': '235', 'compRating': '0.8734', 'compStars': 3, 'nationalRank': '579', 'positionRank': '25', 'stateRank': '91', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '25', '247stateRank': '85'}, {'school': 'alabama', 'year': '2012', 'playerName': 'Darren Lake', 'highSchool': 'Sumter Co Sch', 'city': 'York', 'state': 'AL', 'position': 'DT', 'height': 76.0, 'weight': '320', 'compRating': '0.8727', 'compStars': 3, 'nationalRank': '587', 'positionRank': '43', 'stateRank': '20', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '38', '247stateRank': '17'}, {'school': 'alabama', 'year': '2012', 'playerName': 'Caleb Gulledge', 'highSchool': 'Prattville', 'city': 'Prattville', 'state': 'AL', 'position': 'OT', 'height': 77.0, 'weight': '275', 'compRating': '0.8690', 'compStars': 3, 'nationalRank': '643', 'positionRank': '60', 'stateRank': '21', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '61', '247stateRank': '23'}, {'school': 'alabama', 'year': '2012', 'playerName': 'Adam Griffith', 'highSchool': 'Calhoun', 'city': 'Calhoun', 'state': 'GA', 'position': 'K', 'height': 71.0, 'weight': '180', 'compRating': '0.8661', 'compStars': 3, 'nationalRank': '678', 'positionRank': '1', 'stateRank': '53', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '1', '247stateRank': '49'}, {'school': 'alabama', 'year': '2012', 'playerName': 'Brandon Hill', 'highSchool': "St. George's Independent School", 'city': 'Collierville', 'state': 'TN', 'position': 'OT', 'height': 78.0, 'weight': '353', 'compRating': '0.8789', 'compStars': 3, 'nationalRank': '496', 'positionRank': '52', 'stateRank': '10'}, {'school': 'vanderbilt', 'year': '2012', 'playerName': 'Brian Kimbrow', 'highSchool': 'East', 'city': 'Memphis', 'state': 'TN', 'position': 'APB', 'height': 69.0, 'weight': '165', 'compRating': '0.9201', 'compStars': 4, 'nationalRank': '225', 'positionRank': '8', 'stateRank': '3', '247Rating': ' 92 ', '247Stars': 4, '247positionRank': '8', '247stateRank': '5'}, {'school': 'vanderbilt', 'year': '2012', 'playerName': 'Andrew Jelks', 'highSchool': 'Henry County', 'city': 'Paris', 'state': 'TN', 'position': 'OT', 'height': 78.0, 'weight': '265', 'compRating': '0.8884', 'compStars': 3, 'nationalRank': '396', 'positionRank': '41', 'stateRank': '8', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '41', '247stateRank': '7'}, {'school': 'vanderbilt', 'year': '2012', 'playerName': 'Caleb Azubike', 'highSchool': 'McGavock', 'city': 'Nashville', 'state': 'TN', 'position': 'WDE', 'height': 76.0, 'weight': '230', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '517', 'positionRank': '33', 'stateRank': '11', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '39', '247stateRank': '15'}, {'school': 'vanderbilt', 'year': '2012', 'playerName': 'Jacob Sealand', 'highSchool': 'Tucker', 'city': 'Tucker', 'state': 'GA', 'position': 'ILB', 'height': 74.0, 'weight': '210', 'compRating': '0.8766', 'compStars': 3, 'nationalRank': '534', 'positionRank': '23', 'stateRank': '44', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '26', '247stateRank': '56'}, {'school': 'vanderbilt', 'year': '2012', 'playerName': 'Patton Robinette', 'highSchool': 'Maryville', 'city': 'Maryville', 'state': 'TN', 'position': 'DUAL', 'height': 77.0, 'weight': '200', 'compRating': '0.8746', 'compStars': 3, 'nationalRank': '563', 'positionRank': '13', 'stateRank': '13', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '10', '247stateRank': '10'}, {'school': 'vanderbilt', 'year': '2012', 'playerName': 'Adam Butler', 'highSchool': 'Duncanville', 'city': 'Duncanville', 'state': 'TX', 'position': 'OG', 'height': 76.0, 'weight': '279', 'compRating': '0.8717', 'compStars': 3, 'nationalRank': '599', 'positionRank': '31', 'stateRank': '97', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '45', '247stateRank': '150'}, {'school': 'vanderbilt', 'year': '2012', 'playerName': 'Brandon Banks', 'highSchool': 'Gwynn Park', 'city': 'Brandywine', 'state': 'MD', 'position': 'CB', 'height': 71.0, 'weight': '170', 'compRating': '0.8642', 'compStars': 3, 'nationalRank': '706', 'positionRank': '48', 'stateRank': '16', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '33', '247stateRank': '14'}, {'school': 'vanderbilt', 'year': '2012', 'playerName': 'Cory Batey', 'highSchool': 'Ensworth', 'city': 'Nashville', 'state': 'TN', 'position': 'WR', 'height': 73.0, 'weight': '185', 'compRating': '0.8639', 'compStars': 3, 'nationalRank': '708', 'positionRank': '82', 'stateRank': '18', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '87', '247stateRank': '12'}, {'school': 'vanderbilt', 'year': '2012', 'playerName': 'Barrett Gouger', 'highSchool': 'Baylor School', 'city': 'Chattanooga', 'state': 'TN', 'position': 'OG', 'height': 76.5, 'weight': '275', 'compRating': '0.8621', 'compStars': 3, 'nationalRank': '725', 'positionRank': '40', 'stateRank': '19', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '47', '247stateRank': '23'}, {'school': 'vanderbilt', 'year': '2012', 'playerName': 'Darreon Herring', 'highSchool': 'Stephenson', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'OLB', 'height': 75.0, 'weight': '205', 'compRating': '0.8580', 'compStars': 3, 'nationalRank': '770', 'positionRank': '67', 'stateRank': '62', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '80', '247stateRank': '66'}, {'school': 'vanderbilt', 'year': '2012', 'playerName': 'Stephen Weatherly', 'highSchool': 'North Atlanta', 'city': 'Atlanta', 'state': 'GA', 'position': 'WDE', 'height': 77.0, 'weight': '215', 'compRating': '0.8535', 'compStars': 3, 'nationalRank': '815', 'positionRank': '47', 'stateRank': '68', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '46', '247stateRank': '63'}, {'school': 'vanderbilt', 'year': '2012', 'playerName': 'Will Holden', 'highSchool': 'Clay', 'city': 'Green Cove Springs', 'state': 'FL', 'position': 'OT', 'height': 78.0, 'weight': '271', 'compRating': '0.8464', 'compStars': 3, 'nationalRank': '923', 'positionRank': '76', 'stateRank': '107', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '114', '247stateRank': '171'}, {'school': 'vanderbilt', 'year': '2012', 'playerName': 'Torren McGaster', 'highSchool': 'Daphne', 'city': 'Daphne', 'state': 'AL', 'position': 'CB', 'height': 72.0, 'weight': '180', 'compRating': '0.8462', 'compStars': 3, 'nationalRank': '926', 'positionRank': '64', 'stateRank': '29', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '66', '247stateRank': '27'}, {'school': 'vanderbilt', 'year': '2012', 'playerName': 'Kevin McCoy', 'highSchool': 'Armwood', 'city': 'Seffner', 'state': 'FL', 'position': 'OT', 'height': 77.0, 'weight': '278', 'compRating': '0.8455', 'compStars': 3, 'nationalRank': '936', 'positionRank': '79', 'stateRank': '109', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '131', '247stateRank': '212'}, {'school': 'vanderbilt', 'year': '2012', 'playerName': 'Paris Head', 'highSchool': 'Buford', 'city': 'Buford', 'state': 'GA', 'position': 'CB', 'height': 71.0, 'weight': '177', 'compRating': '0.8443', 'compStars': 3, 'nationalRank': '956', 'positionRank': '65', 'stateRank': '79', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '84', '247stateRank': '92'}, {'school': 'vanderbilt', 'year': '2012', 'playerName': 'Blake Fromang', 'highSchool': 'Lake Highland Prep', 'city': 'Orlando', 'state': 'FL', 'position': 'OT', 'height': 79.0, 'weight': '290', 'compRating': '0.8358', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '98', 'stateRank': '137', '247Rating': ' 78 ', '247Stars': 2, '247positionRank': '147', '247stateRank': '230'}, {'school': 'vanderbilt', 'year': '2012', 'playerName': 'Torey Agee', 'highSchool': 'Opelika', 'city': 'Opelika', 'state': 'AL', 'position': 'SDE', 'height': 76.0, 'weight': '245', 'compRating': '0.8337', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '61', 'stateRank': '36', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '68', '247stateRank': '40'}, {'school': 'vanderbilt', 'year': '2012', 'playerName': 'Harding Harper', 'highSchool': 'Carver', 'city': 'Montgomery', 'state': 'AL', 'position': 'OLB', 'height': 74.0, 'weight': '210', 'compRating': '0.8302', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '99', 'stateRank': '40', '247Rating': ' 77 ', '247Stars': 2, '247positionRank': '147', '247stateRank': '56'}, {'school': 'vanderbilt', 'year': '2012', 'playerName': 'Jakarri Thomas', 'highSchool': 'Amos P. Godby', 'city': 'Tallahassee', 'state': 'FL', 'position': 'OLB', 'height': 74.0, 'weight': '200', 'compRating': '0.8302', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '100', 'stateRank': '149', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '89', '247stateRank': '115'}, {'school': 'vanderbilt', 'year': '2012', 'playerName': 'Ladarius Banks', 'highSchool': 'East Paulding', 'city': 'Dallas', 'state': 'GA', 'position': 'DT', 'height': 74.0, 'weight': '260', 'compRating': '0.8089', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '104', 'stateRank': '124', '247Rating': ' 78 ', '247Stars': 2, '247positionRank': '110', '247stateRank': '133'}, {'school': 'vanderbilt', 'year': '2012', 'playerName': 'Colby Cooke', 'highSchool': 'Goochland', 'city': 'Goochland', 'state': 'VA', 'position': 'P', 'height': 76.0, 'weight': '180', 'compRating': '0.7957', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '7', 'stateRank': '47', '247Rating': ' 74 ', '247Stars': 2, '247positionRank': '8', '247stateRank': '65'}, {'school': 'vanderbilt', 'year': '2012', 'playerName': 'Tip McKenzie', 'highSchool': 'Trinity Episcopal Day School', 'city': 'Natchez', 'state': 'MS', 'position': 'APB', 'height': 68.0, 'weight': '175', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '37', 'stateRank': '49', '247Rating': ' 70 ', '247Stars': 2, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2008', 'playerName': 'Blaine Gabbert', 'highSchool': 'West', 'city': 'Ballwin', 'state': 'MO', 'position': 'PRO', 'height': 76.0, 'weight': '266', 'compRating': '0.9806', 'compStars': 4, 'nationalRank': '35', 'positionRank': '2', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2008', 'playerName': 'Andrew Jones', 'highSchool': 'Smithville', 'city': 'Smithville', 'state': 'MO', 'position': 'TE', 'height': 77.0, 'weight': '228', 'compRating': '0.9073', 'compStars': 4, 'nationalRank': '232', 'positionRank': '12', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2008', 'playerName': 'Dan Hoch', 'highSchool': 'Harlan Community', 'city': 'Harlan', 'state': 'IA', 'position': 'OT', 'height': 79.0, 'weight': '310', 'compRating': '0.8981', 'compStars': 4, 'nationalRank': '270', 'positionRank': '27', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2008', 'playerName': 'Wes Kemp', 'highSchool': 'DeSmet', 'city': 'Saint Louis', 'state': 'MO', 'position': 'WR', 'height': 76.0, 'weight': '226', 'compRating': '0.8819', 'compStars': 3, 'nationalRank': '382', 'positionRank': '54', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2008', 'playerName': 'Kenji Jackson', 'highSchool': 'Mansfield', 'city': 'Mansfield', 'state': 'TX', 'position': 'S', 'height': 70.0, 'weight': '190', 'compRating': '0.8795', 'compStars': 3, 'nationalRank': '400', 'positionRank': '33', 'stateRank': '59', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2008', 'playerName': 'Zaviar Gooden', 'highSchool': 'Pflugerville', 'city': 'Pflugerville', 'state': 'TX', 'position': 'S', 'height': 74.0, 'weight': '195', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '428', 'positionRank': '34', 'stateRank': '62', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2008', 'playerName': 'Gahn McGaffie', 'highSchool': 'Galena Park', 'city': 'Galena Park', 'state': 'TX', 'position': 'APB', 'height': 70.0, 'weight': '170', 'compRating': '0.8684', 'compStars': 3, 'nationalRank': '530', 'positionRank': '13', 'stateRank': '77', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2008', 'playerName': 'Robert Steeples', 'highSchool': 'DeSmet', 'city': 'Saint Louis', 'state': 'MO', 'position': 'CB', 'height': 73.0, 'weight': '189', 'compRating': '0.8622', 'compStars': 3, 'nationalRank': '594', 'positionRank': '41', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2008', 'playerName': 'Rolandis Woodland', 'highSchool': 'Harmony Community School', 'city': 'Cincinnati', 'state': 'OH', 'position': 'WR', 'height': 80.0, 'weight': '185', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '665', 'positionRank': '79', 'stateRank': '26', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2008', 'playerName': 'Kip Edwards', 'highSchool': 'Bowie', 'city': 'Arlington', 'state': 'TX', 'position': 'CB', 'height': 73.0, 'weight': '172', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '688', 'positionRank': '51', 'stateRank': '101', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2008', 'playerName': 'Travis Ruth', 'highSchool': 'Jefferson City', 'city': 'Jefferson City', 'state': 'MO', 'position': 'OG', 'height': 74.0, 'weight': '300', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '695', 'positionRank': '51', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2008', 'playerName': 'George White', 'highSchool': 'Harmony Community School', 'city': 'Cincinnati', 'state': 'OH', 'position': 'ILB', 'height': 62.0, 'weight': '252', 'compRating': '0.8516', 'compStars': 3, 'nationalRank': '731', 'positionRank': '38', 'stateRank': '32', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2008', 'playerName': 'Aldon Smith', 'highSchool': 'Raytown', 'city': 'Kansas City', 'state': 'MO', 'position': 'SDE', 'height': 77.0, 'weight': '235', 'compRating': '0.8514', 'compStars': 3, 'nationalRank': '734', 'positionRank': '40', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2008', 'playerName': 'Jerrell Jackson', 'highSchool': 'Davis', 'city': 'Houston', 'state': 'TX', 'position': 'ATH', 'height': 74.0, 'weight': '180', 'compRating': '0.8510', 'compStars': 3, 'nationalRank': '753', 'positionRank': '46', 'stateRank': '114', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2008', 'playerName': 'Drew Temple', 'highSchool': 'Rockhurst', 'city': 'Kansas City', 'state': 'MO', 'position': 'RB', 'height': 69.0, 'weight': '186', 'compRating': '0.8483', 'compStars': 3, 'nationalRank': '771', 'positionRank': '67', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2008', 'playerName': 'Jacquies Smith', 'highSchool': 'South Oak Cliff', 'city': 'Dallas', 'state': 'TX', 'position': 'WDE', 'height': 76.0, 'weight': '220', 'compRating': '0.8448', 'compStars': 3, 'nationalRank': '819', 'positionRank': '23', 'stateRank': '125', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2008', 'playerName': 'Brad Madison', 'highSchool': 'South Harrison', 'city': 'Bethany', 'state': 'MO', 'position': 'OG', 'height': 77.0, 'weight': '235', 'compRating': '0.8448', 'compStars': 3, 'nationalRank': '820', 'positionRank': '61', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2008', 'playerName': 'Daniel Jenkins', 'highSchool': 'Gilmer', 'city': 'Gilmer', 'state': 'TX', 'position': 'OG', 'height': 76.0, 'weight': '270', 'compRating': '0.8417', 'compStars': 3, 'nationalRank': '847', 'positionRank': '63', 'stateRank': '130', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2008', 'playerName': 'Will Ebner', 'highSchool': 'Friendswood', 'city': 'Friendswood', 'state': 'TX', 'position': 'ILB', 'height': 73.0, 'weight': '225', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '969', 'positionRank': '48', 'stateRank': '156', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2008', 'playerName': 'Taylor Davis', 'highSchool': 'Prestonwood Christian', 'city': 'Plano', 'state': 'TX', 'position': 'OT', 'height': 77.0, 'weight': '270', 'compRating': '0.8292', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '77', 'stateRank': '170', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2008', 'playerName': 'Jimmy Burge', 'highSchool': 'Stratford', 'city': 'Houston', 'state': 'TX', 'position': 'DT', 'height': 75.0, 'weight': '275', 'compRating': '0.8212', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '72', 'stateRank': '180', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2008', 'playerName': 'Marcus Malbrough', 'highSchool': 'West Brook', 'city': 'Beaumont', 'state': 'TX', 'position': 'SDE', 'height': 77.0, 'weight': '225', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '69', 'stateRank': '206', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2008', 'playerName': 'Michael Egnew', 'highSchool': 'Plainview', 'city': 'Plainview', 'state': 'TX', 'position': 'WR', 'height': 77.0, 'weight': '200', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '161', 'stateRank': '226', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2008', 'playerName': 'Brian Coulter', 'highSchool': 'Pearl River C.C.', 'city': 'Poplarville', 'state': 'MS', 'position': 'SDE', 'height': 76.0, 'weight': '260', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA'}, {'school': 'missouri', 'year': '2008', 'playerName': 'Beau Brinkley', 'highSchool': 'Kearney', 'city': 'Kearney', 'state': 'MO', 'position': 'LS', 'height': 76.0, 'weight': '248', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2004', 'playerName': 'Rory Johnson', 'highSchool': 'Vicksburg', 'city': 'Vicksburg', 'state': 'MS', 'position': 'OLB', 'height': 74.0, 'weight': '215', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '168', 'positionRank': '9', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2004', 'playerName': 'Jeremy Jones', 'highSchool': 'West Jefferson', 'city': 'Harvey', 'state': 'LA', 'position': 'TE', 'height': 77.0, 'weight': '285', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '273', 'positionRank': '6', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2004', 'playerName': "Gabe O'Neal", 'highSchool': 'Columbus', 'city': 'Columbus', 'state': 'MS', 'position': 'ATH', 'height': 74.0, 'weight': '210', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '531', 'positionRank': '35', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2004', 'playerName': 'Corey Spells', 'highSchool': 'Mays', 'city': 'Atlanta', 'state': 'GA', 'position': 'CB', 'height': 72.0, 'weight': '186', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '588', 'positionRank': '40', 'stateRank': '33', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2004', 'playerName': 'Damien Huren', 'highSchool': 'Southwest Mississippi C.C.', 'city': 'Summit', 'state': 'MS', 'position': 'OLB', 'height': 73.0, 'weight': '215', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '56', 'positionRank': '3', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2004', 'playerName': 'Anthony Strauder', 'highSchool': 'Natchez', 'city': 'Natchez', 'state': 'MS', 'position': 'DT', 'height': 76.0, 'weight': '285', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': '855', 'positionRank': '61', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2004', 'playerName': 'Dio Herrera', 'highSchool': 'Hollywood Christian School', 'city': 'Hollywood', 'state': 'FL', 'position': 'OT', 'height': 76.0, 'weight': '315', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': '862', 'positionRank': '60', 'stateRank': '92', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2004', 'playerName': 'Adam Carlson', 'highSchool': 'Gulfport', 'city': 'Gulfport', 'state': 'MS', 'position': 'K', 'height': 76.0, 'weight': '175', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': '980', 'positionRank': '17', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2004', 'playerName': "De'Mon Glanton", 'highSchool': 'Mays', 'city': 'Atlanta', 'state': 'GA', 'position': 'CB', 'height': 73.0, 'weight': '185', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '84', 'stateRank': '60', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2004', 'playerName': 'Mario Bobo', 'highSchool': 'South Panola', 'city': 'Batesville', 'state': 'MS', 'position': 'CB', 'height': 73.0, 'weight': '175', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '93', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2004', 'playerName': 'DeMarcus Johnson', 'highSchool': 'Banneker', 'city': 'Atlanta', 'state': 'GA', 'position': 'RB', 'height': 71.0, 'weight': '190', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '86', 'stateRank': '78', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2004', 'playerName': 'Kenny McClellan', 'highSchool': 'Booker T. Washington', 'city': 'Tulsa', 'state': 'OK', 'position': 'ATH', 'height': 71.0, 'weight': '175', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '89', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2004', 'playerName': 'Fred Akines', 'highSchool': 'Clarksdale', 'city': 'Clarksdale', 'state': 'MS', 'position': 'S', 'height': 75.0, 'weight': '190', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '107', 'stateRank': '28', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2004', 'playerName': 'Brandon Thornton', 'highSchool': 'Homewood', 'city': 'Birmingham', 'state': 'AL', 'position': 'RB', 'height': 71.0, 'weight': '187', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '90', 'stateRank': '40', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2004', 'playerName': 'Jonathan Lowe', 'highSchool': 'Central', 'city': 'Phenix City', 'state': 'AL', 'position': 'ATH', 'height': 68.0, 'weight': '170', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '93', 'stateRank': '42', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2004', 'playerName': 'Linzy Patterson', 'highSchool': 'Amory', 'city': 'Amory', 'state': 'MS', 'position': 'TE', 'height': 76.0, 'weight': '242', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '76', 'stateRank': '30', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2004', 'playerName': 'Robert Walker', 'highSchool': 'Southwest Mississippi C.C.', 'city': 'Summit', 'state': 'MS', 'position': 'TE', 'height': 76.0, 'weight': '270', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': '235', 'positionRank': '11', 'stateRank': '43', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2004', 'playerName': 'Michael Henig', 'highSchool': 'Jefferson Davis', 'city': 'Montgomery', 'state': 'AL', 'position': 'PRO', 'height': 73.0, 'weight': '170', 'compRating': '0.7556', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '63', 'stateRank': '58', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2004', 'playerName': 'Keon Humphries', 'highSchool': 'Lanier', 'city': 'Montgomery', 'state': 'AL', 'position': 'WR', 'height': 70.0, 'weight': '165', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '196', 'stateRank': '61', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2004', 'playerName': 'Roland Terry', 'highSchool': 'Lamar School', 'city': 'Meridian', 'state': 'MS', 'position': 'OT', 'height': 79.0, 'weight': '254', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '134', 'stateRank': '39', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2004', 'playerName': 'Jeffrey Farr', 'highSchool': 'Pell City Sch', 'city': 'Pell City', 'state': 'AL', 'position': 'OG', 'height': 76.0, 'weight': '305', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '191', 'stateRank': '63', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2004', 'playerName': 'Titus Brown', 'highSchool': 'Hillcrest', 'city': 'Tuscaloosa', 'state': 'AL', 'position': 'ILB', 'height': 76.0, 'weight': '210', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '109', 'stateRank': '64', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2004', 'playerName': 'Anthony Littlejohn', 'highSchool': 'Englewood', 'city': 'Jacksonville', 'state': 'FL', 'position': 'OLB', 'height': 74.0, 'weight': '200', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '130', 'stateRank': '221', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2011', 'playerName': 'Brey Cook', 'highSchool': 'Har-Ber', 'city': 'Springdale', 'state': 'AR', 'position': 'OT', 'height': 79.0, 'weight': '317', 'compRating': '0.9639', 'compStars': 4, 'nationalRank': '69', 'positionRank': '5', 'stateRank': '2', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '120', '247positionRank': '11', '247stateRank': '3'}, {'school': 'arkansas', 'year': '2011', 'playerName': 'Marquel Wade', 'highSchool': 'Milford Academy', 'city': 'New Berlin', 'state': 'NY', 'position': 'WR', 'height': 71.0, 'weight': '180', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '5', 'positionRank': '2', 'stateRank': '1', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2011', 'playerName': 'Quinta Funderburk', 'highSchool': 'Oscar Smith', 'city': 'Chesapeake', 'state': 'VA', 'position': 'WR', 'height': 75.0, 'weight': '200', 'compRating': '0.8926', 'compStars': 4, 'nationalRank': '271', 'positionRank': '31', 'stateRank': '8', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '35', '247stateRank': '9'}, {'school': 'arkansas', 'year': '2011', 'playerName': 'Andrew Peterson', 'highSchool': 'Seagoville', 'city': 'Dallas', 'state': 'TX', 'position': 'TE', 'height': 77.0, 'weight': '260', 'compRating': '0.8842', 'compStars': 3, 'nationalRank': '311', 'positionRank': '17', 'stateRank': '50', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2011', 'playerName': 'Robert Atiga', 'highSchool': 'Snow College', 'city': 'Ephraim', 'state': 'UT', 'position': 'ILB', 'height': 75.0, 'weight': '240', 'compRating': '0.8800', 'compStars': 3, 'nationalRank': '21', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2011', 'playerName': 'Jason Peacock', 'highSchool': 'Citrus College', 'city': 'Glendora', 'state': 'CA', 'position': 'OG', 'height': 77.0, 'weight': '325', 'compRating': '0.8396', 'compStars': 3, 'nationalRank': '50', 'positionRank': '2', 'stateRank': '19', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2011', 'playerName': 'Tyler Gilbert', 'highSchool': 'North Carolina Tech', 'city': 'Charlotte', 'state': 'NC', 'position': 'ILB', 'height': 75.0, 'weight': '240', 'compRating': '0.7851', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '74', 'stateRank': '67', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '46', '247stateRank': '43'}, {'school': 'arkansas', 'year': '2011', 'playerName': 'Justin Oates', 'highSchool': 'Buckhorn', 'city': 'New Market', 'state': 'AL', 'position': 'WDE', 'height': 76.0, 'weight': '230', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA'}, {'school': 'arkansas', 'year': '2011', 'playerName': 'Chris Stringer', 'highSchool': 'Citrus College', 'city': 'Glendora', 'state': 'CA', 'position': 'OT', 'height': 79.0, 'weight': '300', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2011', 'playerName': 'Drew Gorton', 'highSchool': 'Fayetteville', 'city': 'Fayetteville', 'state': 'AR', 'position': 'LS', 'height': 72.0, 'weight': '196', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2011', 'playerName': 'Brad Taylor', 'highSchool': 'Har-Ber', 'city': 'Springdale', 'state': 'AR', 'position': 'TE', 'height': 76.0, 'weight': '246', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2011', 'playerName': 'Mitch Smothers', 'highSchool': 'Springdale', 'city': 'Springdale', 'state': 'AR', 'position': 'OG', 'height': 76.0, 'weight': '291', 'compRating': '0.9315', 'compStars': 4, 'nationalRank': '143', 'positionRank': '6', 'stateRank': '3', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '76', '247positionRank': '3', '247stateRank': '1'}, {'school': 'arkansas', 'year': '2011', 'playerName': 'Tevin Mitchel', 'highSchool': 'Mansfield Legacy', 'city': 'Mansfield', 'state': 'TX', 'position': 'CB', 'height': 72.0, 'weight': '175', 'compRating': '0.9098', 'compStars': 4, 'nationalRank': '205', 'positionRank': '18', 'stateRank': '28', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '196', '247positionRank': '19', '247stateRank': '29'}, {'school': 'arkansas', 'year': '2011', 'playerName': 'Lonnie Gosha', 'highSchool': 'Union County', 'city': 'Lake Butler', 'state': 'FL', 'position': 'DT', 'height': 74.0, 'weight': '275', 'compRating': '0.8964', 'compStars': 4, 'nationalRank': '256', 'positionRank': '21', 'stateRank': '43', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '201', '247positionRank': '19', '247stateRank': '40'}, {'school': 'arkansas', 'year': '2011', 'playerName': 'Kelvin Fisher Jr.', 'highSchool': 'Higley', 'city': 'Gilbert', 'state': 'AZ', 'position': 'ATH', 'height': 71.0, 'weight': '180', 'compRating': '0.8891', 'compStars': 3, 'nationalRank': '288', 'positionRank': '22', 'stateRank': '7', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '34', '247stateRank': '10'}, {'school': 'arkansas', 'year': '2011', 'playerName': 'Keante Minor', 'highSchool': 'East St. Louis', 'city': 'East Saint Louis', 'state': 'IL', 'position': 'WR', 'height': 73.0, 'weight': '195', 'compRating': '0.8872', 'compStars': 3, 'nationalRank': '298', 'positionRank': '36', 'stateRank': '8', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '40', '247stateRank': '10'}, {'school': 'arkansas', 'year': '2011', 'playerName': 'Brandon Allen', 'highSchool': 'Fayetteville', 'city': 'Fayetteville', 'state': 'AR', 'position': 'PRO', 'height': 74.0, 'weight': '195', 'compRating': '0.8766', 'compStars': 3, 'nationalRank': '354', 'positionRank': '8', 'stateRank': '4', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '17', '247stateRank': '6'}, {'school': 'arkansas', 'year': '2011', 'playerName': 'Grady Ollison', 'highSchool': 'Malvern', 'city': 'Malvern', 'state': 'AR', 'position': 'SDE', 'height': 76.0, 'weight': '270', 'compRating': '0.8649', 'compStars': 3, 'nationalRank': '466', 'positionRank': '33', 'stateRank': '5', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '31', '247stateRank': '4'}, {'school': 'arkansas', 'year': '2011', 'playerName': 'DeMarcus Hodge', 'highSchool': 'Neville', 'city': 'Monroe', 'state': 'LA', 'position': 'DT', 'height': 73.0, 'weight': '298', 'compRating': '0.8640', 'compStars': 3, 'nationalRank': '475', 'positionRank': '39', 'stateRank': '19', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '45', '247stateRank': '20'}, {'school': 'arkansas', 'year': '2011', 'playerName': 'Austin Beck', 'highSchool': 'Nowata', 'city': 'Nowata', 'state': 'OK', 'position': 'OT', 'height': 80.0, 'weight': '285', 'compRating': '0.8619', 'compStars': 3, 'nationalRank': '507', 'positionRank': '52', 'stateRank': '7', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '38', '247stateRank': '4'}, {'school': 'arkansas', 'year': '2011', 'playerName': 'Davyon McKinney', 'highSchool': 'Forrest City', 'city': 'Forrest City', 'state': 'AR', 'position': 'WR', 'height': 74.0, 'weight': '180', 'compRating': '0.8584', 'compStars': 3, 'nationalRank': '568', 'positionRank': '71', 'stateRank': '6', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '58', '247stateRank': '5'}, {'school': 'arkansas', 'year': '2011', 'playerName': 'Kody Walker', 'highSchool': 'Jefferson City', 'city': 'Jefferson City', 'state': 'MO', 'position': 'RB', 'height': 73.0, 'weight': '230', 'compRating': '0.8568', 'compStars': 3, 'nationalRank': '604', 'positionRank': '37', 'stateRank': '5', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '39', '247stateRank': '4'}, {'school': 'arkansas', 'year': '2011', 'playerName': 'Marcus Danenhauer', 'highSchool': 'Bentonville', 'city': 'Bentonville', 'state': 'AR', 'position': 'OG', 'height': 77.0, 'weight': '315', 'compRating': '0.8481', 'compStars': 3, 'nationalRank': '754', 'positionRank': '44', 'stateRank': '8', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '35', '247stateRank': '8'}, {'school': 'arkansas', 'year': '2011', 'playerName': 'Horace Arkadie', 'highSchool': 'Irving', 'city': 'Irving', 'state': 'TX', 'position': 'SDE', 'height': 76.0, 'weight': '240', 'compRating': '0.8453', 'compStars': 3, 'nationalRank': '816', 'positionRank': '56', 'stateRank': '134', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '64', '247stateRank': '146'}, {'school': 'arkansas', 'year': '2011', 'playerName': 'Darrell Kelly-Thomas', 'highSchool': 'Lufkin', 'city': 'Lufkin', 'state': 'TX', 'position': 'WDE', 'height': 74.0, 'weight': '224', 'compRating': '0.8422', 'compStars': 3, 'nationalRank': '864', 'positionRank': '41', 'stateRank': '141', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '27', '247stateRank': '101'}, {'school': 'arkansas', 'year': '2011', 'playerName': 'Brock Haman', 'highSchool': 'Saguaro', 'city': 'Scottsdale', 'state': 'AZ', 'position': 'ATH', 'height': 75.0, 'weight': '225', 'compRating': '0.8396', 'compStars': 3, 'nationalRank': '905', 'positionRank': '62', 'stateRank': '14', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '72', '247stateRank': '17'}, {'school': 'arkansas', 'year': '2011', 'playerName': 'Alonzo Highsmith', 'highSchool': 'Phoenix College', 'city': 'Phoenix', 'state': 'AZ', 'position': 'OLB', 'height': 74.0, 'weight': '215', 'compRating': '0.8322', 'compStars': 3, 'nationalRank': '55', 'positionRank': '6', 'stateRank': '4', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2011', 'playerName': 'Jashaud Sims', 'highSchool': 'Dickinson', 'city': 'Dickinson', 'state': 'TX', 'position': 'S', 'height': 76.0, 'weight': '190', 'compRating': '0.8266', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '82', 'stateRank': '183'}, {'school': 'arkansas', 'year': '2011', 'playerName': 'Rohan Gaines', 'highSchool': 'Bainbridge', 'city': 'Bainbridge', 'state': 'GA', 'position': 'ATH', 'height': 71.0, 'weight': '180', 'compRating': '0.8136', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '85', 'stateRank': '98', '247Rating': ' 78 ', '247Stars': 2, '247positionRank': '90', '247stateRank': '87'}, {'school': 'arkansas', 'year': '2011', 'playerName': 'Trey Flowers', 'highSchool': 'Columbia', 'city': 'Huntsville', 'state': 'AL', 'position': 'WDE', 'height': 75.0, 'weight': '240', 'compRating': '0.8080', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '62', 'stateRank': '42', '247Rating': ' 77 ', '247Stars': 2, '247positionRank': '68', '247stateRank': '36'}, {'school': 'arkansas', 'year': '2011', 'playerName': 'Kane Whitehurst', 'highSchool': 'Chattahoochee', 'city': 'Alpharetta', 'state': 'GA', 'position': 'WR', 'height': 72.0, 'weight': '175', 'compRating': '0.8024', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '178', 'stateRank': '107', '247Rating': ' 76 ', '247Stars': 2, '247positionRank': '186', '247stateRank': '94'}, {'school': 'arkansas', 'year': '2011', 'playerName': 'Kiero Small', 'highSchool': 'Hartnell College', 'city': 'Salinas', 'state': 'CA', 'position': 'ILB', 'height': 70.0, 'weight': '247', 'compRating': '0.7926', 'compStars': 2, 'nationalRank': '93', 'positionRank': '6', 'stateRank': '34', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2011', 'playerName': 'Brett Weir', 'highSchool': 'St. Thomas Aquinas', 'city': 'London', 'state': 'ON', 'position': 'ATH', 'height': 77.0, 'weight': '220', 'compRating': '0.7883', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '101', 'stateRank': '1', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '76', '247stateRank': '1'}, {'school': 'arkansas', 'year': '2007', 'playerName': 'David Williams', 'highSchool': 'Central Arkansas Christian', 'city': 'Maumelle', 'state': 'AR', 'position': 'TE', 'height': 75.0, 'weight': '240', 'compRating': '0.8906', 'compStars': 4, 'nationalRank': '224', 'positionRank': '9', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2007', 'playerName': 'Grant Freeman', 'highSchool': 'Paris', 'city': 'Paris', 'state': 'AR', 'position': 'OT', 'height': 79.0, 'weight': '305', 'compRating': '0.8844', 'compStars': 3, 'nationalRank': '277', 'positionRank': '25', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2007', 'playerName': 'Jermaine Love', 'highSchool': 'North Garland', 'city': 'Garland', 'state': 'TX', 'position': 'OLB', 'height': 71.0, 'weight': '220', 'compRating': '0.8813', 'compStars': 3, 'nationalRank': '291', 'positionRank': '18', 'stateRank': '37', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2007', 'playerName': 'Grant Cook', 'highSchool': 'Jonesboro', 'city': 'Jonesboro', 'state': 'AR', 'position': 'OG', 'height': 76.0, 'weight': '318', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '333', 'positionRank': '20', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2007', 'playerName': 'Juwan Franklin', 'highSchool': 'Dunnellon', 'city': 'Dunnellon', 'state': 'FL', 'position': 'APB', 'height': 72.0, 'weight': '185', 'compRating': '0.8733', 'compStars': 3, 'nationalRank': '385', 'positionRank': '4', 'stateRank': '51', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2007', 'playerName': 'Seth Oxner', 'highSchool': 'Monticello', 'city': 'Monticello', 'state': 'AR', 'position': 'OG', 'height': 76.0, 'weight': '285', 'compRating': '0.8639', 'compStars': 3, 'nationalRank': '448', 'positionRank': '28', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2007', 'playerName': 'Kareem Crowell', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'DT', 'height': 76.0, 'weight': '290', 'compRating': '0.8632', 'compStars': 3, 'nationalRank': '17', 'positionRank': '3', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2007', 'playerName': 'Michael Harris', 'highSchool': 'Booker T. Washington', 'city': 'Tulsa', 'state': 'OK', 'position': 'RB', 'height': 69.0, 'weight': '190', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '537', 'positionRank': '46', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2007', 'playerName': 'Jerry Franklin', 'highSchool': 'Marion', 'city': 'Marion', 'state': 'AR', 'position': 'ILB', 'height': 73.0, 'weight': '241', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '558', 'positionRank': '21', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2007', 'playerName': 'Joe Chaisson', 'highSchool': 'Westbrook School', 'city': 'Westbrook', 'state': 'TX', 'position': 'DUAL', 'height': 74.0, 'weight': '167', 'compRating': '0.8542', 'compStars': 3, 'nationalRank': '585', 'positionRank': '17', 'stateRank': '71', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2007', 'playerName': 'Brandon Barnett', 'highSchool': 'Butler C.C.', 'city': 'El Dorado', 'state': 'KS', 'position': 'RB', 'height': 69.0, 'weight': '205', 'compRating': '0.8444', 'compStars': 3, 'nationalRank': '70', 'positionRank': '2', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2007', 'playerName': 'Alex Tejada', 'highSchool': 'Springdale', 'city': 'Springdale', 'state': 'AR', 'position': 'K', 'height': 73.0, 'weight': '190', 'compRating': '0.8431', 'compStars': 3, 'nationalRank': '713', 'positionRank': '7', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2007', 'playerName': 'Damario Ambrose', 'highSchool': 'WP Davidson', 'city': 'Mobile', 'state': 'AL', 'position': 'SDE', 'height': 76.0, 'weight': '240', 'compRating': '0.8372', 'compStars': 3, 'nationalRank': '794', 'positionRank': '52', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2007', 'playerName': 'Brandon Lampkin', 'highSchool': 'Tucker', 'city': 'Tucker', 'state': 'GA', 'position': 'TE', 'height': 77.0, 'weight': '250', 'compRating': '0.8354', 'compStars': 3, 'nationalRank': '815', 'positionRank': '42', 'stateRank': '45', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2007', 'playerName': 'Crosby Tuck', 'highSchool': 'Shiloh Christian', 'city': 'Springdale', 'state': 'AR', 'position': 'WR', 'height': 73.0, 'weight': '185', 'compRating': '0.8340', 'compStars': 3, 'nationalRank': '828', 'positionRank': '92', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2007', 'playerName': 'Freddy Burton', 'highSchool': 'Morrilton', 'city': 'Morrilton', 'state': 'AR', 'position': 'OLB', 'height': 74.0, 'weight': '185', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '882', 'positionRank': '58', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2007', 'playerName': 'Jake Bequette', 'highSchool': 'Catholic For Boys', 'city': 'Little Rock', 'state': 'AR', 'position': 'SDE', 'height': 77.0, 'weight': '271', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '928', 'positionRank': '56', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2007', 'playerName': 'Wade Grayson', 'highSchool': 'Harrison', 'city': 'Harrison', 'state': 'AR', 'position': 'OG', 'height': 75.0, 'weight': '260', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '932', 'positionRank': '77', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2007', 'playerName': 'Walner Leandre', 'highSchool': 'Blinn College', 'city': 'Brenham', 'state': 'TX', 'position': 'S', 'height': 73.0, 'weight': '215', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '93', 'positionRank': '12', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2007', 'playerName': 'Bret Harris', 'highSchool': 'MacArthur', 'city': 'Irving', 'state': 'TX', 'position': 'OLB', 'height': 72.0, 'weight': '224', 'compRating': '0.8153', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '76', 'stateRank': '152', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2007', 'playerName': 'Isaac Madison', 'highSchool': 'Carter', 'city': 'Dallas', 'state': 'TX', 'position': 'CB', 'height': 71.0, 'weight': '185', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '83', 'stateRank': '163', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2007', 'playerName': 'Patrick Jones', 'highSchool': 'Lovejoy', 'city': 'Hampton', 'state': 'GA', 'position': 'DT', 'height': 72.0, 'weight': '298', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '79', 'stateRank': '60', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2007', 'playerName': 'Tim Dial', 'highSchool': 'Jenks', 'city': 'Jenks', 'state': 'OK', 'position': 'OLB', 'height': 75.0, 'weight': '210', 'compRating': '0.8069', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '86', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2007', 'playerName': 'Nathan Dick', 'highSchool': 'Allen', 'city': 'Allen', 'state': 'TX', 'position': 'PRO', 'height': 76.0, 'weight': '200', 'compRating': '0.8042', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '52', 'stateRank': '185', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2007', 'playerName': 'Greg Gatson', 'highSchool': 'Germantown', 'city': 'Germantown', 'state': 'TN', 'position': 'CB', 'height': 70.0, 'weight': '180', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '134', 'stateRank': '45', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2007', 'playerName': 'Rhett Richardson', 'highSchool': 'Rockwall', 'city': 'Rockwall', 'state': 'TX', 'position': 'OG', 'height': 74.0, 'weight': '215', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '166', 'stateRank': '299', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2020', 'playerName': 'Arik Gilbert', 'highSchool': 'Marietta', 'city': 'Marietta', 'state': 'GA', 'position': 'TE', 'height': 77.0, 'weight': '253', 'compRating': '0.9972', 'compStars': 5, 'nationalRank': '5', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 99 ', '247Stars': 5, '247nationalRank': '10', '247positionRank': '1', '247stateRank': '2'}, {'school': 'lsu', 'year': '2020', 'playerName': 'Eli Ricks', 'highSchool': 'IMG Academy', 'city': 'Bradenton', 'state': 'FL', 'position': 'CB', 'height': 74.0, 'weight': '192', 'compRating': '0.9928', 'compStars': 5, 'nationalRank': '14', 'positionRank': '2', 'stateRank': '2', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '18', '247positionRank': '2', '247stateRank': '3'}, {'school': 'lsu', 'year': '2020', 'playerName': 'Kayshon Boutte', 'highSchool': 'Westgate', 'city': 'New Iberia', 'state': 'LA', 'position': 'WR', 'height': 72.0, 'weight': '180', 'compRating': '0.9894', 'compStars': 5, 'nationalRank': '24', 'positionRank': '2', 'stateRank': '1', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '20', '247positionRank': '3', '247stateRank': '1'}, {'school': 'lsu', 'year': '2020', 'playerName': 'Jaquelin Roy', 'highSchool': 'University Lab', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'DT', 'height': 75.5, 'weight': '289', 'compRating': '0.9805', 'compStars': 4, 'nationalRank': '41', 'positionRank': '6', 'stateRank': '2', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '43', '247positionRank': '6', '247stateRank': '2'}, {'school': 'lsu', 'year': '2020', 'playerName': 'Phillip Webb', 'highSchool': 'Lanier', 'city': 'Buford', 'state': 'GA', 'position': 'OLB', 'height': 75.5, 'weight': '224', 'compRating': '0.9726', 'compStars': 4, 'nationalRank': '57', 'positionRank': '4', 'stateRank': '7', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '111', '247positionRank': '7', '247stateRank': '14'}, {'school': 'lsu', 'year': '2020', 'playerName': 'Jordan Toles', 'highSchool': 'St. Frances Academy', 'city': 'Baltimore', 'state': 'MD', 'position': 'S', 'height': 73.5, 'weight': '190', 'compRating': '0.9648', 'compStars': 4, 'nationalRank': '80', 'positionRank': '5', 'stateRank': '5', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '82', '247positionRank': '4', '247stateRank': '4'}, {'school': 'lsu', 'year': '2020', 'playerName': 'BJ Ojulari', 'highSchool': 'Marietta', 'city': 'Marietta', 'state': 'GA', 'position': 'WDE', 'height': 75.0, 'weight': '224', 'compRating': '0.9635', 'compStars': 4, 'nationalRank': '84', 'positionRank': '6', 'stateRank': '12', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '52', '247positionRank': '3', '247stateRank': '7'}, {'school': 'lsu', 'year': '2020', 'playerName': 'Jacobian Guillory', 'highSchool': 'Alexandria', 'city': 'Alexandria', 'state': 'LA', 'position': 'DT', 'height': 74.0, 'weight': '331', 'compRating': '0.9563', 'compStars': 4, 'nationalRank': '96', 'positionRank': '12', 'stateRank': '4', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '69', '247positionRank': '9', '247stateRank': '3'}, {'school': 'lsu', 'year': '2020', 'playerName': 'Antoine Sampah', 'highSchool': 'Woodbridge', 'city': 'Woodbridge', 'state': 'VA', 'position': 'ILB', 'height': 74.5, 'weight': '220', 'compRating': '0.9561', 'compStars': 4, 'nationalRank': '97', 'positionRank': '6', 'stateRank': '3', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '191', '247positionRank': '14', '247stateRank': '6'}, {'school': 'lsu', 'year': '2020', 'playerName': 'Marcus Dumervil', 'highSchool': 'St. Thomas Aquinas', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'OT', 'height': 77.0, 'weight': '305', 'compRating': '0.9518', 'compStars': 4, 'nationalRank': '109', 'positionRank': '11', 'stateRank': '17', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '194', '247positionRank': '14', '247stateRank': '27'}, {'school': 'lsu', 'year': '2020', 'playerName': 'Kevontre Bradford', 'highSchool': 'Lancaster', 'city': 'Lancaster', 'state': 'TX', 'position': 'RB', 'height': 71.0, 'weight': '193', 'compRating': '0.9404', 'compStars': 4, 'nationalRank': '130', 'positionRank': '13', 'stateRank': '18', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '160', '247positionRank': '13', '247stateRank': '25'}, {'school': 'lsu', 'year': '2020', 'playerName': 'Josh White', 'highSchool': 'Cy Creek', 'city': 'Houston', 'state': 'TX', 'position': 'ILB', 'height': 73.0, 'weight': '200', 'compRating': '0.9362', 'compStars': 4, 'nationalRank': '142', 'positionRank': '9', 'stateRank': '24', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '216', '247positionRank': '16', '247stateRank': '34'}, {'school': 'lsu', 'year': '2020', 'playerName': 'Max Johnson', 'highSchool': 'Oconee County', 'city': 'Watkinsville', 'state': 'GA', 'position': 'PRO', 'height': 76.5, 'weight': '216', 'compRating': '0.9090', 'compStars': 4, 'nationalRank': '252', 'positionRank': '10', 'stateRank': '26', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '15', '247stateRank': '57'}, {'school': 'lsu', 'year': '2020', 'playerName': 'Eric Taylor', 'highSchool': 'Hewitt-Trussville', 'city': 'Trussville', 'state': 'AL', 'position': 'DT', 'height': 76.0, 'weight': '280', 'compRating': '0.9055', 'compStars': 4, 'nationalRank': '269', 'positionRank': '29', 'stateRank': '11', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '27', '247stateRank': '13'}, {'school': 'lsu', 'year': '2020', 'playerName': 'Dwight McGlothern', 'highSchool': 'Klein Oak', 'city': 'Spring', 'state': 'TX', 'position': 'CB', 'height': 74.0, 'weight': '180', 'compRating': '0.9025', 'compStars': 4, 'nationalRank': '277', 'positionRank': '20', 'stateRank': '41', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '47', '247stateRank': '73'}, {'school': 'lsu', 'year': '2020', 'playerName': 'Koy Moore', 'highSchool': 'Archbishop Rummel', 'city': 'Metairie', 'state': 'LA', 'position': 'WR', 'height': 73.0, 'weight': '172', 'compRating': '0.8998', 'compStars': 4, 'nationalRank': '298', 'positionRank': '49', 'stateRank': '11', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '107', '247stateRank': '24'}, {'school': 'lsu', 'year': '2020', 'playerName': 'Marlon Martinez', 'highSchool': 'St. Thomas Aquinas', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'OG', 'height': 76.5, 'weight': '287', 'compRating': '0.8895', 'compStars': 3, 'nationalRank': '380', 'positionRank': '17', 'stateRank': '61', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '21', '247stateRank': '61'}, {'school': 'lsu', 'year': '2020', 'playerName': 'Alex Adams', 'highSchool': 'South Pike', 'city': 'Magnolia', 'state': 'MS', 'position': 'WR', 'height': 73.0, 'weight': '175', 'compRating': '0.8863', 'compStars': 3, 'nationalRank': '411', 'positionRank': '68', 'stateRank': '8', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '64', '247stateRank': '8'}, {'school': 'lsu', 'year': '2020', 'playerName': 'Kole Taylor', 'highSchool': 'Central', 'city': 'Grand Junction', 'state': 'CO', 'position': 'TE', 'height': 79.0, 'weight': '228', 'compRating': '0.8850', 'compStars': 3, 'nationalRank': '422', 'positionRank': '16', 'stateRank': '4', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '19', '247stateRank': '4'}, {'school': 'lsu', 'year': '2020', 'playerName': 'Ali Gaye', 'highSchool': 'Garden City C.C.', 'city': 'Garden City', 'state': 'KS', 'position': 'SDE', 'height': 78.0, 'weight': '270', 'compRating': '0.8830', 'compStars': 3, 'nationalRank': '19', 'positionRank': '2', 'stateRank': '7', '247Rating': ' 89 ', '247Stars': 3, '247nationalRank': '16', '247positionRank': '2', '247stateRank': '7'}, {'school': 'lsu', 'year': '2020', 'playerName': 'Xavier Hill', 'highSchool': 'Olive Branch', 'city': 'Olive Branch', 'state': 'MS', 'position': 'OG', 'height': 75.0, 'weight': '325', 'compRating': '0.8796', 'compStars': 3, 'nationalRank': '482', 'positionRank': '26', 'stateRank': '13', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '30', '247stateRank': '15'}, {'school': 'lsu', 'year': '2020', 'playerName': 'TJ Finley', 'highSchool': 'Ponchatoula', 'city': 'Ponchatoula', 'state': 'LA', 'position': 'PRO', 'height': 78.0, 'weight': '250', 'compRating': '0.8784', 'compStars': 3, 'nationalRank': '498', 'positionRank': '19', 'stateRank': '22', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '18', '247stateRank': '35'}, {'school': 'alabama', 'year': '2004', 'playerName': 'Nick Walker', 'highSchool': 'Hartselle', 'city': 'Hartselle', 'state': 'AL', 'position': 'WR', 'height': 73.0, 'weight': '190', 'compRating': '0.9444', 'compStars': 4, 'nationalRank': '109', 'positionRank': '14', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2004', 'playerName': 'Marcus Carter', 'highSchool': 'Fort Payne', 'city': 'Fort Payne', 'state': 'AL', 'position': 'S', 'height': 72.0, 'weight': '190', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '239', 'positionRank': '15', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2004', 'playerName': 'Kevin Hamilton', 'highSchool': 'Prattville', 'city': 'Prattville', 'state': 'AL', 'position': 'DT', 'height': 76.0, 'weight': '260', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '264', 'positionRank': '21', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2004', 'playerName': 'Simeon Castille', 'highSchool': 'Briarwood Christian', 'city': 'Birmingham', 'state': 'AL', 'position': 'S', 'height': 73.0, 'weight': '185', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '270', 'positionRank': '18', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2004', 'playerName': 'Trent Davidson', 'highSchool': 'Tr Miller Sch', 'city': 'Brewton', 'state': 'AL', 'position': 'TE', 'height': 76.0, 'weight': '258', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '298', 'positionRank': '9', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2004', 'playerName': 'B.J. Stabler', 'highSchool': 'Clarke County', 'city': 'Grove Hill', 'state': 'AL', 'position': 'OG', 'height': 76.0, 'weight': '293', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '310', 'positionRank': '21', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2004', 'playerName': 'Travis Robinson', 'highSchool': 'Hillcrest', 'city': 'Tuscaloosa', 'state': 'AL', 'position': 'CB', 'height': 70.0, 'weight': '180', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '385', 'positionRank': '27', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2004', 'playerName': 'D.J. Hall', 'highSchool': 'Choctawhatchee Senior', 'city': 'Fort Walton Beach', 'state': 'FL', 'position': 'WR', 'height': 75.0, 'weight': '185', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '413', 'positionRank': '51', 'stateRank': '45', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2004', 'playerName': 'Antoine Caldwell', 'highSchool': 'Robert E. Lee', 'city': 'Montgomery', 'state': 'AL', 'position': 'OG', 'height': 75.0, 'weight': '265', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '460', 'positionRank': '29', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2004', 'playerName': 'Curtis Dawson', 'highSchool': 'Hoover', 'city': 'Hoover', 'state': 'AL', 'position': 'DT', 'height': 73.0, 'weight': '255', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '513', 'positionRank': '45', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2004', 'playerName': 'Marcel Stamps', 'highSchool': 'Brantley', 'city': 'Brantley', 'state': 'AL', 'position': 'OLB', 'height': 74.0, 'weight': '200', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '620', 'positionRank': '33', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2004', 'playerName': 'Ezekiel Knight', 'highSchool': 'Randolph County', 'city': 'Wedowee', 'state': 'AL', 'position': 'ATH', 'height': 75.0, 'weight': '215', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '659', 'positionRank': '49', 'stateRank': '22', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2004', 'playerName': 'Jerami Holifield', 'highSchool': 'Hoover', 'city': 'Hoover', 'state': 'AL', 'position': 'SDE', 'height': 77.0, 'weight': '248', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '662', 'positionRank': '41', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2004', 'playerName': 'Will Oakley', 'highSchool': 'Nease', 'city': 'Ponte Vedra Beach', 'state': 'FL', 'position': 'WR', 'height': 73.0, 'weight': '190', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '773', 'positionRank': '90', 'stateRank': '87', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2004', 'playerName': 'Jeffrey Dukes', 'highSchool': 'Northwest Mississippi C.C.', 'city': 'Senatobia', 'state': 'MS', 'position': 'S', 'height': 75.0, 'weight': '190', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': '154', 'positionRank': '13', 'stateRank': '27', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2004', 'playerName': 'Aaron McDaniel', 'highSchool': 'Fort Payne', 'city': 'Fort Payne', 'state': 'AL', 'position': 'ATH', 'height': 73.0, 'weight': '170', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '85', 'stateRank': '38', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2004', 'playerName': 'Nikita Stover', 'highSchool': 'Hartselle', 'city': 'Hartselle', 'state': 'AL', 'position': 'WR', 'height': 73.0, 'weight': '195', 'compRating': '0.9765', 'compStars': 4, 'nationalRank': '54', 'positionRank': '9', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2004', 'playerName': 'Brad Allen', 'highSchool': 'Venice', 'city': 'Venice', 'state': 'FL', 'position': 'TE', 'height': 76.0, 'weight': '240', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '245', 'positionRank': '4', 'stateRank': '35', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2004', 'playerName': 'Hamilton Holliday', 'highSchool': 'Walton', 'city': 'Marietta', 'state': 'GA', 'position': 'OG', 'height': 75.0, 'weight': '275', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '582', 'positionRank': '44', 'stateRank': '32', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2004', 'playerName': 'Jared Fagan', 'highSchool': 'Westlake', 'city': 'Waldorf', 'state': 'MD', 'position': 'ATH', 'height': 70.0, 'weight': '155', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '669', 'positionRank': '50', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2004', 'playerName': 'Daniel Lee', 'highSchool': 'Park Hill South', 'city': 'Riverside', 'state': 'MO', 'position': 'K', 'height': 72.0, 'weight': '185', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '721', 'positionRank': '8', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2004', 'playerName': 'Chris Nickson', 'highSchool': 'Pike Co Sch', 'city': 'Brundidge', 'state': 'AL', 'position': 'ATH', 'height': 73.0, 'weight': '200', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': '853', 'positionRank': '64', 'stateRank': '25', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2004', 'playerName': 'Brandon Holmes', 'highSchool': 'Garland', 'city': 'Garland', 'state': 'TX', 'position': 'TE', 'height': 74.0, 'weight': '244', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': '858', 'positionRank': '35', 'stateRank': '133', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2004', 'playerName': 'Jeff Jennings', 'highSchool': 'Jefferson County', 'city': 'Dandridge', 'state': 'TN', 'position': 'OLB', 'height': 74.0, 'weight': '215', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': '936', 'positionRank': '58', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2004', 'playerName': 'Lamar Divens', 'highSchool': 'Lincoln County', 'city': 'Fayetteville', 'state': 'TN', 'position': 'DT', 'height': 76.0, 'weight': '270', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': '946', 'positionRank': '67', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2004', 'playerName': 'Bryant Anderson', 'highSchool': 'Centennial', 'city': 'Roswell', 'state': 'GA', 'position': 'ATH', 'height': 75.0, 'weight': '200', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '80', 'stateRank': '65', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2004', 'playerName': 'Gabe Hall', 'highSchool': 'Fork Union Military Academy', 'city': 'Fork Union', 'state': 'VA', 'position': 'OG', 'height': 75.0, 'weight': '320', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': '19', 'positionRank': '1', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2004', 'playerName': 'David Carter', 'highSchool': 'Fork Union Military Academy', 'city': 'Fork Union', 'state': 'VA', 'position': 'TE', 'height': 77.0, 'weight': '231', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': '20', 'positionRank': '1', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2004', 'playerName': 'Jeremy Gales', 'highSchool': 'Spring Hill', 'city': 'Columbia', 'state': 'TN', 'position': 'OG', 'height': 76.0, 'weight': '260', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '172', 'stateRank': '32', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2004', 'playerName': 'Theo Horrocks', 'highSchool': 'Lincoln County', 'city': 'Fayetteville', 'state': 'TN', 'position': 'DT', 'height': 75.0, 'weight': '260', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '138', 'stateRank': '33', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2004', 'playerName': 'Cassen Jackson', 'highSchool': 'Knoxville Central', 'city': 'Knoxville', 'state': 'TN', 'position': 'RB', 'height': 73.0, 'weight': '205', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '114', 'stateRank': '34', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2004', 'playerName': 'Josh Allen', 'highSchool': 'Roswell', 'city': 'Roswell', 'state': 'GA', 'position': 'CB', 'height': 69.0, 'weight': '180', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '161', 'stateRank': '113', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2004', 'playerName': 'Zach Logan', 'highSchool': 'Rivercrest', 'city': 'Wilson', 'state': 'AR', 'position': 'ATH', 'height': 73.0, 'weight': '220', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '106', 'stateRank': '25', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2004', 'playerName': 'Sean Walker', 'highSchool': 'Jefferson County', 'city': 'Louisville', 'state': 'GA', 'position': 'WR', 'height': 73.0, 'weight': '170', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '207', 'stateRank': '114', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2004', 'playerName': 'Reshard Langford', 'highSchool': 'Tanner', 'city': 'Tanner', 'state': 'AL', 'position': 'RB', 'height': 74.0, 'weight': '205', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '119', 'stateRank': '65', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2004', 'playerName': 'Demarcus Bradley', 'highSchool': 'Springfield', 'city': 'Springfield', 'state': 'TN', 'position': 'SDE', 'height': 74.0, 'weight': '261', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '115', 'stateRank': '37', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2004', 'playerName': 'David Whittington', 'highSchool': 'St. Thomas More', 'city': 'Lafayette', 'state': 'LA', 'position': 'FB', 'height': 74.0, 'weight': '240', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '39', 'stateRank': '96', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2012', 'playerName': 'Denico Autry', 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'WDE', 'height': 77.0, 'weight': '255', 'compRating': '0.9637', 'compStars': 4, 'nationalRank': '3', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '3', '247positionRank': '1', '247stateRank': '1'}, {'school': 'mississippi-state', 'year': '2012', 'playerName': 'Quay Evans', 'highSchool': 'Morton', 'city': 'Morton', 'state': 'MS', 'position': 'DT', 'height': 75.0, 'weight': '305', 'compRating': '0.9486', 'compStars': 4, 'nationalRank': '126', 'positionRank': '12', 'stateRank': '3', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '179', '247positionRank': '13', '247stateRank': '5'}, {'school': 'mississippi-state', 'year': '2012', 'playerName': 'Nick James', 'highSchool': 'Long Beach', 'city': 'Long Beach', 'state': 'MS', 'position': 'DT', 'height': 77.0, 'weight': '335', 'compRating': '0.9298', 'compStars': 4, 'nationalRank': '184', 'positionRank': '17', 'stateRank': '4', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '134', '247positionRank': '11', '247stateRank': '4'}, {'school': 'mississippi-state', 'year': '2012', 'playerName': 'Beniquez Brown', 'highSchool': 'Florence', 'city': 'Florence', 'state': 'AL', 'position': 'OLB', 'height': 73.5, 'weight': '215', 'compRating': '0.9188', 'compStars': 4, 'nationalRank': '230', 'positionRank': '25', 'stateRank': '11', '247Rating': ' 92 ', '247Stars': 4, '247positionRank': '31', '247stateRank': '11'}, {'school': 'mississippi-state', 'year': '2012', 'playerName': 'Will Redmond', 'highSchool': 'East', 'city': 'Memphis', 'state': 'TN', 'position': 'ATH', 'height': 72.0, 'weight': '180', 'compRating': '0.9059', 'compStars': 4, 'nationalRank': '287', 'positionRank': '21', 'stateRank': '6', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '30', '247stateRank': '6'}, {'school': 'mississippi-state', 'year': '2012', 'playerName': 'A.J. Jefferson', 'highSchool': 'North Pike', 'city': 'Summit', 'state': 'MS', 'position': 'SDE', 'height': 74.0, 'weight': '254', 'compRating': '0.8908', 'compStars': 4, 'nationalRank': '375', 'positionRank': '22', 'stateRank': '7', '247Rating': ' 92 ', '247Stars': 4, '247positionRank': '12', '247stateRank': '6'}, {'school': 'mississippi-state', 'year': '2012', 'playerName': 'Richie Brown', 'highSchool': 'Long Beach', 'city': 'Long Beach', 'state': 'MS', 'position': 'ILB', 'height': 74.5, 'weight': '230', 'compRating': '0.8893', 'compStars': 3, 'nationalRank': '386', 'positionRank': '18', 'stateRank': '8', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '19', '247stateRank': '8'}, {'school': 'mississippi-state', 'year': '2012', 'playerName': 'Xavier Grindle', 'highSchool': 'East Marion', 'city': 'Columbia', 'state': 'MS', 'position': 'RB', 'height': 70.0, 'weight': '190', 'compRating': '0.8754', 'compStars': 3, 'nationalRank': '555', 'positionRank': '31', 'stateRank': '10'}, {'school': 'mississippi-state', 'year': '2012', 'playerName': 'Devon Desper', 'highSchool': 'Madison Central', 'city': 'Madison', 'state': 'MS', 'position': 'OC', 'height': 76.0, 'weight': '300', 'compRating': '0.8719', 'compStars': 3, 'nationalRank': '595', 'positionRank': '11', 'stateRank': '11', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '12', '247stateRank': '18'}, {'school': 'mississippi-state', 'year': '2012', 'playerName': 'Quadry Antoine', 'highSchool': 'Belle Chasse', 'city': 'Belle Chasse', 'state': 'LA', 'position': 'S', 'height': 71.0, 'weight': '205', 'compRating': '0.8697', 'compStars': 3, 'nationalRank': '634', 'positionRank': '38', 'stateRank': '26', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '34', '247stateRank': '25'}, {'school': 'mississippi-state', 'year': '2012', 'playerName': 'Nelson Adams', 'highSchool': 'Brandon', 'city': 'Brandon', 'state': 'MS', 'position': 'SDE', 'height': 76.0, 'weight': '290', 'compRating': '0.8587', 'compStars': 3, 'nationalRank': '760', 'positionRank': '42', 'stateRank': '13', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '44', '247stateRank': '17'}, {'school': 'mississippi-state', 'year': '2012', 'playerName': 'Cedric Jiles', 'highSchool': 'Clinton', 'city': 'Clinton', 'state': 'MS', 'position': 'CB', 'height': 70.0, 'weight': '170', 'compRating': '0.8559', 'compStars': 3, 'nationalRank': '793', 'positionRank': '55', 'stateRank': '14', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '54', '247stateRank': '16'}, {'school': 'mississippi-state', 'year': '2012', 'playerName': 'Brandon Holloway', 'highSchool': 'Alonso', 'city': 'Tampa', 'state': 'FL', 'position': 'ATH', 'height': 70.0, 'weight': '160', 'compRating': '0.8494', 'compStars': 3, 'nationalRank': '879', 'positionRank': '62', 'stateRank': '105', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '68', '247stateRank': '97'}, {'school': 'mississippi-state', 'year': '2012', 'playerName': 'Ryan Brown', 'highSchool': 'Archbishop Shaw', 'city': 'Marrero', 'state': 'LA', 'position': 'SDE', 'height': 76.0, 'weight': '240', 'compRating': '0.8484', 'compStars': 3, 'nationalRank': '893', 'positionRank': '47', 'stateRank': '33', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '57', '247stateRank': '40'}, {'school': 'mississippi-state', 'year': '2012', 'playerName': 'Deontay Evans', 'highSchool': 'McComb', 'city': 'Mccomb', 'state': 'MS', 'position': 'WR', 'height': 71.0, 'weight': '190', 'compRating': '0.8472', 'compStars': 3, 'nationalRank': '913', 'positionRank': '106', 'stateRank': '18', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '102', '247stateRank': '15'}, {'school': 'mississippi-state', 'year': '2012', 'playerName': 'Jordan Washington', 'highSchool': 'North Gwinnett', 'city': 'Suwanee', 'state': 'GA', 'position': 'DT', 'height': 74.0, 'weight': '265', 'compRating': '0.8428', 'compStars': 3, 'nationalRank': '987', 'positionRank': '67', 'stateRank': '84', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '86', '247stateRank': '99'}, {'school': 'mississippi-state', 'year': '2012', 'playerName': 'Fred Brown', 'highSchool': 'Jim Hill', 'city': 'Jackson', 'state': 'MS', 'position': 'WR', 'height': 74.0, 'weight': '176', 'compRating': '0.8407', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '118', 'stateRank': '21', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '116', '247stateRank': '20'}, {'school': 'mississippi-state', 'year': '2012', 'playerName': 'Torrey Dale', 'highSchool': 'John Curtis', 'city': 'New Orleans', 'state': 'LA', 'position': 'WDE', 'height': 76.0, 'weight': '248', 'compRating': '0.8375', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '54', 'stateRank': '38', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '52', '247stateRank': '34'}, {'school': 'mississippi-state', 'year': '2012', 'playerName': 'Charles Siddoway', 'highSchool': 'Butte College', 'city': 'Oroville', 'state': 'CA', 'position': 'OT', 'height': 79.0, 'weight': '295', 'compRating': '0.8363', 'compStars': 3, 'nationalRank': '69', 'positionRank': '12', 'stateRank': '21', '247Rating': ' 82 ', '247Stars': 3, '247nationalRank': '97', '247positionRank': '13', '247stateRank': '35'}, {'school': 'mississippi-state', 'year': '2012', 'playerName': 'Cole Carter', 'highSchool': 'Caledonia', 'city': 'Caledonia', 'state': 'MS', 'position': 'OT', 'height': 77.0, 'weight': '290', 'compRating': '0.8316', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '108', 'stateRank': '24', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '101', '247stateRank': '26'}, {'school': 'mississippi-state', 'year': '2012', 'playerName': 'Devon Bell', 'highSchool': 'Warren Central', 'city': 'Vicksburg', 'state': 'MS', 'position': 'P', 'height': 74.0, 'weight': '180', 'compRating': '0.8216', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '2', 'stateRank': '26', '247Rating': ' 78 ', '247Stars': 2, '247positionRank': '3', '247stateRank': '37'}, {'school': 'mississippi-state', 'year': '2012', 'playerName': 'Gus Walley', 'highSchool': 'Greene County', 'city': 'Leakesville', 'state': 'MS', 'position': 'TE', 'height': 76.0, 'weight': '220', 'compRating': '0.8146', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '68', 'stateRank': '27', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '63', '247stateRank': '30'}, {'school': 'mississippi-state', 'year': '2012', 'playerName': 'Justin Senior', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'OT', 'height': 78.0, 'weight': '305', 'compRating': '0.8130', 'compStars': 3, 'nationalRank': '20', 'positionRank': '4', 'stateRank': '15', '247Rating': ' 75 ', '247Stars': 2, '247nationalRank': '29', '247positionRank': '4', '247stateRank': '20'}, {'school': 'mississippi-state', 'year': '2012', 'playerName': 'Dylan Holley', 'highSchool': 'Mississippi Gulf Coast C.C.', 'city': 'Perkinston', 'state': 'MS', 'position': 'OC', 'height': 75.0, 'weight': '300', 'compRating': '0.8067', 'compStars': 3, 'nationalRank': '123', 'positionRank': '2', 'stateRank': '19', '247Rating': ' 82 ', '247Stars': 3, '247nationalRank': '99', '247positionRank': '2', '247stateRank': '17'}, {'school': 'mississippi-state', 'year': '2012', 'playerName': 'Adarrius Perkins', 'highSchool': 'Forrest County Agricultural', 'city': 'Brooklyn', 'state': 'MS', 'position': 'WR', 'height': 74.0, 'weight': '220', 'compRating': '0.8481', 'compStars': 3, 'nationalRank': '897', 'positionRank': '104', 'stateRank': '17', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '86', '247stateRank': '13'}, {'school': 'mississippi-state', 'year': '2012', 'playerName': 'Kivon Coman', 'highSchool': 'Florence', 'city': 'Florence', 'state': 'AL', 'position': 'ATH', 'height': 73.0, 'weight': '185', 'compRating': '0.8335', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '84', 'stateRank': '37', '247Rating': ' 83 ', '247Stars': 3, '247nationalRank': '28', '247positionRank': '1', '247stateRank': '21'}, {'school': 'mississippi-state', 'year': '2012', 'playerName': 'Artimas Samuel', 'highSchool': 'Carver', 'city': 'Columbus', 'state': 'GA', 'position': 'WR', 'height': 74.0, 'weight': '250', 'compRating': '0.8172', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '177', 'stateRank': '113'}, {'school': 'mississippi-state', 'year': '2012', 'playerName': 'Nick Schuessler', 'highSchool': 'Grayson', 'city': 'Loganville', 'state': 'GA', 'position': 'PRO', 'height': 76.0, 'weight': '190', 'compRating': '0.8097', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '68', 'stateRank': '123', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '49', '247stateRank': '86'}, {'school': 'texas-am', 'year': '2008', 'playerName': 'Cyrus Gray', 'highSchool': 'DeSoto', 'city': 'DeSoto', 'state': 'TX', 'position': 'RB', 'height': 71.0, 'weight': '190', 'compRating': '0.9668', 'compStars': 4, 'nationalRank': '70', 'positionRank': '7', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2008', 'playerName': 'Matt Moss', 'highSchool': 'Grossmont College', 'city': 'El Cajon', 'state': 'CA', 'position': 'SDE', 'height': 76.0, 'weight': '270', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '23', 'positionRank': '6', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2008', 'playerName': 'Andrew Wolridge', 'highSchool': 'Lexington', 'city': 'Lexington', 'state': 'TX', 'position': 'SDE', 'height': 73.0, 'weight': '275', 'compRating': '0.8938', 'compStars': 4, 'nationalRank': '301', 'positionRank': '17', 'stateRank': '43', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2008', 'playerName': 'Tony Jerod-Eddie', 'highSchool': 'DeSoto', 'city': 'DeSoto', 'state': 'TX', 'position': 'DT', 'height': 77.0, 'weight': '300', 'compRating': '0.8803', 'compStars': 3, 'nationalRank': '391', 'positionRank': '28', 'stateRank': '57', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2008', 'playerName': 'K.J. Williams', 'highSchool': 'Norman North', 'city': 'Norman', 'state': 'OK', 'position': 'SDE', 'height': 75.0, 'weight': '262', 'compRating': '0.8764', 'compStars': 3, 'nationalRank': '461', 'positionRank': '23', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2008', 'playerName': 'Brian Thomas', 'highSchool': 'Pearland', 'city': 'Pearland', 'state': 'TX', 'position': 'OG', 'height': 75.0, 'weight': '303', 'compRating': '0.8738', 'compStars': 3, 'nationalRank': '463', 'positionRank': '28', 'stateRank': '68', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2008', 'playerName': 'LeRoy Chevalier', 'highSchool': 'Yates', 'city': 'Houston', 'state': 'TX', 'position': 'OG', 'height': 78.0, 'weight': '325', 'compRating': '0.8733', 'compStars': 3, 'nationalRank': '470', 'positionRank': '29', 'stateRank': '70', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2008', 'playerName': 'Chris Lathrop', 'highSchool': 'Cy-Fair', 'city': 'Cypress', 'state': 'TX', 'position': 'OG', 'height': 76.0, 'weight': '288', 'compRating': '0.8608', 'compStars': 3, 'nationalRank': '614', 'positionRank': '43', 'stateRank': '86', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2008', 'playerName': 'Adren Dorsey', 'highSchool': 'John Tyler', 'city': 'Tyler', 'state': 'TX', 'position': 'DT', 'height': 76.0, 'weight': '285', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '683', 'positionRank': '49', 'stateRank': '98', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2008', 'playerName': 'Blake Chavis', 'highSchool': 'Westbrook School', 'city': 'Westbrook', 'state': 'TX', 'position': 'SDE', 'height': 77.0, 'weight': '230', 'compRating': '0.8516', 'compStars': 3, 'nationalRank': '730', 'positionRank': '39', 'stateRank': '111', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2008', 'playerName': 'Eddie Brown Jr.', 'highSchool': 'Waller', 'city': 'Waller', 'state': 'TX', 'position': 'DT', 'height': 72.0, 'weight': '295', 'compRating': '0.8479', 'compStars': 3, 'nationalRank': '779', 'positionRank': '54', 'stateRank': '118', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2008', 'playerName': 'Aaron Buckley', 'highSchool': 'Palacios', 'city': 'Palacios', 'state': 'TX', 'position': 'ILB', 'height': 73.0, 'weight': '225', 'compRating': '0.8479', 'compStars': 3, 'nationalRank': '791', 'positionRank': '43', 'stateRank': '120', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2008', 'playerName': 'Josh Ayers', 'highSchool': 'Trinity', 'city': 'Euless', 'state': 'TX', 'position': 'OG', 'height': 76.0, 'weight': '270', 'compRating': '0.8385', 'compStars': 3, 'nationalRank': '900', 'positionRank': '67', 'stateRank': '140', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2008', 'playerName': 'Joe Villavisencio', 'highSchool': 'Jacksonville', 'city': 'Jacksonville', 'state': 'TX', 'position': 'OG', 'height': 76.0, 'weight': '305', 'compRating': '0.8377', 'compStars': 3, 'nationalRank': '903', 'positionRank': '68', 'stateRank': '141', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2008', 'playerName': 'Terrence Frederick', 'highSchool': 'Katy', 'city': 'Katy', 'state': 'TX', 'position': 'CB', 'height': 70.0, 'weight': '184', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2008', 'playerName': 'Derrick Hall', 'highSchool': 'Beaumont Central', 'city': 'Beaumont', 'state': 'TX', 'position': 'ATH', 'height': 70.0, 'weight': '200', 'compRating': '0.9538', 'compStars': 4, 'nationalRank': '96', 'positionRank': '3', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2008', 'playerName': 'Jeff Fuller', 'highSchool': 'Boyd', 'city': 'Boyd', 'state': 'TX', 'position': 'WR', 'height': 76.0, 'weight': '205', 'compRating': '0.9387', 'compStars': 4, 'nationalRank': '121', 'positionRank': '20', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2008', 'playerName': 'Rod Davis', 'highSchool': 'Aldine Eisenhower', 'city': 'Houston', 'state': 'TX', 'position': 'DT', 'height': 72.0, 'weight': '300', 'compRating': '0.9362', 'compStars': 4, 'nationalRank': '131', 'positionRank': '8', 'stateRank': '20', '247Rating': ' 70 ', '247Stars': 2, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2008', 'playerName': 'Tommy Dorman', 'highSchool': 'Birdville', 'city': 'North Richland Hills', 'state': 'TX', 'position': 'DUAL', 'height': 75.0, 'weight': '205', 'compRating': '0.8959', 'compStars': 4, 'nationalRank': '279', 'positionRank': '4', 'stateRank': '39', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2008', 'playerName': 'Kyle Mangan', 'highSchool': 'Brenham', 'city': 'Brenham', 'state': 'TX', 'position': 'ILB', 'height': 74.0, 'weight': '225', 'compRating': '0.8702', 'compStars': 3, 'nationalRank': '494', 'positionRank': '26', 'stateRank': '73', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2008', 'playerName': 'Gerald Williams', 'highSchool': 'City College of San Francisco', 'city': 'San Francisco', 'state': 'CA', 'position': 'ILB', 'height': 77.0, 'weight': '245', 'compRating': '0.9444', 'compStars': 4, 'nationalRank': '3', 'positionRank': '1', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2008', 'playerName': 'E.J. Abrams-Ward', 'highSchool': 'Thomasville', 'city': 'Thomasville', 'state': 'NC', 'position': 'ATH', 'height': 77.0, 'weight': '210', 'compRating': '0.9295', 'compStars': 4, 'nationalRank': '152', 'positionRank': '8', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2008', 'playerName': 'Aaron Douglas', 'highSchool': 'Maryville', 'city': 'Maryville', 'state': 'TN', 'position': 'TE', 'height': 78.0, 'weight': '245', 'compRating': '0.9073', 'compStars': 4, 'nationalRank': '230', 'positionRank': '11', 'stateRank': '2'}, {'school': 'tennessee', 'year': '2008', 'playerName': 'Rod Wilks', 'highSchool': 'Smyrna', 'city': 'Smyrna', 'state': 'TN', 'position': 'S', 'height': 72.0, 'weight': '214', 'compRating': '0.8941', 'compStars': 4, 'nationalRank': '295', 'positionRank': '23', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2008', 'playerName': 'Tauren Poole', 'highSchool': 'Stephens County', 'city': 'Toccoa', 'state': 'GA', 'position': 'RB', 'height': 71.0, 'weight': '213', 'compRating': '0.8826', 'compStars': 3, 'nationalRank': '377', 'positionRank': '35', 'stateRank': '28', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2008', 'playerName': 'Casey Kelly', 'highSchool': 'Sarasota', 'city': 'Sarasota', 'state': 'FL', 'position': 'PRO', 'height': 74.0, 'weight': '191', 'compRating': '0.8764', 'compStars': 3, 'nationalRank': '456', 'positionRank': '18', 'stateRank': '65', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2008', 'playerName': 'Preston Bailey', 'highSchool': 'Montgomery Bell Academy', 'city': 'Nashville', 'state': 'TN', 'position': 'OT', 'height': 77.0, 'weight': '315', 'compRating': '0.8733', 'compStars': 3, 'nationalRank': '467', 'positionRank': '45', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2008', 'playerName': 'Prentiss Waggner', 'highSchool': 'Clinton', 'city': 'Clinton', 'state': 'LA', 'position': 'S', 'height': 74.0, 'weight': '181', 'compRating': '0.8701', 'compStars': 3, 'nationalRank': '509', 'positionRank': '42', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2008', 'playerName': 'Dallas Thomas', 'highSchool': 'Scotlandville Magnet', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'OT', 'height': 77.0, 'weight': '284', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '667', 'positionRank': '56', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2008', 'playerName': 'Willie Bohannon', 'highSchool': 'Blount', 'city': 'Eight Mile', 'state': 'AL', 'position': 'WDE', 'height': 75.0, 'weight': '230', 'compRating': '0.8528', 'compStars': 3, 'nationalRank': '717', 'positionRank': '20', 'stateRank': '31', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2008', 'playerName': 'Ben Bartholomew', 'highSchool': 'Montgomery Bell Academy', 'city': 'Nashville', 'state': 'TN', 'position': 'FB', 'height': 74.0, 'weight': '251', 'compRating': '0.8479', 'compStars': 3, 'nationalRank': '781', 'positionRank': '4', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2008', 'playerName': 'Austin Johnson', 'highSchool': 'Hickory', 'city': 'Hickory', 'state': 'NC', 'position': 'ILB', 'height': 74.0, 'weight': '231', 'compRating': '0.8479', 'compStars': 3, 'nationalRank': '790', 'positionRank': '42', 'stateRank': '25', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2008', 'playerName': 'Steven Fowlkes', 'highSchool': 'Banneker', 'city': 'Atlanta', 'state': 'GA', 'position': 'ATH', 'height': 77.0, 'weight': '220', 'compRating': '0.8465', 'compStars': 3, 'nationalRank': '797', 'positionRank': '51', 'stateRank': '53', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2008', 'playerName': 'Montori Hughes', 'highSchool': 'Siegel', 'city': 'Murfreesboro', 'state': 'TN', 'position': 'DT', 'height': 77.0, 'weight': '255', 'compRating': '0.8336', 'compStars': 3, 'nationalRank': '955', 'positionRank': '61', 'stateRank': '27', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2008', 'playerName': 'Herman Lathers', 'highSchool': 'Scotlandville Magnet', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'OLB', 'height': 72.0, 'weight': '217', 'compRating': '0.8323', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '74', 'stateRank': '34', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2008', 'playerName': 'Carson Anderson', 'highSchool': 'Florence', 'city': 'Florence', 'state': 'AL', 'position': 'OG', 'height': 73.0, 'weight': '280', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '97', 'stateRank': '47', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2008', 'playerName': 'StePhaun Raines', 'highSchool': 'Coffeyville C.C.', 'city': 'Coffeyville', 'state': 'KS', 'position': 'CB', 'height': 72.0, 'weight': '180', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': '219', 'positionRank': '23', 'stateRank': '31', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2008', 'playerName': 'Marlon Walls', 'highSchool': 'Olive Branch', 'city': 'Olive Branch', 'state': 'MS', 'position': 'OLB', 'height': 74.0, 'weight': '225', 'compRating': '0.8844', 'compStars': 3, 'nationalRank': '364', 'positionRank': '30', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2020', 'playerName': 'Justin Rogers', 'highSchool': 'Oak Park', 'city': 'Oak Park', 'state': 'MI', 'position': 'DT', 'height': 74.5, 'weight': '311', 'compRating': '0.9744', 'compStars': 4, 'nationalRank': '52', 'positionRank': '7', 'stateRank': '1', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '76', '247positionRank': '11', '247stateRank': '1'}, {'school': 'kentucky', 'year': '2020', 'playerName': 'Michael Drennen II', 'highSchool': 'Dublin Coffman', 'city': 'Dublin', 'state': 'OH', 'position': 'APB', 'height': 71.0, 'weight': '196', 'compRating': '0.9103', 'compStars': 4, 'nationalRank': '247', 'positionRank': '6', 'stateRank': '4', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '6', '247stateRank': '10'}, {'school': 'kentucky', 'year': '2020', 'playerName': 'Josaih Hayes', 'highSchool': 'Horn Lake', 'city': 'Horn Lake', 'state': 'MS', 'position': 'DT', 'height': 74.0, 'weight': '308', 'compRating': '0.9093', 'compStars': 4, 'nationalRank': '251', 'positionRank': '28', 'stateRank': '4', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '50', '247stateRank': '14'}, {'school': 'kentucky', 'year': '2020', 'playerName': 'Samuel Anaele', 'highSchool': 'McDougal Technical Institute', 'city': 'Deerfield Beach', 'state': 'FL', 'position': 'SDE', 'height': 76.0, 'weight': '243', 'compRating': '0.9046', 'compStars': 4, 'nationalRank': '273', 'positionRank': '11', 'stateRank': '47', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '23', '247stateRank': '67'}, {'school': 'kentucky', 'year': '2020', 'playerName': 'Joel Williams', 'highSchool': 'Madison Prep Academy', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'ATH', 'height': 73.0, 'weight': '180', 'compRating': '0.8923', 'compStars': 4, 'nationalRank': '360', 'positionRank': '16', 'stateRank': '16', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '24', '247stateRank': '19'}, {'school': 'kentucky', 'year': '2020', 'playerName': 'Jeremy Flax', 'highSchool': 'Independence C.C.', 'city': 'Independence', 'state': 'KS', 'position': 'OT', 'height': 78.0, 'weight': '320', 'compRating': '0.8917', 'compStars': 4, 'nationalRank': '8', 'positionRank': '1', 'stateRank': '4', '247Rating': ' 90 ', '247Stars': 4, '247nationalRank': '9', '247positionRank': '1', '247stateRank': '4'}, {'school': 'kentucky', 'year': '2020', 'playerName': 'John Young', 'highSchool': 'Christian Academy Of Louisville', 'city': 'Louisville', 'state': 'KY', 'position': 'OT', 'height': 78.0, 'weight': '277', 'compRating': '0.8904', 'compStars': 4, 'nationalRank': '372', 'positionRank': '27', 'stateRank': '3', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '38', '247stateRank': '3'}, {'school': 'kentucky', 'year': '2020', 'playerName': 'Jutahn McClain', 'highSchool': 'Fairfield', 'city': 'Fairfield', 'state': 'OH', 'position': 'APB', 'height': 70.0, 'weight': '180', 'compRating': '0.8884', 'compStars': 3, 'nationalRank': '392', 'positionRank': '7', 'stateRank': '8', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '7', '247stateRank': '12'}, {'school': 'kentucky', 'year': '2020', 'playerName': 'Deondre Buford', 'highSchool': 'Martin Luther King', 'city': 'Detroit', 'state': 'MI', 'position': 'OT', 'height': 76.0, 'weight': '273', 'compRating': '0.8863', 'compStars': 3, 'nationalRank': '408', 'positionRank': '33', 'stateRank': '11', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '31', '247stateRank': '10'}, {'school': 'kentucky', 'year': '2020', 'playerName': "Tre'vonn Rybka", 'highSchool': 'Dickson County', 'city': 'Dickson', 'state': 'TN', 'position': 'DT', 'height': 76.0, 'weight': '281', 'compRating': '0.8850', 'compStars': 3, 'nationalRank': '423', 'positionRank': '44', 'stateRank': '12', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '53', '247stateRank': '13'}, {'school': 'kentucky', 'year': '2020', 'playerName': 'RJ Adams', 'highSchool': 'Woodbridge', 'city': 'Woodbridge', 'state': 'VA', 'position': 'OG', 'height': 75.0, 'weight': '326', 'compRating': '0.8817', 'compStars': 3, 'nationalRank': '459', 'positionRank': '23', 'stateRank': '12', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '31', '247stateRank': '15'}, {'school': 'kentucky', 'year': '2020', 'playerName': 'Vito Tisdale', 'highSchool': 'Bowling Green', 'city': 'Bowling Green', 'state': 'KY', 'position': 'S', 'height': 71.0, 'weight': '195', 'compRating': '0.8805', 'compStars': 3, 'nationalRank': '472', 'positionRank': '40', 'stateRank': '4', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '43', '247stateRank': '5'}, {'school': 'kentucky', 'year': '2020', 'playerName': 'Beau Allen', 'highSchool': 'Lexington Catholic', 'city': 'Lexington', 'state': 'KY', 'position': 'PRO', 'height': 74.0, 'weight': '203', 'compRating': '0.8791', 'compStars': 3, 'nationalRank': '487', 'positionRank': '18', 'stateRank': '5', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '37', '247stateRank': '10'}, {'school': 'kentucky', 'year': '2020', 'playerName': 'Earnest Sanders', 'highSchool': 'Beecher', 'city': 'Mount Morris', 'state': 'MI', 'position': 'WR', 'height': 72.0, 'weight': '190', 'compRating': '0.8756', 'compStars': 3, 'nationalRank': '532', 'positionRank': '86', 'stateRank': '16', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '81', '247stateRank': '14'}, {'school': 'kentucky', 'year': '2020', 'playerName': 'Octavious Oxendine', 'highSchool': 'North Hardin', 'city': 'Radcliff', 'state': 'KY', 'position': 'DT', 'height': 74.0, 'weight': '308', 'compRating': '0.8707', 'compStars': 3, 'nationalRank': '613', 'positionRank': '52', 'stateRank': '7', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '91', '247stateRank': '13'}, {'school': 'kentucky', 'year': '2020', 'playerName': 'Kalil Branham', 'highSchool': 'Northland', 'city': 'Columbus', 'state': 'OH', 'position': 'WR', 'height': 73.0, 'weight': '205', 'compRating': '0.8689', 'compStars': 3, 'nationalRank': '632', 'positionRank': '100', 'stateRank': '18', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '120', '247stateRank': '28'}, {'school': 'kentucky', 'year': '2020', 'playerName': 'Andru Phillips', 'highSchool': 'Mauldin', 'city': 'Mauldin', 'state': 'SC', 'position': 'CB', 'height': 71.0, 'weight': '180', 'compRating': '0.8688', 'compStars': 3, 'nationalRank': '639', 'positionRank': '47', 'stateRank': '10', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '77', '247stateRank': '16'}, {'school': 'kentucky', 'year': '2020', 'playerName': 'Izayah Cummings', 'highSchool': 'Louisville Male', 'city': 'Louisville', 'state': 'KY', 'position': 'WR', 'height': 75.0, 'weight': '212', 'compRating': '0.8681', 'compStars': 3, 'nationalRank': '651', 'positionRank': '102', 'stateRank': '8', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '97', '247stateRank': '7'}, {'school': 'kentucky', 'year': '2020', 'playerName': 'Rickey Hyatt', 'highSchool': 'Westerville Central', 'city': 'Westerville', 'state': 'OH', 'position': 'S', 'height': 73.0, 'weight': '195', 'compRating': '0.8647', 'compStars': 3, 'nationalRank': '722', 'positionRank': '55', 'stateRank': '22', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '55', '247stateRank': '18'}, {'school': 'kentucky', 'year': '2020', 'playerName': 'Joshua Jones', 'highSchool': 'Central', 'city': 'Phenix City', 'state': 'AL', 'position': 'OT', 'height': 76.5, 'weight': '304', 'compRating': '0.8559', 'compStars': 3, 'nationalRank': '931', 'positionRank': '73', 'stateRank': '34', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '95', '247stateRank': '38'}, {'school': 'kentucky', 'year': '2020', 'playerName': "D'Eryk Jackson", 'highSchool': 'West Laurens', 'city': 'Dublin', 'state': 'GA', 'position': 'ILB', 'height': 74.0, 'weight': '235', 'compRating': '0.8519', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '49', 'stateRank': '111', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '43', '247stateRank': '94'}, {'school': 'kentucky', 'year': '2020', 'playerName': 'Carrington Valentine', 'highSchool': 'Archbishop Moeller', 'city': 'Cincinnati', 'state': 'OH', 'position': 'CB', 'height': 72.0, 'weight': '178', 'compRating': '0.8518', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '91', 'stateRank': '39', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '93', '247stateRank': '35'}, {'school': 'ole-miss', 'year': '2016', 'playerName': 'Greg Little', 'highSchool': 'Allen', 'city': 'Allen', 'state': 'TX', 'position': 'OT', 'height': 77.5, 'weight': '305', 'compRating': '0.9991', 'compStars': 5, 'nationalRank': '3', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '5', '247positionRank': '1', '247stateRank': '1'}, {'school': 'ole-miss', 'year': '2016', 'playerName': 'Shea Patterson', 'highSchool': 'IMG Academy', 'city': 'Bradenton', 'state': 'FL', 'position': 'PRO', 'height': 73.5, 'weight': '192', 'compRating': '0.9982', 'compStars': 5, 'nationalRank': '4', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 99 ', '247Stars': 5, '247nationalRank': '3', '247positionRank': '1', '247stateRank': '1'}, {'school': 'ole-miss', 'year': '2016', 'playerName': 'Benito Jones', 'highSchool': 'Wayne County', 'city': 'Waynesboro', 'state': 'MS', 'position': 'DT', 'height': 74.0, 'weight': '285', 'compRating': '0.9843', 'compStars': 5, 'nationalRank': '25', 'positionRank': '6', 'stateRank': '2', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '49', '247positionRank': '7', '247stateRank': '3'}, {'school': 'ole-miss', 'year': '2016', 'playerName': 'A.J. Brown', 'highSchool': 'Starkville', 'city': 'Starkville', 'state': 'MS', 'position': 'WR', 'height': 73.0, 'weight': '220', 'compRating': '0.9803', 'compStars': 4, 'nationalRank': '36', 'positionRank': '4', 'stateRank': '3', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '47', '247positionRank': '5', '247stateRank': '2'}, {'school': 'ole-miss', 'year': '2016', 'playerName': 'Deontay Anderson', 'highSchool': 'Manvel', 'city': 'Manvel', 'state': 'TX', 'position': 'S', 'height': 73.0, 'weight': '192', 'compRating': '0.9739', 'compStars': 4, 'nationalRank': '52', 'positionRank': '2', 'stateRank': '8', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '89', '247positionRank': '4', '247stateRank': '15'}, {'school': 'ole-miss', 'year': '2016', 'playerName': 'D.K. Metcalf', 'highSchool': 'Oxford', 'city': 'Oxford', 'state': 'MS', 'position': 'WR', 'height': 75.75, 'weight': '205', 'compRating': '0.9485', 'compStars': 4, 'nationalRank': '110', 'positionRank': '16', 'stateRank': '6', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '124', '247positionRank': '19', '247stateRank': '6'}, {'school': 'ole-miss', 'year': '2016', 'playerName': 'Octavious Cooley', 'highSchool': 'Laurel', 'city': 'Laurel', 'state': 'MS', 'position': 'TE', 'height': 75.0, 'weight': '220', 'compRating': '0.9289', 'compStars': 4, 'nationalRank': '166', 'positionRank': '6', 'stateRank': '7', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '134', '247positionRank': '3', '247stateRank': '7'}, {'school': 'ole-miss', 'year': '2016', 'playerName': 'Tre Nixon', 'highSchool': 'Viera', 'city': 'Melbourne', 'state': 'FL', 'position': 'WR', 'height': 73.0, 'weight': '170', 'compRating': '0.9256', 'compStars': 4, 'nationalRank': '178', 'positionRank': '35', 'stateRank': '29', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '61', '247stateRank': '45'}, {'school': 'ole-miss', 'year': '2016', 'playerName': 'Jaylon Jones', 'highSchool': 'Allen', 'city': 'Allen', 'state': 'TX', 'position': 'CB', 'height': 71.0, 'weight': '182', 'compRating': '0.9179', 'compStars': 4, 'nationalRank': '212', 'positionRank': '19', 'stateRank': '33', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '33', '247stateRank': '49'}, {'school': 'ole-miss', 'year': '2016', 'playerName': 'Charles Wiley', 'highSchool': 'Stockbridge', 'city': 'Stockbridge', 'state': 'GA', 'position': 'WDE', 'height': 74.5, 'weight': '234', 'compRating': '0.9091', 'compStars': 4, 'nationalRank': '246', 'positionRank': '17', 'stateRank': '23', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '232', '247positionRank': '17', '247stateRank': '19'}, {'school': 'ole-miss', 'year': '2016', 'playerName': "D'Vaughn Pennamon", 'highSchool': 'Manvel', 'city': 'Manvel', 'state': 'TX', 'position': 'APB', 'height': 71.0, 'weight': '220', 'compRating': '0.9091', 'compStars': 4, 'nationalRank': '247', 'positionRank': '6', 'stateRank': '39', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '207', '247positionRank': '5', '247stateRank': '32'}, {'school': 'ole-miss', 'year': '2016', 'playerName': 'Bryce Mathews', 'highSchool': 'Brentwood Academy', 'city': 'Brentwood', 'state': 'TN', 'position': 'OT', 'height': 77.5, 'weight': '280', 'compRating': '0.9086', 'compStars': 4, 'nationalRank': '251', 'positionRank': '24', 'stateRank': '4', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '30', '247stateRank': '8'}, {'school': 'ole-miss', 'year': '2016', 'playerName': 'Justin Connor', 'highSchool': 'North Panola', 'city': 'Sardis', 'state': 'MS', 'position': 'RB', 'height': 70.0, 'weight': '190', 'compRating': '0.8961', 'compStars': 4, 'nationalRank': '308', 'positionRank': '13', 'stateRank': '11', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '18', '247stateRank': '16'}, {'school': 'ole-miss', 'year': '2016', 'playerName': 'Jacob Mathis', 'highSchool': 'Berkeley Prep', 'city': 'Tampa', 'state': 'FL', 'position': 'TE', 'height': 75.5, 'weight': '223', 'compRating': '0.8953', 'compStars': 4, 'nationalRank': '311', 'positionRank': '11', 'stateRank': '43', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '25', '247stateRank': '73'}, {'school': 'ole-miss', 'year': '2016', 'playerName': 'Gabe Angel', 'highSchool': 'Cookeville', 'city': 'Cookeville', 'state': 'TN', 'position': 'TE', 'height': 75.0, 'weight': '212', 'compRating': '0.8911', 'compStars': 4, 'nationalRank': '337', 'positionRank': '14', 'stateRank': '8', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '20', '247stateRank': '15'}, {'school': 'ole-miss', 'year': '2016', 'playerName': 'Royce Newman', 'highSchool': 'Nashville Comm', 'city': 'Nashville', 'state': 'IL', 'position': 'OT', 'height': 79.0, 'weight': '255', 'compRating': '0.8886', 'compStars': 3, 'nationalRank': '347', 'positionRank': '35', 'stateRank': '7', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '246', '247positionRank': '25', '247stateRank': '6'}, {'school': 'ole-miss', 'year': '2016', 'playerName': 'Chandler Tuitt', 'highSchool': 'Sandy Creek', 'city': 'Tyrone', 'state': 'GA', 'position': 'OG', 'height': 75.0, 'weight': '294', 'compRating': '0.8745', 'compStars': 3, 'nationalRank': '453', 'positionRank': '23', 'stateRank': '43', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '24', '247stateRank': '35'}, {'school': 'ole-miss', 'year': '2016', 'playerName': 'Eli Johnson', 'highSchool': 'Lafayette', 'city': 'Oxford', 'state': 'MS', 'position': 'OC', 'height': 75.0, 'weight': '295', 'compRating': '0.8706', 'compStars': 3, 'nationalRank': '485', 'positionRank': '4', 'stateRank': '14', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '5', '247stateRank': '12'}, {'school': 'ole-miss', 'year': '2016', 'playerName': 'Josiah Coatney', 'highSchool': 'Holmes C.C.', 'city': 'Goodman', 'state': 'MS', 'position': 'SDE', 'height': 77.0, 'weight': '285', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '54', 'positionRank': '4', 'stateRank': '9', '247Rating': ' 90 ', '247Stars': 4, '247nationalRank': '22', '247positionRank': '4', '247stateRank': '4'}, {'school': 'ole-miss', 'year': '2016', 'playerName': 'Greg Eisworth', 'highSchool': 'South Grand Prairie', 'city': 'Grand Prairie', 'state': 'TX', 'position': 'S', 'height': 71.5, 'weight': '185', 'compRating': '0.8641', 'compStars': 3, 'nationalRank': '563', 'positionRank': '36', 'stateRank': '88', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '61', '247positionRank': '3', '247stateRank': '6'}, {'school': 'ole-miss', 'year': '2016', 'playerName': 'Donta Evans', 'highSchool': 'Archer', 'city': 'Lawrenceville', 'state': 'GA', 'position': 'ILB', 'height': 73.0, 'weight': '230', 'compRating': '0.8615', 'compStars': 3, 'nationalRank': '602', 'positionRank': '22', 'stateRank': '51', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '33', '247stateRank': '78'}, {'school': 'ole-miss', 'year': '2016', 'playerName': 'Jarrion Street', 'highSchool': 'Hewitt-Trussville', 'city': 'Trussville', 'state': 'AL', 'position': 'RB', 'height': 73.0, 'weight': '195', 'compRating': '0.8600', 'compStars': 3, 'nationalRank': '623', 'positionRank': '37', 'stateRank': '23', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '33', '247stateRank': '20'}, {'school': 'ole-miss', 'year': '2016', 'playerName': 'Myles Hartsfield', 'highSchool': 'East Coast Prep', 'city': 'Great Barrington', 'state': 'MA', 'position': 'S', 'height': 72.0, 'weight': '195', 'compRating': '0.8584', 'compStars': 3, 'nationalRank': '3', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '3', '247positionRank': '1', '247stateRank': '1'}, {'school': 'ole-miss', 'year': '2016', 'playerName': 'Jack DeFoor', 'highSchool': 'Calhoun', 'city': 'Calhoun', 'state': 'GA', 'position': 'OT', 'height': 77.0, 'weight': '260', 'compRating': '0.8575', 'compStars': 3, 'nationalRank': '671', 'positionRank': '60', 'stateRank': '60', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '76', '247stateRank': '69'}, {'school': 'ole-miss', 'year': '2016', 'playerName': 'Detric Bing-Dukes', 'highSchool': 'Iowa Western C.C.', 'city': 'Council Bluffs', 'state': 'IA', 'position': 'ILB', 'height': 72.0, 'weight': '230', 'compRating': '0.8241', 'compStars': 3, 'nationalRank': '173', 'positionRank': '5', 'stateRank': '5', '247Rating': ' 85 ', '247Stars': 3, '247nationalRank': '112', '247positionRank': '4', '247stateRank': '4'}, {'school': 'ole-miss', 'year': '2016', 'playerName': 'Tariqious Tisdale', 'highSchool': 'Lexington', 'city': 'Lexington', 'state': 'TN', 'position': 'WDE', 'height': 77.0, 'weight': '265', 'compRating': '0.8537', 'compStars': 3, 'nationalRank': '742', 'positionRank': '49', 'stateRank': '20', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '57', '247positionRank': '4', '247stateRank': '15'}, {'school': 'auburn', 'year': '2019', 'playerName': 'Owen Pappoe', 'highSchool': 'Grayson', 'city': 'Loganville', 'state': 'GA', 'position': 'OLB', 'height': 72.0, 'weight': '210', 'compRating': '0.9879', 'compStars': 5, 'nationalRank': '25', 'positionRank': '1', 'stateRank': '4', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '28', '247positionRank': '3', '247stateRank': '4'}, {'school': 'auburn', 'year': '2019', 'playerName': 'Bo Nix', 'highSchool': 'Pinson Valley', 'city': 'Pinson', 'state': 'AL', 'position': 'DUAL', 'height': 73.5, 'weight': '207', 'compRating': '0.9857', 'compStars': 5, 'nationalRank': '33', 'positionRank': '1', 'stateRank': '3', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '62', '247positionRank': '2', '247stateRank': '3'}, {'school': 'auburn', 'year': '2019', 'playerName': 'Charles Moore', 'highSchool': 'Louisville', 'city': 'Louisville', 'state': 'MS', 'position': 'SDE', 'height': 76.0, 'weight': '268', 'compRating': '0.9681', 'compStars': 4, 'nationalRank': '69', 'positionRank': '6', 'stateRank': '4', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '79', '247positionRank': '6', '247stateRank': '6'}, {'school': 'auburn', 'year': '2019', 'playerName': 'Mark-Antony Richards', 'highSchool': 'Wellington', 'city': 'West Palm Beach', 'state': 'FL', 'position': 'ATH', 'height': 73.0, 'weight': '195', 'compRating': '0.9589', 'compStars': 4, 'nationalRank': '90', 'positionRank': '4', 'stateRank': '12', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '83', '247positionRank': '3', '247stateRank': '11'}, {'school': 'auburn', 'year': '2019', 'playerName': 'Jaren Handy', 'highSchool': 'Hattiesburg', 'city': 'Hattiesburg', 'state': 'MS', 'position': 'SDE', 'height': 77.0, 'weight': '278', 'compRating': '0.9560', 'compStars': 4, 'nationalRank': '100', 'positionRank': '7', 'stateRank': '7', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '91', '247positionRank': '7', '247stateRank': '7'}, {'school': 'auburn', 'year': '2019', 'playerName': 'Zion Puckett', 'highSchool': 'Spalding', 'city': 'Griffin', 'state': 'GA', 'position': 'S', 'height': 72.0, 'weight': '200', 'compRating': '0.9420', 'compStars': 4, 'nationalRank': '133', 'positionRank': '12', 'stateRank': '17', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '190', '247positionRank': '16', '247stateRank': '21'}, {'school': 'auburn', 'year': '2019', 'playerName': 'Keiondre Jones', 'highSchool': 'Callaway', 'city': 'Hogansville', 'state': 'GA', 'position': 'OG', 'height': 76.0, 'weight': '341', 'compRating': '0.9385', 'compStars': 4, 'nationalRank': '144', 'positionRank': '8', 'stateRank': '18', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '16', '247stateRank': '27'}, {'school': 'auburn', 'year': '2019', 'playerName': 'Derick Hall', 'highSchool': 'Gulfport', 'city': 'Gulfport', 'state': 'MS', 'position': 'WDE', 'height': 75.5, 'weight': '216', 'compRating': '0.9378', 'compStars': 4, 'nationalRank': '148', 'positionRank': '8', 'stateRank': '9', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '171', '247positionRank': '11', '247stateRank': '11'}, {'school': 'auburn', 'year': '2019', 'playerName': 'Cam Kelly', 'highSchool': 'Oscar Smith', 'city': 'Chesapeake', 'state': 'VA', 'position': 'ATH', 'height': 73.0, 'weight': '190', 'compRating': '0.9145', 'compStars': 4, 'nationalRank': '218', 'positionRank': '10', 'stateRank': '5', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '205', '247positionRank': '13', '247stateRank': '6'}, {'school': 'auburn', 'year': '2019', 'playerName': 'Jashawn Sheffield', 'highSchool': 'Frederica Academy', 'city': 'Saint Simons Island', 'state': 'GA', 'position': 'ATH', 'height': 73.0, 'weight': '178', 'compRating': '0.9086', 'compStars': 4, 'nationalRank': '249', 'positionRank': '12', 'stateRank': '28', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '34', '247stateRank': '52'}, {'school': 'auburn', 'year': '2019', 'playerName': 'DJ Williams', 'highSchool': 'Sebring', 'city': 'Sebring', 'state': 'FL', 'position': 'RB', 'height': 71.0, 'weight': '210', 'compRating': '0.8975', 'compStars': 4, 'nationalRank': '319', 'positionRank': '21', 'stateRank': '40', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '16', '247stateRank': '26'}, {'school': 'auburn', 'year': '2019', 'playerName': 'Jaylin Simpson', 'highSchool': 'Frederica Academy', 'city': 'Saint Simons Island', 'state': 'GA', 'position': 'CB', 'height': 71.0, 'weight': '185', 'compRating': '0.8958', 'compStars': 4, 'nationalRank': '336', 'positionRank': '34', 'stateRank': '36', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '35', '247stateRank': '36'}, {'school': 'auburn', 'year': '2019', 'playerName': 'Colby Wooden', 'highSchool': 'Archer', 'city': 'Lawrenceville', 'state': 'GA', 'position': 'WDE', 'height': 76.0, 'weight': '230', 'compRating': '0.8937', 'compStars': 4, 'nationalRank': '345', 'positionRank': '22', 'stateRank': '38', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '18', '247stateRank': '34'}, {'school': 'auburn', 'year': '2019', 'playerName': "Ja'Varrius Johnson", 'highSchool': 'Hewitt-Trussville', 'city': 'Trussville', 'state': 'AL', 'position': 'WR', 'height': 68.5, 'weight': '165', 'compRating': '0.8918', 'compStars': 4, 'nationalRank': '364', 'positionRank': '43', 'stateRank': '15', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '225', '247positionRank': '29', '247stateRank': '10'}, {'school': 'auburn', 'year': '2019', 'playerName': 'Tyler Fromm', 'highSchool': 'Warner Robins', 'city': 'Warner Robins', 'state': 'GA', 'position': 'TE', 'height': 77.0, 'weight': '225', 'compRating': '0.8882', 'compStars': 3, 'nationalRank': '415', 'positionRank': '17', 'stateRank': '42', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '236', '247positionRank': '10', '247stateRank': '24'}, {'school': 'auburn', 'year': '2019', 'playerName': 'Nehemiah Pritchett', 'highSchool': 'Jackson', 'city': 'Jackson', 'state': 'AL', 'position': 'CB', 'height': 72.0, 'weight': '172', 'compRating': '0.8809', 'compStars': 3, 'nationalRank': '510', 'positionRank': '49', 'stateRank': '17', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '41', '247stateRank': '13'}, {'school': 'auburn', 'year': '2019', 'playerName': 'Justin Osborne', 'highSchool': 'IMG Academy', 'city': 'Bradenton', 'state': 'FL', 'position': 'OG', 'height': 76.0, 'weight': '300', 'compRating': '0.8809', 'compStars': 3, 'nationalRank': '512', 'positionRank': '31', 'stateRank': '65', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '31', '247stateRank': '45'}, {'school': 'auburn', 'year': '2019', 'playerName': 'Kamaar Bell', 'highSchool': 'Colquitt County', 'city': 'Moultrie', 'state': 'GA', 'position': 'OG', 'height': 75.0, 'weight': '320', 'compRating': '0.8750', 'compStars': 3, 'nationalRank': '586', 'positionRank': '34', 'stateRank': '63', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '48', '247stateRank': '75'}, {'school': 'auburn', 'year': '2019', 'playerName': 'Luke Deal', 'highSchool': 'Emerald', 'city': 'Greenwood', 'state': 'SC', 'position': 'TE', 'height': 76.0, 'weight': '237', 'compRating': '0.8676', 'compStars': 3, 'nationalRank': '720', 'positionRank': '33', 'stateRank': '12', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '47', '247stateRank': '21'}, {'school': 'auburn', 'year': '2019', 'playerName': 'Octavius Brothers', 'highSchool': 'Rockledge', 'city': 'ROCKLEDGE', 'state': 'FL', 'position': 'OLB', 'height': 74.0, 'weight': '210', 'compRating': '0.8634', 'compStars': 3, 'nationalRank': '811', 'positionRank': '59', 'stateRank': '106', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '71', '247stateRank': '103'}, {'school': 'auburn', 'year': '2019', 'playerName': 'Kameron Brown', 'highSchool': 'Lanier', 'city': 'Buford', 'state': 'GA', 'position': 'ILB', 'height': 72.0, 'weight': '222', 'compRating': '0.8118', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '94', 'stateRank': '203', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '111', '247stateRank': '205'}, {'school': 'georgia', 'year': '2018', 'playerName': 'Justin Fields', 'highSchool': 'Harrison', 'city': 'Kennesaw', 'state': 'GA', 'position': 'DUAL', 'height': 75.0, 'weight': '221', 'compRating': '0.9998', 'compStars': 5, 'nationalRank': '2', 'positionRank': '1', 'stateRank': '2', '247Rating': ' 101 ', '247Stars': 5, '247nationalRank': '2', '247positionRank': '1', '247stateRank': '2'}, {'school': 'georgia', 'year': '2018', 'playerName': 'Zamir White', 'highSchool': 'Scotland County', 'city': 'Laurinburg', 'state': 'NC', 'position': 'RB', 'height': 73.0, 'weight': '210', 'compRating': '0.9957', 'compStars': 5, 'nationalRank': '9', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '13', '247positionRank': '1', '247stateRank': '1'}, {'school': 'georgia', 'year': '2018', 'playerName': 'Jamaree Salyer', 'highSchool': 'Pace Academy', 'city': 'Atlanta', 'state': 'GA', 'position': 'OG', 'height': 76.0, 'weight': '342', 'compRating': '0.9956', 'compStars': 5, 'nationalRank': '10', 'positionRank': '1', 'stateRank': '3', '247Rating': ' 99 ', '247Stars': 5, '247nationalRank': '8', '247positionRank': '1', '247stateRank': '3'}, {'school': 'georgia', 'year': '2018', 'playerName': 'Tyson Campbell', 'highSchool': 'American Heritage', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'CB', 'height': 74.5, 'weight': '180', 'compRating': '0.9944', 'compStars': 5, 'nationalRank': '12', 'positionRank': '2', 'stateRank': '4', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '12', '247positionRank': '2', '247stateRank': '4'}, {'school': 'georgia', 'year': '2018', 'playerName': 'Adam Anderson', 'highSchool': 'Rome', 'city': 'Rome', 'state': 'GA', 'position': 'OLB', 'height': 76.0, 'weight': '214', 'compRating': '0.9889', 'compStars': 5, 'nationalRank': '18', 'positionRank': '1', 'stateRank': '4', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '27', '247positionRank': '2', '247stateRank': '4'}, {'school': 'georgia', 'year': '2018', 'playerName': 'Cade Mays', 'highSchool': 'Knoxville Catholic', 'city': 'Knoxville', 'state': 'TN', 'position': 'OT', 'height': 78.0, 'weight': '318', 'compRating': '0.9869', 'compStars': 5, 'nationalRank': '22', 'positionRank': '3', 'stateRank': '1', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '61', '247positionRank': '5', '247stateRank': '1'}, {'school': 'georgia', 'year': '2018', 'playerName': 'Brenton Cox', 'highSchool': 'Stockbridge', 'city': 'Stockbridge', 'state': 'GA', 'position': 'SDE', 'height': 76.5, 'weight': '247', 'compRating': '0.9867', 'compStars': 5, 'nationalRank': '23', 'positionRank': '2', 'stateRank': '5', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '60', '247positionRank': '3', '247stateRank': '6'}, {'school': 'georgia', 'year': '2018', 'playerName': 'Quay Walker', 'highSchool': 'Crisp County', 'city': 'Cordele', 'state': 'GA', 'position': 'OLB', 'height': 76.0, 'weight': '236', 'compRating': '0.9830', 'compStars': 4, 'nationalRank': '31', 'positionRank': '2', 'stateRank': '6', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '31', '247positionRank': '3', '247stateRank': '5'}, {'school': 'georgia', 'year': '2018', 'playerName': 'James Cook', 'highSchool': 'Northwestern', 'city': 'Miami', 'state': 'FL', 'position': 'APB', 'height': 71.5, 'weight': '181', 'compRating': '0.9786', 'compStars': 4, 'nationalRank': '41', 'positionRank': '3', 'stateRank': '8', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '96', '247positionRank': '3', '247stateRank': '14'}, {'school': 'georgia', 'year': '2018', 'playerName': 'Luke Ford', 'highSchool': 'Carterville', 'city': 'Carterville', 'state': 'IL', 'position': 'TE', 'height': 78.0, 'weight': '248', 'compRating': '0.9753', 'compStars': 4, 'nationalRank': '51', 'positionRank': '3', 'stateRank': '1', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '93', '247positionRank': '3', '247stateRank': '1'}, {'school': 'georgia', 'year': '2018', 'playerName': 'Trey Hill', 'highSchool': 'Houston County', 'city': 'Warner Robins', 'state': 'GA', 'position': 'OG', 'height': 75.5, 'weight': '346', 'compRating': '0.9692', 'compStars': 4, 'nationalRank': '62', 'positionRank': '3', 'stateRank': '9', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '78', '247positionRank': '3', '247stateRank': '10'}, {'school': 'georgia', 'year': '2018', 'playerName': 'Otis Reese', 'highSchool': 'Lee County', 'city': 'Leesburg', 'state': 'GA', 'position': 'OLB', 'height': 76.0, 'weight': '206', 'compRating': '0.9575', 'compStars': 4, 'nationalRank': '87', 'positionRank': '5', 'stateRank': '12', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '73', '247positionRank': '7', '247stateRank': '7'}, {'school': 'georgia', 'year': '2018', 'playerName': 'Channing Tindall', 'highSchool': 'Spring Valley', 'city': 'Columbia', 'state': 'SC', 'position': 'ILB', 'height': 74.0, 'weight': '213', 'compRating': '0.9526', 'compStars': 4, 'nationalRank': '103', 'positionRank': '5', 'stateRank': '3', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '23', '247positionRank': '3', '247stateRank': '1'}, {'school': 'georgia', 'year': '2018', 'playerName': 'Kearis Jackson', 'highSchool': 'Peach County', 'city': 'Fort Valley', 'state': 'GA', 'position': 'WR', 'height': 71.5, 'weight': '203', 'compRating': '0.9451', 'compStars': 4, 'nationalRank': '130', 'positionRank': '23', 'stateRank': '16', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '209', '247positionRank': '33', '247stateRank': '24'}, {'school': 'georgia', 'year': '2018', 'playerName': 'Azeez Ojulari', 'highSchool': 'Marietta', 'city': 'Marietta', 'state': 'GA', 'position': 'WDE', 'height': 76.0, 'weight': '224', 'compRating': '0.9391', 'compStars': 4, 'nationalRank': '144', 'positionRank': '10', 'stateRank': '18', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '82', '247positionRank': '7', '247stateRank': '11'}, {'school': 'georgia', 'year': '2018', 'playerName': 'Tommy Bush', 'highSchool': 'Samuel Clemens', 'city': 'Schertz', 'state': 'TX', 'position': 'WR', 'height': 77.0, 'weight': '191', 'compRating': '0.9222', 'compStars': 4, 'nationalRank': '196', 'positionRank': '37', 'stateRank': '23', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '64', '247stateRank': '56'}, {'school': 'georgia', 'year': '2018', 'playerName': 'Divaad Wilson', 'highSchool': 'Northwestern', 'city': 'Miami', 'state': 'FL', 'position': 'CB', 'height': 72.0, 'weight': '180', 'compRating': '0.9106', 'compStars': 4, 'nationalRank': '242', 'positionRank': '26', 'stateRank': '46', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '31', '247stateRank': '43'}, {'school': 'georgia', 'year': '2018', 'playerName': 'Warren Ericson', 'highSchool': 'North Gwinnett', 'city': 'Suwanee', 'state': 'GA', 'position': 'OC', 'height': 76.0, 'weight': '290', 'compRating': '0.9070', 'compStars': 4, 'nationalRank': '263', 'positionRank': '5', 'stateRank': '28', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '7', '247stateRank': '35'}, {'school': 'georgia', 'year': '2018', 'playerName': 'Devonte Wyatt', 'highSchool': 'Hutchinson C.C.', 'city': 'Hutchinson', 'state': 'KS', 'position': 'DT', 'height': 75.0, 'weight': '300', 'compRating': '0.9067', 'compStars': 4, 'nationalRank': '6', 'positionRank': '2', 'stateRank': '2', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '6', '247positionRank': '3', '247stateRank': '1'}, {'school': 'georgia', 'year': '2018', 'playerName': 'Chris Smith', 'highSchool': 'Hapeville Charter', 'city': 'Atlanta', 'state': 'GA', 'position': 'CB', 'height': 70.5, 'weight': '169', 'compRating': '0.8991', 'compStars': 4, 'nationalRank': '306', 'positionRank': '30', 'stateRank': '34', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '35', '247stateRank': '36'}, {'school': 'georgia', 'year': '2018', 'playerName': 'John FitzPatrick', 'highSchool': 'Marist School', 'city': 'Atlanta', 'state': 'GA', 'position': 'TE', 'height': 78.0, 'weight': '230', 'compRating': '0.8975', 'compStars': 4, 'nationalRank': '316', 'positionRank': '17', 'stateRank': '36', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '29', '247stateRank': '62'}, {'school': 'georgia', 'year': '2018', 'playerName': 'Jordan Davis', 'highSchool': 'Mallard Creek', 'city': 'Charlotte', 'state': 'NC', 'position': 'DT', 'height': 78.0, 'weight': '330', 'compRating': '0.8858', 'compStars': 3, 'nationalRank': '424', 'positionRank': '29', 'stateRank': '15', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '44', '247stateRank': '25'}, {'school': 'georgia', 'year': '2018', 'playerName': 'Owen Condon', 'highSchool': 'Bishop McGuinness', 'city': 'Oklahoma City', 'state': 'OK', 'position': 'OT', 'height': 79.0, 'weight': '300', 'compRating': '0.8830', 'compStars': 3, 'nationalRank': '446', 'positionRank': '32', 'stateRank': '7', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '34', '247stateRank': '7'}, {'school': 'georgia', 'year': '2018', 'playerName': 'Jake Camarda', 'highSchool': 'Norcross', 'city': 'Norcross', 'state': 'GA', 'position': 'P', 'height': 74.0, 'weight': '175', 'compRating': '0.8393', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '1', 'stateRank': '136', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '3', '247stateRank': '161'}, {'school': 'georgia', 'year': '2018', 'playerName': 'Nadab Joseph', 'highSchool': 'Miami Norland HS', 'city': 'Miami', 'state': 'FL', 'position': 'CB', 'height': 73.5, 'weight': '180', 'compRating': '0.9304', 'compStars': 4, 'nationalRank': '175', 'positionRank': '18', 'stateRank': '30', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '3', '247positionRank': '1', '247stateRank': '1'}, {'school': 'georgia', 'year': '2018', 'playerName': 'Tramel Walthour', 'highSchool': 'Liberty County', 'city': 'Hinesville', 'state': 'GA', 'position': 'DT', 'height': 76.0, 'weight': '277', 'compRating': '0.8709', 'compStars': 3, 'nationalRank': '629', 'positionRank': '48', 'stateRank': '65', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '53', '247positionRank': '6', '247stateRank': '13'}, {'school': 'alabama', 'year': '2011', 'playerName': 'Cyrus Kouandjio', 'highSchool': 'DeMatha Catholic', 'city': 'Hyattsville', 'state': 'MD', 'position': 'OT', 'height': 79.0, 'weight': '315', 'compRating': '0.9994', 'compStars': 5, 'nationalRank': '2', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 102 ', '247Stars': 5, '247nationalRank': '2', '247positionRank': '1', '247stateRank': '1'}, {'school': 'alabama', 'year': '2011', 'playerName': 'Ha Ha Clinton-Dix', 'highSchool': 'Dr. Phillips', 'city': 'Orlando', 'state': 'FL', 'position': 'S', 'height': 74.0, 'weight': '190', 'compRating': '0.9955', 'compStars': 5, 'nationalRank': '7', 'positionRank': '2', 'stateRank': '2', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '19', '247positionRank': '2', '247stateRank': '8'}, {'school': 'alabama', 'year': '2011', 'playerName': 'Trey DePriest', 'highSchool': 'Springfield', 'city': 'Springfield', 'state': 'OH', 'position': 'ILB', 'height': 74.0, 'weight': '242', 'compRating': '0.9846', 'compStars': 5, 'nationalRank': '30', 'positionRank': '3', 'stateRank': '2', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '23', '247positionRank': '2', '247stateRank': '2'}, {'school': 'alabama', 'year': '2011', 'playerName': 'Xzavier Dickson', 'highSchool': 'Griffin', 'city': 'Griffin', 'state': 'GA', 'position': 'SDE', 'height': 75.0, 'weight': '238', 'compRating': '0.9795', 'compStars': 4, 'nationalRank': '35', 'positionRank': '5', 'stateRank': '5', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '62', '247positionRank': '6', '247stateRank': '6'}, {'school': 'alabama', 'year': '2011', 'playerName': 'Dee Hart', 'highSchool': 'Dr. Phillips', 'city': 'Orlando', 'state': 'FL', 'position': 'APB', 'height': 69.0, 'weight': '190', 'compRating': '0.9785', 'compStars': 4, 'nationalRank': '37', 'positionRank': '2', 'stateRank': '11', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '70', '247positionRank': '3', '247stateRank': '14'}, {'school': 'alabama', 'year': '2011', 'playerName': 'Marvin Shinn', 'highSchool': 'Vigor', 'city': 'Mobile', 'state': 'AL', 'position': 'WR', 'height': 75.0, 'weight': '177', 'compRating': '0.9675', 'compStars': 4, 'nationalRank': '63', 'positionRank': '8', 'stateRank': '1', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '57', '247positionRank': '11', '247stateRank': '2'}, {'school': 'alabama', 'year': '2011', 'playerName': 'Jeoffrey Pagan', 'highSchool': 'Asheville', 'city': 'Asheville', 'state': 'NC', 'position': 'SDE', 'height': 76.0, 'weight': '272', 'compRating': '0.9645', 'compStars': 4, 'nationalRank': '68', 'positionRank': '6', 'stateRank': '2', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '153', '247positionRank': '8', '247stateRank': '5'}, {'school': 'alabama', 'year': '2011', 'playerName': 'Brent Calloway', 'highSchool': 'Russellville', 'city': 'Russellville', 'state': 'AL', 'position': 'OLB', 'height': 73.0, 'weight': '210', 'compRating': '0.9632', 'compStars': 4, 'nationalRank': '72', 'positionRank': '4', 'stateRank': '2', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '91', '247positionRank': '6', '247stateRank': '4'}, {'school': 'alabama', 'year': '2011', 'playerName': 'Bradley Sylve', 'highSchool': 'South Plaquemines', 'city': 'Port Sulphur', 'state': 'LA', 'position': 'WR', 'height': 71.0, 'weight': '175', 'compRating': '0.9472', 'compStars': 4, 'nationalRank': '107', 'positionRank': '15', 'stateRank': '6', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '138', '247positionRank': '20', '247stateRank': '9'}, {'school': 'alabama', 'year': '2011', 'playerName': 'Jesse Williams', 'highSchool': 'Arizona Western College', 'city': 'Yuma', 'state': 'AZ', 'position': 'DT', 'height': 76.0, 'weight': '319', 'compRating': '0.9448', 'compStars': 4, 'nationalRank': '3', 'positionRank': '2', 'stateRank': '1', '247Rating': ' 99 ', '247Stars': 5, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2011', 'playerName': 'Danny Woodson', 'highSchool': 'LeFlore', 'city': 'Mobile', 'state': 'AL', 'position': 'WR', 'height': 74.0, 'weight': '200', 'compRating': '0.9205', 'compStars': 4, 'nationalRank': '173', 'positionRank': '24', 'stateRank': '6', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '41', '247stateRank': '9'}, {'school': 'alabama', 'year': '2011', 'playerName': 'Malcolm Faciane', 'highSchool': 'Picayune Memorial', 'city': 'Picayune', 'state': 'MS', 'position': 'TE', 'height': 78.0, 'weight': '265', 'compRating': '0.9164', 'compStars': 4, 'nationalRank': '189', 'positionRank': '10', 'stateRank': '6', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '102', '247positionRank': '6', '247stateRank': '4'}, {'school': 'alabama', 'year': '2011', 'playerName': 'Corey Grant', 'highSchool': 'Opelika', 'city': 'Opelika', 'state': 'AL', 'position': 'APB', 'height': 70.0, 'weight': '186', 'compRating': '0.9098', 'compStars': 4, 'nationalRank': '204', 'positionRank': '7', 'stateRank': '7', '247Rating': ' 93 ', '247Stars': 4, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2011', 'playerName': 'D.J. Pettway', 'highSchool': 'Pensacola Catholic', 'city': 'Pensacola', 'state': 'FL', 'position': 'WDE', 'height': 75.0, 'weight': '255', 'compRating': '0.9076', 'compStars': 4, 'nationalRank': '209', 'positionRank': '9', 'stateRank': '39', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '22', '247positionRank': '4', '247stateRank': '5'}, {'school': 'alabama', 'year': '2011', 'playerName': 'LaMichael Fanning', 'highSchool': 'Harris County', 'city': 'Hamilton', 'state': 'GA', 'position': 'DT', 'height': 78.0, 'weight': '285', 'compRating': '0.9067', 'compStars': 4, 'nationalRank': '215', 'positionRank': '18', 'stateRank': '16', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '190', '247positionRank': '17', '247stateRank': '16'}, {'school': 'alabama', 'year': '2011', 'playerName': 'Ryan Kelly', 'highSchool': 'Lakota West', 'city': 'West Chester', 'state': 'OH', 'position': 'OC', 'height': 76.0, 'weight': '264', 'compRating': '0.9010', 'compStars': 4, 'nationalRank': '236', 'positionRank': '3', 'stateRank': '12', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '205', '247positionRank': '2', '247stateRank': '9'}, {'school': 'alabama', 'year': '2011', 'playerName': 'Aaron Douglas', 'highSchool': 'Arizona Western College', 'city': 'Yuma', 'state': 'AZ', 'position': 'OT', 'height': 78.0, 'weight': '295', 'compRating': '0.8978', 'compStars': 4, 'nationalRank': '13', 'positionRank': '2', 'stateRank': '2'}, {'school': 'alabama', 'year': '2011', 'playerName': 'Quinton Dial', 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'DT', 'height': 78.0, 'weight': '294', 'compRating': '0.8967', 'compStars': 4, 'nationalRank': '14', 'positionRank': '6', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2011', 'playerName': 'Jabriel Washington', 'highSchool': 'Trinity Christian', 'city': 'Jackson', 'state': 'TN', 'position': 'ATH', 'height': 71.0, 'weight': '165', 'compRating': '0.8902', 'compStars': 4, 'nationalRank': '282', 'positionRank': '20', 'stateRank': '3', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '33', '247stateRank': '3'}, {'school': 'alabama', 'year': '2011', 'playerName': 'Christion Jones', 'highSchool': 'Minor', 'city': 'Adamsville', 'state': 'AL', 'position': 'CB', 'height': 72.0, 'weight': '185', 'compRating': '0.8777', 'compStars': 3, 'nationalRank': '347', 'positionRank': '29', 'stateRank': '11', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '30', '247stateRank': '8'}, {'school': 'alabama', 'year': '2011', 'playerName': 'Isaac Luatua', 'highSchool': 'La Mirada', 'city': 'La Mirada', 'state': 'CA', 'position': 'OG', 'height': 74.0, 'weight': '300', 'compRating': '0.8745', 'compStars': 3, 'nationalRank': '372', 'positionRank': '17', 'stateRank': '37', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '236', '247positionRank': '11', '247stateRank': '32'}, {'school': 'alabama', 'year': '2011', 'playerName': 'Ronald Carswell', 'highSchool': 'Westside', 'city': 'Macon', 'state': 'GA', 'position': 'WR', 'height': 72.0, 'weight': '180', 'compRating': '0.8631', 'compStars': 3, 'nationalRank': '490', 'positionRank': '60', 'stateRank': '37', '247Rating': ' 80 ', '247Stars': 3, '247nationalRank': '227', '247positionRank': '28', '247stateRank': '42'}, {'school': 'alabama', 'year': '2011', 'playerName': 'Phillip Ely', 'highSchool': 'Plant', 'city': 'Tampa', 'state': 'FL', 'position': 'PRO', 'height': 73.0, 'weight': '187', 'compRating': '0.8599', 'compStars': 3, 'nationalRank': '553', 'positionRank': '17', 'stateRank': '79', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '23', '247stateRank': '86'}, {'school': 'alabama', 'year': '2011', 'playerName': 'Vinnie Sunseri', 'highSchool': 'Northridge', 'city': 'Tuscaloosa', 'state': 'AL', 'position': 'ILB', 'height': 72.0, 'weight': '217', 'compRating': '0.8575', 'compStars': 3, 'nationalRank': '593', 'positionRank': '28', 'stateRank': '20', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '27', '247stateRank': '20'}, {'school': 'alabama', 'year': '2011', 'playerName': 'Duron Carter', 'highSchool': 'Coffeyville C.C.', 'city': 'Coffeyville', 'state': 'KS', 'position': 'WR', 'height': 76.0, 'weight': '210', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '36', 'positionRank': '4', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2011', 'playerName': 'Matt Sandlin', 'highSchool': 'Tuscaloosa County', 'city': 'Northport', 'state': 'AL', 'position': 'PRO', 'height': 75.0, 'weight': '207', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2019', 'playerName': 'Jared Casey', 'highSchool': 'Ballard', 'city': 'Louisville', 'state': 'KY', 'position': 'ILB', 'height': 75.0, 'weight': '232', 'compRating': '0.8958', 'compStars': 4, 'nationalRank': '332', 'positionRank': '21', 'stateRank': '7', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '17', '247stateRank': '7'}, {'school': 'kentucky', 'year': '2019', 'playerName': 'JJ Weaver', 'highSchool': 'Moore Traditional School', 'city': 'Louisville', 'state': 'KY', 'position': 'SDE', 'height': 77.0, 'weight': '240', 'compRating': '0.8937', 'compStars': 4, 'nationalRank': '347', 'positionRank': '26', 'stateRank': '8', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '27', '247stateRank': '8'}, {'school': 'kentucky', 'year': '2019', 'playerName': 'Moses Douglass', 'highSchool': 'Springfield', 'city': 'Springfield', 'state': 'OH', 'position': 'S', 'height': 74.0, 'weight': '200', 'compRating': '0.8900', 'compStars': 4, 'nationalRank': '385', 'positionRank': '30', 'stateRank': '13', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '30', '247stateRank': '14'}, {'school': 'kentucky', 'year': '2019', 'playerName': 'MJ Devonshire', 'highSchool': 'Aliquippa', 'city': 'Aliquippa', 'state': 'PA', 'position': 'CB', 'height': 72.0, 'weight': '185', 'compRating': '0.8816', 'compStars': 3, 'nationalRank': '497', 'positionRank': '48', 'stateRank': '8', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '63', '247stateRank': '12'}, {'school': 'kentucky', 'year': '2019', 'playerName': 'KD McDaniel', 'highSchool': 'Tift County', 'city': 'Tifton', 'state': 'GA', 'position': 'OLB', 'height': 74.0, 'weight': '240', 'compRating': '0.8763', 'compStars': 3, 'nationalRank': '565', 'positionRank': '37', 'stateRank': '59', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '49', '247stateRank': '62'}, {'school': 'kentucky', 'year': '2019', 'playerName': 'Taj Dodson', 'highSchool': 'Creekside', 'city': 'Fairburn', 'state': 'GA', 'position': 'ATH', 'height': 74.0, 'weight': '190', 'compRating': '0.8763', 'compStars': 3, 'nationalRank': '567', 'positionRank': '33', 'stateRank': '60', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '46', '247stateRank': '63'}, {'school': 'kentucky', 'year': '2019', 'playerName': 'Travis Tisdale', 'highSchool': 'Lowndes', 'city': 'Valdosta', 'state': 'GA', 'position': 'RB', 'height': 69.0, 'weight': '175', 'compRating': '0.8763', 'compStars': 3, 'nationalRank': '569', 'positionRank': '37', 'stateRank': '61', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '42', '247stateRank': '59'}, {'school': 'kentucky', 'year': '2019', 'playerName': 'Isaiah Gibson', 'highSchool': 'Springfield', 'city': 'Springfield', 'state': 'OH', 'position': 'DT', 'height': 76.0, 'weight': '298', 'compRating': '0.8722', 'compStars': 3, 'nationalRank': '624', 'positionRank': '48', 'stateRank': '23', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '45', '247stateRank': '21'}, {'school': 'kentucky', 'year': '2019', 'playerName': 'Shawnkel Knight-Goff', 'highSchool': 'Doss Magnet Career Academy', 'city': 'Louisville', 'state': 'KY', 'position': 'WDE', 'height': 74.0, 'weight': '220', 'compRating': '0.8714', 'compStars': 3, 'nationalRank': '637', 'positionRank': '42', 'stateRank': '10', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '24', '247stateRank': '9'}, {'school': 'kentucky', 'year': '2019', 'playerName': 'Demontae Crumes', 'highSchool': 'Butler Traditional', 'city': 'Louisville', 'state': 'KY', 'position': 'WR', 'height': 74.0, 'weight': '180', 'compRating': '0.8688', 'compStars': 3, 'nationalRank': '695', 'positionRank': '92', 'stateRank': '11', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '111', '247stateRank': '12'}, {'school': 'kentucky', 'year': '2019', 'playerName': 'Marquez Bembry', 'highSchool': 'Jones College', 'city': 'Ellisville', 'state': 'MS', 'position': 'ATH', 'height': 75.0, 'weight': '240', 'compRating': '0.8669', 'compStars': 3, 'nationalRank': '45', 'positionRank': '1', 'stateRank': '7', '247Rating': ' 87 ', '247Stars': 3, '247nationalRank': '41', '247positionRank': '1', '247stateRank': '8'}, {'school': 'kentucky', 'year': '2019', 'playerName': 'Nikolas Ognenovic', 'highSchool': 'Cardinal Gibbons', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'TE', 'height': 77.0, 'weight': '250', 'compRating': '0.8668', 'compStars': 3, 'nationalRank': '746', 'positionRank': '35', 'stateRank': '95', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '32', '247stateRank': '69'}, {'school': 'kentucky', 'year': '2019', 'playerName': 'Quandre Mosely', 'highSchool': 'Eastern Arizona College', 'city': 'Thatcher', 'state': 'AZ', 'position': 'S', 'height': 74.0, 'weight': '180', 'compRating': '0.8641', 'compStars': 3, 'nationalRank': '52', 'positionRank': '5', 'stateRank': '8', '247Rating': ' 89 ', '247Stars': 3, '247nationalRank': '18', '247positionRank': '3', '247stateRank': '4'}, {'school': 'kentucky', 'year': '2019', 'playerName': 'Cavon Butler', 'highSchool': 'Whitmer', 'city': 'Toledo', 'state': 'OH', 'position': 'DT', 'height': 75.0, 'weight': '300', 'compRating': '0.8626', 'compStars': 3, 'nationalRank': '825', 'positionRank': '60', 'stateRank': '37', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '55', '247stateRank': '36'}, {'school': 'kentucky', 'year': '2019', 'playerName': 'Brandin Echols', 'highSchool': 'Northwest Mississippi C.C.', 'city': 'Senatobia', 'state': 'MS', 'position': 'CB', 'height': 72.0, 'weight': '180', 'compRating': '0.8602', 'compStars': 3, 'nationalRank': '58', 'positionRank': '7', 'stateRank': '12', '247Rating': ' 85 ', '247Stars': 3, '247nationalRank': '77', '247positionRank': '9', '247stateRank': '16'}, {'school': 'kentucky', 'year': '2019', 'playerName': 'Jalen Geiger', 'highSchool': 'Spring Valley', 'city': 'Columbia', 'state': 'SC', 'position': 'CB', 'height': 73.0, 'weight': '190', 'compRating': '0.8580', 'compStars': 3, 'nationalRank': '914', 'positionRank': '82', 'stateRank': '15', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '97', '247stateRank': '24'}, {'school': 'kentucky', 'year': '2019', 'playerName': 'Tra Wilkins', 'highSchool': 'Stephenson', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'ILB', 'height': 72.0, 'weight': '215', 'compRating': '0.8506', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '51', 'stateRank': '106'}, {'school': 'kentucky', 'year': '2019', 'playerName': 'Amani Gilmore', 'highSchool': 'Amite', 'city': 'Amite', 'state': 'LA', 'position': 'PRO', 'height': 74.0, 'weight': '200', 'compRating': '0.8464', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '39', 'stateRank': '42', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '32', '247stateRank': '45'}, {'school': 'kentucky', 'year': '2019', 'playerName': 'Nik Scalzo', 'highSchool': 'Cardinal Gibbons', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'DUAL', 'height': 70.0, 'weight': '175', 'compRating': '0.8454', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '28', 'stateRank': '169', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '32', '247stateRank': '160'}, {'school': 'kentucky', 'year': '2019', 'playerName': 'DeMarcus Harris', 'highSchool': 'Vero Beach', 'city': 'Vero Beach', 'state': 'FL', 'position': 'WR', 'height': 73.0, 'weight': '180', 'compRating': '0.8398', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '162', 'stateRank': '193', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '168', '247stateRank': '177'}, {'school': 'kentucky', 'year': '2019', 'playerName': 'Eli Cox', 'highSchool': 'West Jessamine', 'city': 'Nicholasville', 'state': 'KY', 'position': 'OG', 'height': 76.0, 'weight': '300', 'compRating': '0.8397', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '73', 'stateRank': '14', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '80', '247stateRank': '20'}, {'school': 'kentucky', 'year': '2019', 'playerName': 'Jake Pope', 'highSchool': 'St. Thomas Aquinas', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'OT', 'height': 79.0, 'weight': '275', 'compRating': '0.8385', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '118', 'stateRank': '195', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '144', '247stateRank': '228'}, {'school': 'mississippi-state', 'year': '2007', 'playerName': 'Robert Elliott', 'highSchool': 'Okolona', 'city': 'Okolona', 'state': 'MS', 'position': 'RB', 'height': 74.0, 'weight': '210', 'compRating': '0.9218', 'compStars': 4, 'nationalRank': '162', 'positionRank': '21', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2007', 'playerName': 'Co-Eric Riley', 'highSchool': 'Mississippi Gulf Coast C.C.', 'city': 'Perkinston', 'state': 'MS', 'position': 'WR', 'height': 74.0, 'weight': '205', 'compRating': '0.9111', 'compStars': 4, 'nationalRank': '14', 'positionRank': '4', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2007', 'playerName': 'Derek Sherrod', 'highSchool': 'Caledonia', 'city': 'Caledonia', 'state': 'MS', 'position': 'OT', 'height': 78.0, 'weight': '298', 'compRating': '0.8986', 'compStars': 4, 'nationalRank': '203', 'positionRank': '15', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2007', 'playerName': 'Jazzmen Guy', 'highSchool': 'Hazlehurst', 'city': 'Hazlehurst', 'state': 'MS', 'position': 'SDE', 'height': 77.0, 'weight': '265', 'compRating': '0.8844', 'compStars': 3, 'nationalRank': '275', 'positionRank': '19', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2007', 'playerName': 'Antonio White', 'highSchool': 'Simmons', 'city': 'Hollandale', 'state': 'MS', 'position': 'ILB', 'height': 74.0, 'weight': '240', 'compRating': '0.8670', 'compStars': 3, 'nationalRank': '428', 'positionRank': '17', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2007', 'playerName': 'Josh Riddell', 'highSchool': 'Foothill College', 'city': 'Los Altos', 'state': 'CA', 'position': 'PRO', 'height': 74.0, 'weight': '200', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '63', 'positionRank': '3', 'stateRank': '27', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2007', 'playerName': 'Antwon Dixon', 'highSchool': 'Terry', 'city': 'Terry', 'state': 'MS', 'position': 'S', 'height': 73.0, 'weight': '200', 'compRating': '0.8528', 'compStars': 3, 'nationalRank': '589', 'positionRank': '45', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2007', 'playerName': 'Mike Hunt', 'highSchool': 'Franklin', 'city': 'Meadville', 'state': 'MS', 'position': 'S', 'height': 75.0, 'weight': '204', 'compRating': '0.8528', 'compStars': 3, 'nationalRank': '594', 'positionRank': '46', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2007', 'playerName': 'Marcus Green', 'highSchool': 'Kemper County', 'city': 'De Kalb', 'state': 'MS', 'position': 'ATH', 'height': 73.0, 'weight': '240', 'compRating': '0.8479', 'compStars': 3, 'nationalRank': '674', 'positionRank': '41', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2007', 'playerName': 'D.J. Looney', 'highSchool': 'Westminster School At Oak Mountain', 'city': 'Birmingham', 'state': 'AL', 'position': 'OG', 'height': 74.0, 'weight': '275', 'compRating': '0.8479', 'compStars': 3, 'nationalRank': '676', 'positionRank': '50', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2007', 'playerName': 'Wade Bonner', 'highSchool': 'Fayette Ware Comprehensive', 'city': 'Somerville', 'state': 'TN', 'position': 'CB', 'height': 70.0, 'weight': '195', 'compRating': '0.8417', 'compStars': 3, 'nationalRank': '717', 'positionRank': '47', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2007', 'playerName': 'Colton Jenkins', 'highSchool': 'Winona Secondary School', 'city': 'Winona', 'state': 'MS', 'position': 'OT', 'height': 78.0, 'weight': '280', 'compRating': '0.8417', 'compStars': 3, 'nationalRank': '735', 'positionRank': '67', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2007', 'playerName': 'Wesley Carroll', 'highSchool': 'St. Thomas Aquinas', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'PRO', 'height': 74.0, 'weight': '190', 'compRating': '0.8354', 'compStars': 3, 'nationalRank': '816', 'positionRank': '35', 'stateRank': '95', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2007', 'playerName': 'LaMarcus Williams', 'highSchool': 'Bastrop', 'city': 'Bastrop', 'state': 'LA', 'position': 'DT', 'height': 73.0, 'weight': '280', 'compRating': '0.8354', 'compStars': 3, 'nationalRank': '820', 'positionRank': '60', 'stateRank': '30', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2007', 'playerName': 'K.J. Wright', 'highSchool': 'Olive Branch', 'city': 'Olive Branch', 'state': 'MS', 'position': 'OLB', 'height': 75.0, 'weight': '210', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '927', 'positionRank': '61', 'stateRank': '22', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2007', 'playerName': 'Jimmie Holmes', 'highSchool': 'Mississippi Delta C.C.', 'city': 'Moorhead', 'state': 'MS', 'position': 'WDE', 'height': 75.0, 'weight': '227', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '88', 'positionRank': '5', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2007', 'playerName': 'Maurice Crutison', 'highSchool': 'Port Gibson', 'city': 'Port Gibson', 'state': 'MS', 'position': 'OLB', 'height': 74.0, 'weight': '210', 'compRating': '0.8306', 'compStars': 3, 'nationalRank': '971', 'positionRank': '63', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2007', 'playerName': 'Karlin Brown', 'highSchool': 'Lincoln', 'city': 'Tallahassee', 'state': 'FL', 'position': 'OLB', 'height': 70.0, 'weight': '190', 'compRating': '0.8306', 'compStars': 3, 'nationalRank': '975', 'positionRank': '65', 'stateRank': '107', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2007', 'playerName': 'Jesse Bowman', 'highSchool': 'Copiah-Lincoln C.C.', 'city': 'Wesson', 'state': 'MS', 'position': 'DT', 'height': 73.0, 'weight': '335', 'compRating': '0.8259', 'compStars': 3, 'nationalRank': '108', 'positionRank': '10', 'stateRank': '15', '247Rating': ' 70 ', '247Stars': 2, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2007', 'playerName': 'Quentin Saulsberry', 'highSchool': 'Coldwater', 'city': 'Coldwater', 'state': 'MS', 'position': 'OG', 'height': 75.0, 'weight': '270', 'compRating': '0.8241', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '87', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2007', 'playerName': 'Jamie Jones', 'highSchool': 'Springdale', 'city': 'Springdale', 'state': 'AR', 'position': 'ILB', 'height': 72.0, 'weight': '240', 'compRating': '0.8226', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '50', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2007', 'playerName': "Jasper O'Quinn", 'highSchool': 'Copiah-Lincoln C.C.', 'city': 'Wesson', 'state': 'MS', 'position': 'CB', 'height': 70.0, 'weight': '185', 'compRating': '0.8222', 'compStars': 3, 'nationalRank': '118', 'positionRank': '13', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2007', 'playerName': 'Addison Lawrence', 'highSchool': 'Magnolia Heights School', 'city': 'Senatobia', 'state': 'MS', 'position': 'OT', 'height': 76.0, 'weight': '300', 'compRating': '0.8149', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '96', 'stateRank': '25', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2007', 'playerName': 'Zach Smith', 'highSchool': 'Susan Moore Sch', 'city': 'Blountsville', 'state': 'AL', 'position': 'S', 'height': 72.0, 'weight': '164', 'compRating': '0.8146', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '81', 'stateRank': '29', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2007', 'playerName': 'Dominic Douglas', 'highSchool': 'Hinds C.C.', 'city': 'Raymond', 'state': 'MS', 'position': 'OLB', 'height': 74.0, 'weight': '225', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '136', 'positionRank': '8', 'stateRank': '22', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2007', 'playerName': 'Dakota Merritt', 'highSchool': 'West Florida Tech', 'city': 'Pensacola', 'state': 'FL', 'position': 'OT', 'height': 77.0, 'weight': '290', 'compRating': '0.8056', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '110', 'stateRank': '149', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2007', 'playerName': 'Chris Relf', 'highSchool': 'Carver', 'city': 'Montgomery', 'state': 'AL', 'position': 'DUAL', 'height': 75.0, 'weight': '206', 'compRating': '0.8035', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '34', 'stateRank': '33', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2007', 'playerName': 'Chris Nance', 'highSchool': 'Northeast Mississippi C.C.', 'city': 'Booneville', 'state': 'MS', 'position': 'CB', 'height': 70.0, 'weight': '185', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '155', 'positionRank': '20', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2007', 'playerName': "O'Neal Wilder", 'highSchool': 'Carthage', 'city': 'Carthage', 'state': 'MS', 'position': 'WR', 'height': 77.0, 'weight': '200', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '154', 'stateRank': '31', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2007', 'playerName': 'Eric Richards', 'highSchool': 'Warren Central', 'city': 'Vicksburg', 'state': 'MS', 'position': 'K', 'height': 76.0, 'weight': '220', 'compRating': '0.7875', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '28', 'stateRank': '32', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2007', 'playerName': 'Ethan Stockett', 'highSchool': 'Southside', 'city': 'Fort Smith', 'state': 'AR', 'position': 'FB', 'height': 73.0, 'weight': '252', 'compRating': '0.7833', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '19', 'stateRank': '25', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2007', 'playerName': 'Terrell Johnson', 'highSchool': 'Southern Choctaw', 'city': 'Gilbertown', 'state': 'AL', 'position': 'OLB', 'height': 74.0, 'weight': '200', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '164', 'stateRank': '65', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2007', 'playerName': 'Damein Anderson', 'highSchool': 'Hazlehurst', 'city': 'Hazlehurst', 'state': 'MS', 'position': 'CB', 'height': 71.0, 'weight': '195', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2007', 'playerName': 'Marvin Bure', 'highSchool': 'Vicksburg', 'city': 'Vicksburg', 'state': 'MS', 'position': 'CB', 'height': 69.0, 'weight': '190', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2007', 'playerName': 'Quinton Saulsberry', 'highSchool': 'Independence', 'city': 'Horn Lake', 'state': 'MS', 'position': 'OC', 'height': 74.0, 'weight': '300', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2011', 'playerName': 'Barron Dixon', 'highSchool': 'Chattahoochee', 'city': 'Alpharetta', 'state': 'GA', 'position': 'SDE', 'height': 76.0, 'weight': '295', 'compRating': '0.8544', 'compStars': 3, 'nationalRank': '647', 'positionRank': '48', 'stateRank': '50', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '41', '247stateRank': '40'}, {'school': 'vanderbilt', 'year': '2011', 'playerName': 'Derek King', 'highSchool': 'Brentwood Academy', 'city': 'Brentwood', 'state': 'TN', 'position': 'CB', 'height': 70.0, 'weight': '185', 'compRating': '0.8472', 'compStars': 3, 'nationalRank': '770', 'positionRank': '56', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2011', 'playerName': 'Kellen Williams', 'highSchool': 'West Orange', 'city': 'Winter Garden', 'state': 'FL', 'position': 'ILB', 'height': 73.0, 'weight': '200', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2011', 'playerName': 'Dillon Van der wal', 'highSchool': 'Oaks Christian', 'city': 'Westlake Village', 'state': 'CA', 'position': 'TE', 'height': 79.0, 'weight': '240', 'compRating': '0.9036', 'compStars': 4, 'nationalRank': '224', 'positionRank': '13', 'stateRank': '25', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '241', '247positionRank': '13', '247stateRank': '34'}, {'school': 'vanderbilt', 'year': '2011', 'playerName': 'Lafonte Thourogood', 'highSchool': 'Ocean Lakes', 'city': 'Virginia Beach', 'state': 'VA', 'position': 'DUAL', 'height': 75.0, 'weight': '223', 'compRating': '0.8757', 'compStars': 3, 'nationalRank': '362', 'positionRank': '12', 'stateRank': '9'}, {'school': 'vanderbilt', 'year': '2011', 'playerName': 'Jacquese Kirk', 'highSchool': 'Walker', 'city': 'Jasper', 'state': 'AL', 'position': 'CB', 'height': 71.0, 'weight': '160', 'compRating': '0.8528', 'compStars': 3, 'nationalRank': '671', 'positionRank': '50', 'stateRank': '23', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '47', '247stateRank': '17'}, {'school': 'vanderbilt', 'year': '2011', 'playerName': 'Darien Bryant', 'highSchool': 'Pickerington North', 'city': 'Pickerington', 'state': 'OH', 'position': 'TE', 'height': 76.0, 'weight': '215', 'compRating': '0.8522', 'compStars': 3, 'nationalRank': '677', 'positionRank': '31', 'stateRank': '41', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '28', '247stateRank': '33'}, {'school': 'vanderbilt', 'year': '2011', 'playerName': 'Jake Bernstein', 'highSchool': 'Crystal Lake South', 'city': 'Crystal Lake', 'state': 'IL', 'position': 'OG', 'height': 75.0, 'weight': '275', 'compRating': '0.8363', 'compStars': 3, 'nationalRank': '970', 'positionRank': '56', 'stateRank': '27', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '68', '247stateRank': '28'}, {'school': 'vanderbilt', 'year': '2011', 'playerName': 'James Lewis', 'highSchool': 'Arlington', 'city': 'Arlington', 'state': 'TN', 'position': 'OT', 'height': 77.0, 'weight': '285', 'compRating': '0.8328', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '99', 'stateRank': '17', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '105', '247stateRank': '18'}, {'school': 'vanderbilt', 'year': '2011', 'playerName': 'Mitchell Hester', 'highSchool': 'Duncan U. Fletcher', 'city': 'Neptune Beach', 'state': 'FL', 'position': 'APB', 'height': 68.0, 'weight': '175', 'compRating': '0.8266', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '24', 'stateRank': '144', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '20', '247stateRank': '122'}, {'school': 'vanderbilt', 'year': '2011', 'playerName': 'Larry Franklin', 'highSchool': 'Vero Beach', 'city': 'Vero Beach', 'state': 'FL', 'position': 'S', 'height': 73.0, 'weight': '190', 'compRating': '0.8258', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '83', 'stateRank': '147', '247Rating': ' 74 ', '247Stars': 2, '247positionRank': '116', '247stateRank': '266'}, {'school': 'vanderbilt', 'year': '2011', 'playerName': 'Jahmel McIntosh', 'highSchool': 'Cleveland', 'city': 'Cleveland', 'state': 'MS', 'position': 'S', 'height': 73.0, 'weight': '200', 'compRating': '0.8252', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '86', 'stateRank': '25', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '79', '247stateRank': '31'}, {'school': 'vanderbilt', 'year': '2011', 'playerName': 'Conor Hart', 'highSchool': 'Brother Rice', 'city': 'Bloomfield Hills', 'state': 'MI', 'position': 'SDE', 'height': 76.0, 'weight': '250', 'compRating': '0.8210', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '77', 'stateRank': '24', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '78', '247stateRank': '25'}, {'school': 'vanderbilt', 'year': '2011', 'playerName': 'Josh Grady', 'highSchool': 'Armwood', 'city': 'Seffner', 'state': 'FL', 'position': 'DUAL', 'height': 73.0, 'weight': '190', 'compRating': '0.8166', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '30', 'stateRank': '160', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '30', '247stateRank': '138'}, {'school': 'vanderbilt', 'year': '2011', 'playerName': 'Steven Scheu', 'highSchool': 'Reitz Memorial', 'city': 'Evansville', 'state': 'IN', 'position': 'TE', 'height': 78.0, 'weight': '235', 'compRating': '0.8155', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '57', 'stateRank': '19', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '50', '247stateRank': '15'}, {'school': 'vanderbilt', 'year': '2011', 'playerName': 'Jerron Seymour', 'highSchool': 'Hialeah', 'city': 'Hialeah', 'state': 'FL', 'position': 'RB', 'height': 66.0, 'weight': '180', 'compRating': '0.8040', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '86', 'stateRank': '197', '247Rating': ' 70 ', '247Stars': 2, '247positionRank': '101', '247stateRank': '302'}, {'school': 'vanderbilt', 'year': '2011', 'playerName': 'Jimmy Stewart', 'highSchool': 'Island Coast', 'city': 'Cape Coral', 'state': 'FL', 'position': 'OLB', 'height': 76.0, 'weight': '225', 'compRating': '0.7883', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '127', 'stateRank': '223', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '87', '247stateRank': '134'}, {'school': 'vanderbilt', 'year': '2011', 'playerName': 'Andrew Williamson', 'highSchool': 'Stevens', 'city': 'San Antonio', 'state': 'TX', 'position': 'S', 'height': 74.0, 'weight': '190', 'compRating': '0.7825', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '114', 'stateRank': '246', '247Rating': ' 77 ', '247Stars': 2, '247positionRank': '102', '247stateRank': '196'}, {'school': 'vanderbilt', 'year': '2011', 'playerName': 'Jose Valedon', 'highSchool': 'Oak Ridge', 'city': 'Oak Ridge', 'state': 'TN', 'position': 'OG', 'height': 76.0, 'weight': '275', 'compRating': '0.7682', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '114', 'stateRank': '30'}, {'school': 'vanderbilt', 'year': '2011', 'playerName': 'Kris Kentera', 'highSchool': 'Pine Creek', 'city': 'Colorado Springs', 'state': 'CO', 'position': 'DUAL', 'height': 76.0, 'weight': '195', 'compRating': '0.7593', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '47', 'stateRank': '18', '247Rating': ' 70 ', '247Stars': 2, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2011', 'playerName': 'Joe Townsend', 'highSchool': 'Hendersonville', 'city': 'Hendersonville', 'state': 'TN', 'position': 'DT', 'height': 76.0, 'weight': '280', 'compRating': '0.7519', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '139', 'stateRank': '38', '247Rating': ' 70 ', '247Stars': 2, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2012', 'playerName': 'Jonathan Williams', 'highSchool': 'Allen', 'city': 'Allen', 'state': 'TX', 'position': 'RB', 'height': 71.0, 'weight': '205', 'compRating': '0.9305', 'compStars': 4, 'nationalRank': '178', 'positionRank': '11', 'stateRank': '26', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '218', '247positionRank': '13', '247stateRank': '28'}, {'school': 'arkansas', 'year': '2012', 'playerName': 'Otha Peters', 'highSchool': 'Covington', 'city': 'Covington', 'state': 'LA', 'position': 'OLB', 'height': 73.0, 'weight': '223', 'compRating': '0.9057', 'compStars': 4, 'nationalRank': '289', 'positionRank': '29', 'stateRank': '10', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '161', '247positionRank': '13', '247stateRank': '5'}, {'school': 'arkansas', 'year': '2012', 'playerName': 'Keon Hatcher', 'highSchool': 'Owasso', 'city': 'Owasso', 'state': 'OK', 'position': 'WR', 'height': 74.0, 'weight': '195', 'compRating': '0.9051', 'compStars': 4, 'nationalRank': '292', 'positionRank': '42', 'stateRank': '4', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '45', '247stateRank': '4'}, {'school': 'arkansas', 'year': '2012', 'playerName': 'Taiwan Johnson', 'highSchool': 'Manvel', 'city': 'Manvel', 'state': 'TX', 'position': 'SDE', 'height': 75.0, 'weight': '238', 'compRating': '0.9019', 'compStars': 4, 'nationalRank': '305', 'positionRank': '17', 'stateRank': '46', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '21', '247stateRank': '54'}, {'school': 'arkansas', 'year': '2012', 'playerName': 'Demetrius Dean', 'highSchool': 'Fayetteville', 'city': 'Fayetteville', 'state': 'AR', 'position': 'TE', 'height': 75.0, 'weight': '240', 'compRating': '0.8900', 'compStars': 3, 'nationalRank': '377', 'positionRank': '13', 'stateRank': '3', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '13', '247stateRank': '5'}, {'school': 'arkansas', 'year': '2012', 'playerName': 'Deatrich Wise Jr.', 'highSchool': 'Hebron', 'city': 'Carrollton', 'state': 'TX', 'position': 'WDE', 'height': 77.0, 'weight': '230', 'compRating': '0.8930', 'compStars': 4, 'nationalRank': '359', 'positionRank': '25', 'stateRank': '58', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '30', '247stateRank': '71'}, {'school': 'arkansas', 'year': '2012', 'playerName': 'Jeremy Ward', 'highSchool': 'Pottsville', 'city': 'Pottsville', 'state': 'AR', 'position': 'OG', 'height': 76.0, 'weight': '287', 'compRating': '0.8874', 'compStars': 3, 'nationalRank': '402', 'positionRank': '20', 'stateRank': '4', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '211', '247positionRank': '12', '247stateRank': '1'}, {'school': 'arkansas', 'year': '2012', 'playerName': "D'Arthur Cowan", 'highSchool': 'Olive Branch', 'city': 'Olive Branch', 'state': 'MS', 'position': 'WR', 'height': 74.0, 'weight': '175', 'compRating': '0.8830', 'compStars': 3, 'nationalRank': '441', 'positionRank': '55', 'stateRank': '9', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '63', '247stateRank': '9'}, {'school': 'arkansas', 'year': '2012', 'playerName': 'Darius Philon', 'highSchool': 'Vigor', 'city': 'Mobile', 'state': 'AL', 'position': 'DT', 'height': 74.0, 'weight': '260', 'compRating': '0.8829', 'compStars': 3, 'nationalRank': '444', 'positionRank': '31', 'stateRank': '15', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '32', '247stateRank': '15'}, {'school': 'arkansas', 'year': '2012', 'playerName': 'Donovan Roberts', 'highSchool': 'Norman', 'city': 'Norman', 'state': 'OK', 'position': 'RB', 'height': 72.0, 'weight': '200', 'compRating': '0.8808', 'compStars': 3, 'nationalRank': '470', 'positionRank': '24', 'stateRank': '6', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '26', '247stateRank': '7'}, {'school': 'arkansas', 'year': '2012', 'playerName': 'A.J. Turner', 'highSchool': 'East Poinsett Co.', 'city': 'Lepanto', 'state': 'AR', 'position': 'OLB', 'height': 74.0, 'weight': '208', 'compRating': '0.8770', 'compStars': 3, 'nationalRank': '526', 'positionRank': '54', 'stateRank': '5', '247Rating': ' 92 ', '247Stars': 4, '247positionRank': '33', '247stateRank': '2'}, {'school': 'arkansas', 'year': '2012', 'playerName': 'Defonta Lowe', 'highSchool': 'Bearden', 'city': 'Bearden', 'state': 'AR', 'position': 'ATH', 'height': 75.0, 'weight': '190', 'compRating': '0.8763', 'compStars': 3, 'nationalRank': '538', 'positionRank': '39', 'stateRank': '6', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '48', '247stateRank': '7'}, {'school': 'arkansas', 'year': '2012', 'playerName': 'Nathan Holmes', 'highSchool': 'Memorial', 'city': 'Port Arthur', 'state': 'TX', 'position': 'ATH', 'height': 73.0, 'weight': '175', 'compRating': '0.8755', 'compStars': 3, 'nationalRank': '553', 'positionRank': '41', 'stateRank': '89', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '36', '247stateRank': '79'}, {'school': 'arkansas', 'year': '2012', 'playerName': 'Will Hines', 'highSchool': 'Waco', 'city': 'Waco', 'state': 'TX', 'position': 'CB', 'height': 72.0, 'weight': '175', 'compRating': '0.8728', 'compStars': 3, 'nationalRank': '586', 'positionRank': '41', 'stateRank': '93', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '49', '247stateRank': '112'}, {'school': 'arkansas', 'year': '2012', 'playerName': 'Jeremy Sprinkle', 'highSchool': 'White Hall', 'city': 'White Hall', 'state': 'AR', 'position': 'TE', 'height': 78.0, 'weight': '220', 'compRating': '0.8708', 'compStars': 3, 'nationalRank': '618', 'positionRank': '25', 'stateRank': '7', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '16', '247stateRank': '6'}, {'school': 'arkansas', 'year': '2012', 'playerName': 'Cordale Boyd', 'highSchool': 'Ridgeway', 'city': 'Memphis', 'state': 'TN', 'position': 'OG', 'height': 75.0, 'weight': '303', 'compRating': '0.8670', 'compStars': 3, 'nationalRank': '667', 'positionRank': '35', 'stateRank': '16', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '41', '247stateRank': '19'}, {'school': 'arkansas', 'year': '2012', 'playerName': 'JaMichael Winston', 'highSchool': 'Vigor', 'city': 'Mobile', 'state': 'AL', 'position': 'WDE', 'height': 77.0, 'weight': '240', 'compRating': '0.8634', 'compStars': 3, 'nationalRank': '712', 'positionRank': '43', 'stateRank': '24', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '50', '247stateRank': '25'}, {'school': 'arkansas', 'year': '2012', 'playerName': 'Austin Flynn', 'highSchool': 'Los Angeles Harbor College', 'city': 'Wilmington', 'state': 'CA', 'position': 'WDE', 'height': 76.0, 'weight': '255', 'compRating': '0.8630', 'compStars': 3, 'nationalRank': '34', 'positionRank': '3', 'stateRank': '12', '247Rating': ' 90 ', '247Stars': 4, '247nationalRank': '27', '247positionRank': '3', '247stateRank': '9'}, {'school': 'arkansas', 'year': '2012', 'playerName': 'Mekale McKay', 'highSchool': 'Moore Traditional School', 'city': 'Louisville', 'state': 'KY', 'position': 'WR', 'height': 78.0, 'weight': '190', 'compRating': '0.8522', 'compStars': 3, 'nationalRank': '845', 'positionRank': '99', 'stateRank': '7', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '48', '247stateRank': '2'}, {'school': 'arkansas', 'year': '2012', 'playerName': 'Brandon Lewis', 'highSchool': 'Ridgeway', 'city': 'Memphis', 'state': 'TN', 'position': 'WDE', 'height': 76.0, 'weight': '230', 'compRating': '0.8449', 'compStars': 3, 'nationalRank': '948', 'positionRank': '50', 'stateRank': '22', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '64', '247stateRank': '27'}, {'school': 'arkansas', 'year': '2012', 'playerName': 'Jared Collins', 'highSchool': 'Booker T. Washington', 'city': 'Tulsa', 'state': 'OK', 'position': 'CB', 'height': 70.0, 'weight': '170', 'compRating': '0.8431', 'compStars': 3, 'nationalRank': '974', 'positionRank': '67', 'stateRank': '10', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '62', '247stateRank': '11'}, {'school': 'arkansas', 'year': '2012', 'playerName': 'Eric Hawkins', 'highSchool': 'Longview', 'city': 'Longview', 'state': 'TX', 'position': 'WR', 'height': 71.0, 'weight': '170', 'compRating': '0.8422', 'compStars': 3, 'nationalRank': '992', 'positionRank': '116', 'stateRank': '172', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '95', '247stateRank': '111'}, {'school': 'arkansas', 'year': '2012', 'playerName': 'Ray Buchanan Jr.', 'highSchool': 'Peachtree Ridge', 'city': 'Suwanee', 'state': 'GA', 'position': 'CB', 'height': 71.0, 'weight': '180', 'compRating': '0.8418', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '70', 'stateRank': '88', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '96', '247stateRank': '103'}, {'school': 'arkansas', 'year': '2012', 'playerName': 'Demetrius Wilson', 'highSchool': 'Glendale C.C.', 'city': 'Glendale', 'state': 'AZ', 'position': 'WR', 'height': 75.0, 'weight': '180', 'compRating': '0.8396', 'compStars': 3, 'nationalRank': '63', 'positionRank': '4', 'stateRank': '11', '247Rating': ' 83 ', '247Stars': 3, '247nationalRank': '94', '247positionRank': '8', '247stateRank': '12'}, {'school': 'arkansas', 'year': '2012', 'playerName': 'Adam McFain', 'highSchool': 'Greenwood', 'city': 'Greenwood', 'state': 'AR', 'position': 'K', 'height': 72.0, 'weight': '170', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2012', 'playerName': 'Vin Ascolese', 'highSchool': 'North Bergen', 'city': 'North Bergen', 'state': 'NJ', 'position': 'ILB', 'height': 74.0, 'weight': '220', 'compRating': '0.8210', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '55', 'stateRank': '35'}, {'school': 'arkansas', 'year': '2004', 'playerName': 'Marcus Monk', 'highSchool': 'East Poinsett Co.', 'city': 'Lepanto', 'state': 'AR', 'position': 'WR', 'height': 78.0, 'weight': '205', 'compRating': '0.9434', 'compStars': 4, 'nationalRank': '111', 'positionRank': '15', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2004', 'playerName': 'Michael Grant', 'highSchool': 'Stephenson', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'ATH', 'height': 72.0, 'weight': '175', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '169', 'positionRank': '8', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2004', 'playerName': 'Cedric Logan', 'highSchool': 'Fayetteville', 'city': 'Fayetteville', 'state': 'AR', 'position': 'WR', 'height': 71.0, 'weight': '160', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '197', 'positionRank': '29', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2004', 'playerName': 'Ernest Mitchell, Jr.', 'highSchool': 'Newnan', 'city': 'Newnan', 'state': 'GA', 'position': 'DT', 'height': 73.0, 'weight': '280', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '283', 'positionRank': '23', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2004', 'playerName': 'Fred Bledsoe', 'highSchool': 'Arkansas', 'city': 'Texarkana', 'state': 'AR', 'position': 'DT', 'height': 73.0, 'weight': '283', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '388', 'positionRank': '33', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2004', 'playerName': 'Desmond Williams', 'highSchool': 'Trinity', 'city': 'Euless', 'state': 'TX', 'position': 'S', 'height': 73.0, 'weight': '200', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '421', 'positionRank': '22', 'stateRank': '69', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2004', 'playerName': "D'Nerian Wrighter", 'highSchool': 'Marlin', 'city': 'Marlin', 'state': 'TX', 'position': 'S', 'height': 73.0, 'weight': '205', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '428', 'positionRank': '23', 'stateRank': '70', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2004', 'playerName': 'Shedrick Johnson', 'highSchool': 'Sweeny', 'city': 'Sweeny', 'state': 'TX', 'position': 'CB', 'height': 71.0, 'weight': '178', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '448', 'positionRank': '34', 'stateRank': '75', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2004', 'playerName': 'Marc Winston', 'highSchool': 'Parkview Magnet', 'city': 'Little Rock', 'state': 'AR', 'position': 'TE', 'height': 79.0, 'weight': '235', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '485', 'positionRank': '20', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2004', 'playerName': 'Jeremy Palmoore', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'OT', 'height': 78.0, 'weight': '320', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '11', 'positionRank': '1', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2004', 'playerName': 'Korey Sutton', 'highSchool': 'Texas High', 'city': 'Texarkana', 'state': 'TX', 'position': 'APB', 'height': 70.0, 'weight': '195', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '577', 'positionRank': '17', 'stateRank': '92', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2004', 'playerName': 'Ryan Young', 'highSchool': 'University', 'city': 'Waco', 'state': 'TX', 'position': 'OT', 'height': 78.0, 'weight': '303', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '585', 'positionRank': '40', 'stateRank': '93', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2004', 'playerName': 'Matterial Richardson', 'highSchool': 'Marlin', 'city': 'Marlin', 'state': 'TX', 'position': 'CB', 'height': 70.0, 'weight': '195', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '761', 'positionRank': '55', 'stateRank': '118', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2004', 'playerName': 'Randy Kelly', 'highSchool': 'Coffeyville C.C.', 'city': 'Coffeyville', 'state': 'KS', 'position': 'S', 'height': 72.0, 'weight': '180', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '108', 'positionRank': '8', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2004', 'playerName': 'Darius Vinnett', 'highSchool': 'West Hills College', 'city': 'Coalinga', 'state': 'CA', 'position': 'ATH', 'height': 69.0, 'weight': '170', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '116', 'positionRank': '2', 'stateRank': '48', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2004', 'playerName': 'Zach Snider', 'highSchool': 'Union', 'city': 'Tulsa', 'state': 'OK', 'position': 'OLB', 'height': 75.0, 'weight': '225', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': '819', 'positionRank': '49', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2004', 'playerName': 'Rick Culbert', 'highSchool': 'Vidor', 'city': 'Vidor', 'state': 'TX', 'position': 'S', 'height': 72.0, 'weight': '179', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': '885', 'positionRank': '57', 'stateRank': '142', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2004', 'playerName': 'Dallas Washington', 'highSchool': 'Atlanta', 'city': 'Atlanta', 'state': 'TX', 'position': 'S', 'height': 72.0, 'weight': '190', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': '905', 'positionRank': '58', 'stateRank': '146', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2004', 'playerName': 'Jamaal Anderson', 'highSchool': 'Parkview Magnet', 'city': 'Little Rock', 'state': 'AR', 'position': 'WR', 'height': 78.0, 'weight': '205', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': '964', 'positionRank': '107', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2004', 'playerName': 'Kyle Payne', 'highSchool': 'West Memphis', 'city': 'West Memphis', 'state': 'AR', 'position': 'RB', 'height': 72.0, 'weight': '190', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '70', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2004', 'playerName': 'Weston Dacus', 'highSchool': 'Searcy', 'city': 'Searcy', 'state': 'AR', 'position': 'FB', 'height': 74.0, 'weight': '225', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '22', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2004', 'playerName': 'Skye Peterson', 'highSchool': 'Mississippi Delta C.C.', 'city': 'Moorhead', 'state': 'MS', 'position': 'OG', 'height': 75.0, 'weight': '290', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': '228', 'positionRank': '26', 'stateRank': '41', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2004', 'playerName': 'Jonathan Luigs', 'highSchool': 'Pulaski Academy', 'city': 'Little Rock', 'state': 'AR', 'position': 'OG', 'height': 75.0, 'weight': '295', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '175', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2004', 'playerName': 'Alex Mortensen', 'highSchool': 'Landmark Christian School', 'city': 'Fairburn', 'state': 'GA', 'position': 'PRO', 'height': 74.0, 'weight': '185', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '75', 'stateRank': '124', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2004', 'playerName': 'Peyton Hillis', 'highSchool': 'Conway', 'city': 'Conway', 'state': 'AR', 'position': 'FB', 'height': 74.0, 'weight': '245', 'compRating': '0.9343', 'compStars': 4, 'nationalRank': '119', 'positionRank': '2', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2004', 'playerName': 'Fred Barnett', 'highSchool': 'Arkansas', 'city': 'Texarkana', 'state': 'AR', 'position': 'DT', 'height': 73.0, 'weight': '285', 'compRating': '0.9097', 'compStars': 4, 'nationalRank': '146', 'positionRank': '16', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2007', 'playerName': 'Michael Ricks', 'highSchool': 'Northeast Mississippi C.C.', 'city': 'Booneville', 'state': 'MS', 'position': 'S', 'height': 74.0, 'weight': '195', 'compRating': '0.9444', 'compStars': 4, 'nationalRank': '2', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2007', 'playerName': 'Luther Davis', 'highSchool': 'West Monroe', 'city': 'West Monroe', 'state': 'LA', 'position': 'SDE', 'height': 75.0, 'weight': '279', 'compRating': '0.9425', 'compStars': 4, 'nationalRank': '109', 'positionRank': '10', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2007', 'playerName': 'Rolando McClain', 'highSchool': 'Decatur', 'city': 'Decatur', 'state': 'AL', 'position': 'ILB', 'height': 76.0, 'weight': '240', 'compRating': '0.9338', 'compStars': 4, 'nationalRank': '128', 'positionRank': '5', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2007', 'playerName': 'Brandon Gibson', 'highSchool': 'UMS-Wright Preparatory School', 'city': 'Mobile', 'state': 'AL', 'position': 'WR', 'height': 74.0, 'weight': '194', 'compRating': '0.9207', 'compStars': 4, 'nationalRank': '164', 'positionRank': '23', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2007', 'playerName': 'William Vlachos', 'highSchool': 'Mountain Brook', 'city': 'Birmingham', 'state': 'AL', 'position': 'OC', 'height': 73.0, 'weight': '294', 'compRating': '0.9146', 'compStars': 4, 'nationalRank': '178', 'positionRank': '3', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2007', 'playerName': 'Alex Watkins', 'highSchool': 'Haywood', 'city': 'Brownsville', 'state': 'TN', 'position': 'OLB', 'height': 75.0, 'weight': '234', 'compRating': '0.8955', 'compStars': 4, 'nationalRank': '219', 'positionRank': '12', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2007', 'playerName': 'Demetrius Goode', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'RB', 'height': 70.0, 'weight': '191', 'compRating': '0.8906', 'compStars': 4, 'nationalRank': '11', 'positionRank': '4', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2007', 'playerName': 'Chris Lett', 'highSchool': 'Pensacola', 'city': 'Pensacola', 'state': 'FL', 'position': 'CB', 'height': 74.0, 'weight': '195', 'compRating': '0.8844', 'compStars': 3, 'nationalRank': '282', 'positionRank': '21', 'stateRank': '42', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2007', 'playerName': 'Alfred McCullough', 'highSchool': 'Athens', 'city': 'Athens', 'state': 'AL', 'position': 'OG', 'height': 74.0, 'weight': '311', 'compRating': '0.8813', 'compStars': 3, 'nationalRank': '296', 'positionRank': '17', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2007', 'playerName': 'Nick Gentry', 'highSchool': 'Prattville', 'city': 'Prattville', 'state': 'AL', 'position': 'DT', 'height': 73.0, 'weight': '284', 'compRating': '0.8764', 'compStars': 3, 'nationalRank': '354', 'positionRank': '32', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2007', 'playerName': 'Jeramie Griffin', 'highSchool': 'South Panola', 'city': 'Batesville', 'state': 'MS', 'position': 'FB', 'height': 72.0, 'weight': '230', 'compRating': '0.8733', 'compStars': 3, 'nationalRank': '389', 'positionRank': '4', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2007', 'playerName': 'Marquis Maze', 'highSchool': 'Tarrant', 'city': 'Birmingham', 'state': 'AL', 'position': 'WR', 'height': 70.0, 'weight': '180', 'compRating': '0.8684', 'compStars': 3, 'nationalRank': '416', 'positionRank': '51', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2007', 'playerName': 'Jamar Taylor', 'highSchool': 'Lakeland', 'city': 'Lakeland', 'state': 'FL', 'position': 'RB', 'height': 69.0, 'weight': '204', 'compRating': '0.8670', 'compStars': 3, 'nationalRank': '425', 'positionRank': '38', 'stateRank': '56', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2007', 'playerName': 'Kareem Jackson', 'highSchool': 'Fork Union Military Academy', 'city': 'Fork Union', 'state': 'VA', 'position': 'CB', 'height': 70.0, 'weight': '185', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '16', 'positionRank': '1', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2007', 'playerName': 'Nick Fanuzzi', 'highSchool': 'Churchill', 'city': 'San Antonio', 'state': 'TX', 'position': 'DUAL', 'height': 75.0, 'weight': '200', 'compRating': '0.8653', 'compStars': 3, 'nationalRank': '440', 'positionRank': '12', 'stateRank': '59', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2007', 'playerName': 'Patrick Crump', 'highSchool': 'Hoover', 'city': 'Hoover', 'state': 'AL', 'position': 'OG', 'height': 75.0, 'weight': '285', 'compRating': '0.8639', 'compStars': 3, 'nationalRank': '459', 'positionRank': '29', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2007', 'playerName': 'Josh Chapman', 'highSchool': 'Hoover', 'city': 'Hoover', 'state': 'AL', 'position': 'DT', 'height': 73.0, 'weight': '310', 'compRating': '0.8545', 'compStars': 3, 'nationalRank': '571', 'positionRank': '41', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2007', 'playerName': 'Tarence Farmer', 'highSchool': 'St. Pius X', 'city': 'Houston', 'state': 'TX', 'position': 'S', 'height': 73.0, 'weight': '190', 'compRating': '0.8510', 'compStars': 3, 'nationalRank': '628', 'positionRank': '48', 'stateRank': '79', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2007', 'playerName': 'Chavis Williams', 'highSchool': 'Dora', 'city': 'Dora', 'state': 'AL', 'position': 'OLB', 'height': 76.0, 'weight': '223', 'compRating': '0.8448', 'compStars': 3, 'nationalRank': '698', 'positionRank': '41', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2007', 'playerName': 'Darius Hanks', 'highSchool': 'Norcross', 'city': 'Norcross', 'state': 'GA', 'position': 'WR', 'height': 72.0, 'weight': '185', 'compRating': '0.8323', 'compStars': 3, 'nationalRank': '962', 'positionRank': '106', 'stateRank': '50', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2007', 'playerName': 'Jeremy Elder', 'highSchool': 'North Clayton', 'city': 'Atlanta', 'state': 'GA', 'position': 'SDE', 'height': 75.0, 'weight': '270', 'compRating': '0.8274', 'compStars': 3, 'nationalRank': '1000', 'positionRank': '61', 'stateRank': '53', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2007', 'playerName': 'Jennings Hester', 'highSchool': 'Marist School', 'city': 'Atlanta', 'state': 'GA', 'position': 'ILB', 'height': 75.0, 'weight': '228', 'compRating': '0.8243', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '49', 'stateRank': '55', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2007', 'playerName': 'Chris Underwood', 'highSchool': 'Vestavia Hills', 'city': 'Birmingham', 'state': 'AL', 'position': 'TE', 'height': 76.0, 'weight': '243', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '77', 'stateRank': '36', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2007', 'playerName': 'J.B. Kern', 'highSchool': 'Mission Viejo', 'city': 'Mission Viejo', 'state': 'CA', 'position': 'ILB', 'height': 73.0, 'weight': '232', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2007', 'playerName': 'Logan Thomas', 'highSchool': 'Cy Creek', 'city': 'Houston', 'state': 'TX', 'position': 'WR', 'height': 75.0, 'weight': '206', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2007', 'playerName': 'Michael DeJohn', 'highSchool': 'Hoover', 'city': 'Hoover', 'state': 'AL', 'position': 'OLB', 'height': 73.0, 'weight': '237', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2007', 'playerName': 'Rob Ezell', 'highSchool': 'Athens', 'city': 'Athens', 'state': 'AL', 'position': 'WR', 'height': 70.0, 'weight': '172', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2007', 'playerName': 'Colin Gallagher', 'highSchool': 'Marist School', 'city': 'Atlanta', 'state': 'GA', 'position': 'K', 'height': 70.0, 'weight': '194', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2007', 'playerName': 'Mark Holt', 'highSchool': 'Muscle Shoals', 'city': 'Muscle Shoals', 'state': 'AL', 'position': 'CB', 'height': 73.0, 'weight': '172', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2007', 'playerName': 'Kerry Murphy', 'highSchool': 'Hoover', 'city': 'Hoover', 'state': 'AL', 'position': 'DT', 'height': 76.0, 'weight': '319', 'compRating': '0.9771', 'compStars': 4, 'nationalRank': '51', 'positionRank': '3', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2011', 'playerName': 'Dee Arrington', 'highSchool': 'Stone', 'city': 'Wiggins', 'state': 'MS', 'position': 'S', 'height': 73.0, 'weight': '200', 'compRating': '0.9251', 'compStars': 4, 'nationalRank': '160', 'positionRank': '9', 'stateRank': '5', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '212', '247positionRank': '15', '247stateRank': '5'}, {'school': 'mississippi-state', 'year': '2011', 'playerName': 'Joe Morrow', 'highSchool': 'Ocean Springs', 'city': 'Pascagoula', 'state': 'MS', 'position': 'WR', 'height': 76.0, 'weight': '205', 'compRating': '0.8756', 'compStars': 3, 'nationalRank': '365', 'positionRank': '45', 'stateRank': '11', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '109', '247stateRank': '28'}, {'school': 'mississippi-state', 'year': '2011', 'playerName': 'P.J. Jones', 'highSchool': 'Tupelo', 'city': 'Tupelo', 'state': 'MS', 'position': 'SDE', 'height': 74.0, 'weight': '275', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '444', 'positionRank': '31', 'stateRank': '13', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '23', '247stateRank': '10'}, {'school': 'mississippi-state', 'year': '2011', 'playerName': 'James Maiden', 'highSchool': 'Wilkinson County', 'city': 'Woodville', 'state': 'MS', 'position': 'DT', 'height': 76.0, 'weight': '270', 'compRating': '0.8617', 'compStars': 3, 'nationalRank': '517', 'positionRank': '42', 'stateRank': '15', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '37', '247stateRank': '13'}, {'school': 'mississippi-state', 'year': '2011', 'playerName': 'Dak Prescott', 'highSchool': 'Haughton', 'city': 'Haughton', 'state': 'LA', 'position': 'DUAL', 'height': 75.0, 'weight': '220', 'compRating': '0.8569', 'compStars': 3, 'nationalRank': '601', 'positionRank': '20', 'stateRank': '23', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '19', '247stateRank': '22'}, {'school': 'mississippi-state', 'year': '2011', 'playerName': 'Zachary Jackson', 'highSchool': 'Heidelberg', 'city': 'Heidelberg', 'state': 'MS', 'position': 'ATH', 'height': 73.0, 'weight': '203', 'compRating': '0.8466', 'compStars': 3, 'nationalRank': '785', 'positionRank': '50', 'stateRank': '20', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '45', '247stateRank': '17'}, {'school': 'mississippi-state', 'year': '2011', 'playerName': 'Josh Robinson', 'highSchool': 'Franklinton', 'city': 'Franklinton', 'state': 'LA', 'position': 'RB', 'height': 69.0, 'weight': '205', 'compRating': '0.8366', 'compStars': 3, 'nationalRank': '956', 'positionRank': '58', 'stateRank': '30', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '56', '247stateRank': '31'}, {'school': 'mississippi-state', 'year': '2011', 'playerName': 'Rufus Warren', 'highSchool': 'Gentry', 'city': 'Indianola', 'state': 'MS', 'position': 'TE', 'height': 77.0, 'weight': '250', 'compRating': '0.8316', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '51', 'stateRank': '24', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '40', '247stateRank': '25'}, {'school': 'mississippi-state', 'year': '2011', 'playerName': 'Daniel Knox', 'highSchool': 'West Lauderdale Attendance Center', 'city': 'Collinsville', 'state': 'MS', 'position': 'OT', 'height': 77.0, 'weight': '255', 'compRating': '0.8216', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '107', 'stateRank': '26', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '92', '247stateRank': '30'}, {'school': 'mississippi-state', 'year': '2011', 'playerName': 'Benardrick McKinney', 'highSchool': 'Rosa Fort', 'city': 'Tunica', 'state': 'MS', 'position': 'ATH', 'height': 75.0, 'weight': '210', 'compRating': '0.8209', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '76', 'stateRank': '27', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '61', '247stateRank': '22'}, {'school': 'mississippi-state', 'year': '2011', 'playerName': 'Darius Slay', 'highSchool': 'Itawamba C.C.', 'city': 'Fulton', 'state': 'MS', 'position': 'S', 'height': 73.0, 'weight': '188', 'compRating': '0.8200', 'compStars': 3, 'nationalRank': '72', 'positionRank': '6', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2011', 'playerName': 'Derrick Milton', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'RB', 'height': 71.0, 'weight': '200', 'compRating': '0.8200', 'compStars': 3, 'nationalRank': '23', 'positionRank': '1', 'stateRank': '18', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2011', 'playerName': 'Kendrick Market', 'highSchool': 'South Panola', 'city': 'Batesville', 'state': 'MS', 'position': 'S', 'height': 70.0, 'weight': '185', 'compRating': '0.8183', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '91', 'stateRank': '28', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '36', '247stateRank': '16'}, {'school': 'mississippi-state', 'year': '2011', 'playerName': 'Nick Redmond', 'highSchool': 'Harrison Central', 'city': 'Gulfport', 'state': 'MS', 'position': 'OT', 'height': 77.0, 'weight': '310', 'compRating': '0.8116', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '113', 'stateRank': '30', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '103', '247stateRank': '33'}, {'school': 'mississippi-state', 'year': '2011', 'playerName': 'Taveze Calhoun', 'highSchool': 'Morton', 'city': 'Morton', 'state': 'MS', 'position': 'ATH', 'height': 72.0, 'weight': '170', 'compRating': '0.8083', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '88', 'stateRank': '31', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '57', '247stateRank': '20'}, {'school': 'mississippi-state', 'year': '2011', 'playerName': 'John Harris', 'highSchool': 'Boynton Beach Community', 'city': 'Boynton Beach', 'state': 'FL', 'position': 'SDE', 'height': 77.0, 'weight': '255', 'compRating': '0.8066', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '88', 'stateRank': '192', '247Rating': ' 78 ', '247Stars': 2, '247positionRank': '81', '247stateRank': '191'}, {'school': 'mississippi-state', 'year': '2011', 'playerName': 'Justin Malone', 'highSchool': 'Ridgeland', 'city': 'Ridgeland', 'state': 'MS', 'position': 'OT', 'height': 78.0, 'weight': '315', 'compRating': '0.8033', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '125', 'stateRank': '32', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '73', '247stateRank': '23'}, {'school': 'mississippi-state', 'year': '2011', 'playerName': 'Preston Smith', 'highSchool': 'Stephenson', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'WDE', 'height': 77.0, 'weight': '215', 'compRating': '0.7782', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '79', 'stateRank': '118', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '59', '247stateRank': '81'}, {'school': 'mississippi-state', 'year': '2011', 'playerName': 'Joey Trapp', 'highSchool': 'Los Angeles Harbor College', 'city': 'Wilmington', 'state': 'CA', 'position': 'OT', 'height': 75.0, 'weight': '300', 'compRating': '0.7700', 'compStars': 2, 'nationalRank': '122', 'positionRank': '8', 'stateRank': '44'}, {'school': 'mississippi-state', 'year': '2011', 'playerName': 'Dewayne Cherrington', 'highSchool': 'Holmes C.C.', 'city': 'Goodman', 'state': 'MS', 'position': 'DT', 'height': 75.0, 'weight': '325', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2011', 'playerName': 'Devin Fosselman', 'highSchool': 'Wilkinson County', 'city': 'Woodville', 'state': 'MS', 'position': 'WR', 'height': 70.0, 'weight': '190', 'compRating': '0.8617', 'compStars': 3, 'nationalRank': '513', 'positionRank': '66', 'stateRank': '14', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '38', '247stateRank': '11'}, {'school': 'mississippi-state', 'year': '2011', 'playerName': 'Justin Cox', 'highSchool': 'West Point', 'city': 'West Point', 'state': 'MS', 'position': 'S', 'height': 73.0, 'weight': '190', 'compRating': '0.8566', 'compStars': 3, 'nationalRank': '608', 'positionRank': '41', 'stateRank': '16', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '20', '247positionRank': '1', '247stateRank': '5'}, {'school': 'mississippi-state', 'year': '2011', 'playerName': 'Shaquille Perry', 'highSchool': 'Walnut Attendance Center', 'city': 'Walnut', 'state': 'MS', 'position': 'OLB', 'height': 74.0, 'weight': '220', 'compRating': '0.7983', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '119', 'stateRank': '33'}, {'school': 'auburn', 'year': '2020', 'playerName': 'Tank Bigsby', 'highSchool': 'Callaway', 'city': 'Hogansville', 'state': 'GA', 'position': 'RB', 'height': 72.0, 'weight': '210', 'compRating': '0.9816', 'compStars': 4, 'nationalRank': '39', 'positionRank': '4', 'stateRank': '6', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '79', '247positionRank': '6', '247stateRank': '10'}, {'school': 'auburn', 'year': '2020', 'playerName': 'Zykeivous Walker', 'highSchool': 'Schley County', 'city': 'Ellaville', 'state': 'GA', 'position': 'SDE', 'height': 76.0, 'weight': '260', 'compRating': '0.9650', 'compStars': 4, 'nationalRank': '79', 'positionRank': '3', 'stateRank': '11', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '91', '247positionRank': '3', '247stateRank': '11'}, {'school': 'auburn', 'year': '2020', 'playerName': 'Wesley Steiner', 'highSchool': 'Houston County', 'city': 'Warner Robins', 'state': 'GA', 'position': 'ILB', 'height': 72.0, 'weight': '220', 'compRating': '0.9560', 'compStars': 4, 'nationalRank': '98', 'positionRank': '7', 'stateRank': '14', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '78', '247positionRank': '5', '247stateRank': '9'}, {'school': 'auburn', 'year': '2020', 'playerName': 'Jay Hardy', 'highSchool': 'McCallie School', 'city': 'Chattanooga', 'state': 'TN', 'position': 'DT', 'height': 76.0, 'weight': '280', 'compRating': '0.9550', 'compStars': 4, 'nationalRank': '101', 'positionRank': '13', 'stateRank': '3', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '108', '247positionRank': '14', '247stateRank': '3'}, {'school': 'auburn', 'year': '2020', 'playerName': 'Kobe Hudson', 'highSchool': 'Troup County', 'city': 'Lagrange', 'state': 'GA', 'position': 'WR', 'height': 73.0, 'weight': '186', 'compRating': '0.9511', 'compStars': 4, 'nationalRank': '111', 'positionRank': '19', 'stateRank': '17', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '158', '247positionRank': '28', '247stateRank': '19'}, {'school': 'auburn', 'year': '2020', 'playerName': "Ze'Vian Capers", 'highSchool': 'Denmark', 'city': 'Alpharetta', 'state': 'GA', 'position': 'WR', 'height': 75.5, 'weight': '195', 'compRating': '0.9391', 'compStars': 4, 'nationalRank': '132', 'positionRank': '24', 'stateRank': '18', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '166', '247positionRank': '30', '247stateRank': '20'}, {'school': 'auburn', 'year': '2020', 'playerName': 'J.J. Evans', 'highSchool': 'Montevallo', 'city': 'Montevallo', 'state': 'AL', 'position': 'WR', 'height': 74.0, 'weight': '185', 'compRating': '0.9288', 'compStars': 4, 'nationalRank': '167', 'positionRank': '29', 'stateRank': '6', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '193', '247positionRank': '35', '247stateRank': '8'}, {'school': 'auburn', 'year': '2020', 'playerName': 'Ladarius Tennison', 'highSchool': 'Rockledge', 'city': 'ROCKLEDGE', 'state': 'FL', 'position': 'ATH', 'height': 69.0, 'weight': '193', 'compRating': '0.9286', 'compStars': 4, 'nationalRank': '170', 'positionRank': '4', 'stateRank': '25', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '171', '247positionRank': '5', '247stateRank': '25'}, {'school': 'auburn', 'year': '2020', 'playerName': 'Eric Reed', 'highSchool': 'Calvary Baptist Academy', 'city': 'Shreveport', 'state': 'LA', 'position': 'S', 'height': 73.0, 'weight': '197', 'compRating': '0.9234', 'compStars': 4, 'nationalRank': '189', 'positionRank': '16', 'stateRank': '8', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '202', '247positionRank': '18', '247stateRank': '9'}, {'school': 'auburn', 'year': '2020', 'playerName': 'Chris Thompson Jr.', 'highSchool': 'Duncanville', 'city': 'Duncanville', 'state': 'TX', 'position': 'S', 'height': 74.0, 'weight': '199', 'compRating': '0.9216', 'compStars': 4, 'nationalRank': '199', 'positionRank': '17', 'stateRank': '29', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '48', '247stateRank': '75'}, {'school': 'auburn', 'year': '2020', 'playerName': 'Jeremiah Pegues', 'highSchool': 'Oxford', 'city': 'Oxford', 'state': 'MS', 'position': 'ATH', 'height': 74.0, 'weight': '285', 'compRating': '0.9165', 'compStars': 4, 'nationalRank': '225', 'positionRank': '6', 'stateRank': '3', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '190', '247positionRank': '7', '247stateRank': '3'}, {'school': 'auburn', 'year': '2020', 'playerName': 'Desmond Tisdol', 'highSchool': 'Wilcox County', 'city': 'Rochelle', 'state': 'GA', 'position': 'ILB', 'height': 72.0, 'weight': '215', 'compRating': '0.9105', 'compStars': 4, 'nationalRank': '245', 'positionRank': '14', 'stateRank': '24', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '192', '247positionRank': '15', '247stateRank': '24'}, {'school': 'auburn', 'year': '2020', 'playerName': 'Deandre Butler', 'highSchool': 'Independence C.C.', 'city': 'Independence', 'state': 'KS', 'position': 'SDE', 'height': 77.0, 'weight': '280', 'compRating': '0.9045', 'compStars': 4, 'nationalRank': '4', 'positionRank': '1', 'stateRank': '2', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '4', '247positionRank': '1', '247stateRank': '2'}, {'school': 'auburn', 'year': '2020', 'playerName': 'Cameron Riley', 'highSchool': 'Hillcrest', 'city': 'Evergreen', 'state': 'AL', 'position': 'OLB', 'height': 75.5, 'weight': '207', 'compRating': '0.8978', 'compStars': 4, 'nationalRank': '310', 'positionRank': '20', 'stateRank': '13', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '229', '247positionRank': '14', '247stateRank': '10'}, {'school': 'auburn', 'year': '2020', 'playerName': 'Brandon Frazier', 'highSchool': 'McKinney North', 'city': 'McKinney', 'state': 'TX', 'position': 'TE', 'height': 79.0, 'weight': '247', 'compRating': '0.8935', 'compStars': 4, 'nationalRank': '347', 'positionRank': '9', 'stateRank': '50', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '213', '247positionRank': '9', '247stateRank': '32'}, {'school': 'auburn', 'year': '2020', 'playerName': 'Marco Domio', 'highSchool': 'Blinn College', 'city': 'Brenham', 'state': 'TX', 'position': 'CB', 'height': 74.0, 'weight': '190', 'compRating': '0.8925', 'compStars': 4, 'nationalRank': '7', 'positionRank': '3', 'stateRank': '2', '247Rating': ' 89 ', '247Stars': 3, '247nationalRank': '17', '247positionRank': '4', '247stateRank': '4'}, {'school': 'auburn', 'year': '2020', 'playerName': 'Romello Height', 'highSchool': 'Dublin', 'city': 'Dublin', 'state': 'GA', 'position': 'OLB', 'height': 77.0, 'weight': '216', 'compRating': '0.8884', 'compStars': 3, 'nationalRank': '393', 'positionRank': '26', 'stateRank': '37', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '24', '247stateRank': '35'}, {'school': 'auburn', 'year': '2020', 'playerName': 'Kilian Zierer', 'highSchool': 'College of the Canyons', 'city': 'Valencia', 'state': 'CA', 'position': 'OT', 'height': 79.0, 'weight': '290', 'compRating': '0.8818', 'compStars': 3, 'nationalRank': '20', 'positionRank': '3', 'stateRank': '4', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '20', '247positionRank': '3', '247stateRank': '4'}, {'school': 'auburn', 'year': '2020', 'playerName': 'Avery Jernigan', 'highSchool': 'Pierce County', 'city': 'Blackshear', 'state': 'GA', 'position': 'OG', 'height': 75.0, 'weight': '278', 'compRating': '0.8797', 'compStars': 3, 'nationalRank': '481', 'positionRank': '25', 'stateRank': '51', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '25', '247stateRank': '51'}, {'school': 'auburn', 'year': '2020', 'playerName': 'Brenden Coffey', 'highSchool': 'Butte College', 'city': 'Oroville', 'state': 'CA', 'position': 'OT', 'height': 78.5, 'weight': '275', 'compRating': '0.8784', 'compStars': 3, 'nationalRank': '27', 'positionRank': '4', 'stateRank': '7', '247Rating': ' 87 ', '247Stars': 3, '247nationalRank': '40', '247positionRank': '4', '247stateRank': '10'}, {'school': 'auburn', 'year': '2020', 'playerName': 'Tate Johnson', 'highSchool': 'Callaway', 'city': 'Hogansville', 'state': 'GA', 'position': 'OG', 'height': 76.0, 'weight': '310', 'compRating': '0.8784', 'compStars': 3, 'nationalRank': '495', 'positionRank': '27', 'stateRank': '53', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '45', '247stateRank': '71'}, {'school': 'auburn', 'year': '2020', 'playerName': 'Daniel Foster-Allen', 'highSchool': "St. Paul's Episcopal", 'city': 'Mobile', 'state': 'AL', 'position': 'SDE', 'height': 76.0, 'weight': '250', 'compRating': '0.8763', 'compStars': 3, 'nationalRank': '523', 'positionRank': '23', 'stateRank': '22', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '35', '247stateRank': '23'}, {'school': 'auburn', 'year': '2020', 'playerName': 'Elijah Canion', 'highSchool': 'Chaminade-Madonna Prep', 'city': 'Hollywood', 'state': 'FL', 'position': 'WR', 'height': 75.0, 'weight': '190', 'compRating': '0.8763', 'compStars': 3, 'nationalRank': '524', 'positionRank': '85', 'stateRank': '71', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '121', '247stateRank': '78'}, {'school': 'auburn', 'year': '2020', 'playerName': 'Marquis Burks', 'highSchool': 'Iowa Central C.C.', 'city': 'Fort Dodge', 'state': 'IA', 'position': 'DT', 'height': 75.0, 'weight': '285', 'compRating': '0.8743', 'compStars': 3, 'nationalRank': '28', 'positionRank': '4', 'stateRank': '4', '247Rating': ' 87 ', '247Stars': 3, '247nationalRank': '48', '247positionRank': '5', '247stateRank': '6'}, {'school': 'auburn', 'year': '2020', 'playerName': 'Jeremiah Wright', 'highSchool': 'Selma', 'city': 'Selma', 'state': 'AL', 'position': 'OG', 'height': 76.0, 'weight': '320', 'compRating': '0.8676', 'compStars': 3, 'nationalRank': '663', 'positionRank': '40', 'stateRank': '28', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '48', '247stateRank': '29'}, {'school': 'auburn', 'year': '2020', 'playerName': 'Chayil Garnett', 'highSchool': 'Lakeland', 'city': 'Lakeland', 'state': 'FL', 'position': 'DUAL', 'height': 73.0, 'weight': '205', 'compRating': '0.8643', 'compStars': 3, 'nationalRank': '746', 'positionRank': '23', 'stateRank': '97', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '30', '247stateRank': '120'}, {'school': 'vanderbilt', 'year': '2007', 'playerName': 'John Stokes', 'highSchool': 'Memphis University School', 'city': 'Memphis', 'state': 'TN', 'position': 'WDE', 'height': 77.0, 'weight': '225', 'compRating': '0.8688', 'compStars': 3, 'nationalRank': '414', 'positionRank': '20', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2007', 'playerName': 'Larry Smith', 'highSchool': 'Prattville', 'city': 'Prattville', 'state': 'AL', 'position': 'DUAL', 'height': 74.0, 'weight': '194', 'compRating': '0.8542', 'compStars': 3, 'nationalRank': '572', 'positionRank': '16', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2007', 'playerName': 'Kyle Fischer', 'highSchool': 'Spring Valley', 'city': 'Columbia', 'state': 'SC', 'position': 'OT', 'height': 77.0, 'weight': '288', 'compRating': '0.8448', 'compStars': 3, 'nationalRank': '701', 'positionRank': '62', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2007', 'playerName': 'Ryan Van Rensburg', 'highSchool': 'The Bolles School', 'city': 'Jacksonville', 'state': 'FL', 'position': 'FB', 'height': 73.0, 'weight': '225', 'compRating': '0.8410', 'compStars': 3, 'nationalRank': '742', 'positionRank': '11', 'stateRank': '91', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2007', 'playerName': 'Jamie Graham', 'highSchool': 'Whites Creek Comprehensive', 'city': 'Whites Creek', 'state': 'TN', 'position': 'ATH', 'height': 71.0, 'weight': '175', 'compRating': '0.8385', 'compStars': 3, 'nationalRank': '765', 'positionRank': '44', 'stateRank': '25', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2007', 'playerName': 'Udom Umoh', 'highSchool': 'Peach County', 'city': 'Fort Valley', 'state': 'GA', 'position': 'WR', 'height': 71.0, 'weight': '168', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '846', 'positionRank': '97', 'stateRank': '46', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2007', 'playerName': 'Chris Marve', 'highSchool': 'White Station', 'city': 'Memphis', 'state': 'TN', 'position': 'ILB', 'height': 72.0, 'weight': '240', 'compRating': '0.8288', 'compStars': 3, 'nationalRank': '990', 'positionRank': '47', 'stateRank': '31', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2007', 'playerName': 'Austin Monahan', 'highSchool': 'Phillips Academy', 'city': 'Andover', 'state': 'MA', 'position': 'TE', 'height': 79.0, 'weight': '232', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '66', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2007', 'playerName': 'Rob Ashabranner', 'highSchool': 'Cathedral', 'city': 'El Paso', 'state': 'TX', 'position': 'DT', 'height': 74.0, 'weight': '256', 'compRating': '0.8101', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '81', 'stateRank': '177', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2007', 'playerName': 'Jermaine Doster', 'highSchool': 'Robinson', 'city': 'Tampa', 'state': 'FL', 'position': 'ATH', 'height': 70.0, 'weight': '205', 'compRating': '0.8038', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '80', 'stateRank': '155', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2007', 'playerName': 'James Williams', 'highSchool': 'Smyrna', 'city': 'Smyrna', 'state': 'TN', 'position': 'OT', 'height': 78.0, 'weight': '301', 'compRating': '0.7927', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '113', 'stateRank': '37', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2007', 'playerName': 'T.J. Greenstone', 'highSchool': 'Collins Hill', 'city': 'Suwanee', 'state': 'GA', 'position': 'DT', 'height': 74.0, 'weight': '242', 'compRating': '0.7816', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '104', 'stateRank': '71', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2007', 'playerName': 'Tim Fugger', 'highSchool': 'Montini Catholic', 'city': 'Lombard', 'state': 'IL', 'position': 'TE', 'height': 76.0, 'weight': '220', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '86', 'stateRank': '45', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2007', 'playerName': 'Theron Kadri', 'highSchool': 'Brighton', 'city': 'Brighton', 'state': 'TN', 'position': 'SDE', 'height': 75.0, 'weight': '245', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '118', 'stateRank': '52', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2003', 'playerName': 'Marquis McBeath', 'highSchool': 'Moss Point', 'city': 'Moss Point', 'state': 'MS', 'position': 'ILB', 'height': 73.0, 'weight': '215', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '218', 'positionRank': '15', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2003', 'playerName': 'Brandon Jenkins', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'DT', 'height': 77.0, 'weight': '274', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '5', 'positionRank': '2', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2003', 'playerName': 'Iroko Ayodele', 'highSchool': 'Mississippi Gulf Coast C.C.', 'city': 'Perkinston', 'state': 'MS', 'position': 'S', 'height': 74.0, 'weight': '207', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '43', 'positionRank': '4', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2003', 'playerName': 'Robert Hough', 'highSchool': 'Provine', 'city': 'Jackson', 'state': 'MS', 'position': 'TE', 'height': 77.0, 'weight': '206', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '361', 'positionRank': '20', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2003', 'playerName': 'Marcus Cohen', 'highSchool': 'Clarksdale', 'city': 'Clarksdale', 'state': 'MS', 'position': 'OT', 'height': 77.0, 'weight': '308', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '401', 'positionRank': '28', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2003', 'playerName': 'Alan Abrams', 'highSchool': 'Apopka', 'city': 'Apopka', 'state': 'FL', 'position': 'RB', 'height': 72.0, 'weight': '195', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '481', 'positionRank': '28', 'stateRank': '60', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2003', 'playerName': 'Trumaine McBride', 'highSchool': 'Clarksdale', 'city': 'Clarksdale', 'state': 'MS', 'position': 'CB', 'height': 70.0, 'weight': '182', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '497', 'positionRank': '37', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2003', 'playerName': 'Danny Bell', 'highSchool': 'Andrew Jackson', 'city': 'Jacksonville', 'state': 'FL', 'position': 'S', 'height': 75.0, 'weight': '200', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '565', 'positionRank': '31', 'stateRank': '74', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2003', 'playerName': 'Edwin Gelin', 'highSchool': 'Hialeah', 'city': 'Hialeah', 'state': 'FL', 'position': 'WR', 'height': 75.0, 'weight': '190', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '632', 'positionRank': '62', 'stateRank': '79', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2003', 'playerName': 'Charles Clark', 'highSchool': 'Clay', 'city': 'Green Cove Springs', 'state': 'FL', 'position': 'S', 'height': 72.0, 'weight': '180', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '722', 'positionRank': '41', 'stateRank': '93', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2003', 'playerName': 'Patrick Willis', 'highSchool': 'Central', 'city': 'Bruceton', 'state': 'TN', 'position': 'ILB', 'height': 74.0, 'weight': '220', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '783', 'positionRank': '53', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2003', 'playerName': 'Thomas Eckers', 'highSchool': 'West Point', 'city': 'West Point', 'state': 'MS', 'position': 'OG', 'height': 75.0, 'weight': '285', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '860', 'positionRank': '67', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2003', 'playerName': 'Dawan Woods', 'highSchool': 'Duncan U. Fletcher', 'city': 'Neptune Beach', 'state': 'FL', 'position': 'APB', 'height': 74.0, 'weight': '205', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '883', 'positionRank': '17', 'stateRank': '113', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2003', 'playerName': 'Viciente DeLoach', 'highSchool': 'Columbus', 'city': 'Columbus', 'state': 'MS', 'position': 'SDE', 'height': 76.0, 'weight': '214', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '910', 'positionRank': '52', 'stateRank': '25', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2003', 'playerName': 'Kareem Moore', 'highSchool': 'Okolona', 'city': 'Okolona', 'state': 'MS', 'position': 'S', 'height': 72.0, 'weight': '202', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '950', 'positionRank': '64', 'stateRank': '26', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2003', 'playerName': 'Jeremy Garrett', 'highSchool': 'Senatobia', 'city': 'Senatobia', 'state': 'MS', 'position': 'WDE', 'height': 74.0, 'weight': '265', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '52', 'stateRank': '33', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2003', 'playerName': 'Daryl Harris', 'highSchool': 'Clarksdale', 'city': 'Clarksdale', 'state': 'MS', 'position': 'OG', 'height': 75.0, 'weight': '252', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '105', 'stateRank': '35', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2003', 'playerName': 'Frank Clayton', 'highSchool': 'Dunwoody', 'city': 'Atlanta', 'state': 'GA', 'position': 'WR', 'height': 72.0, 'weight': '185', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '200', 'stateRank': '102', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2003', 'playerName': 'Carlos Suggs', 'highSchool': 'Ridgeway', 'city': 'Memphis', 'state': 'TN', 'position': 'WR', 'height': 79.0, 'weight': '210', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '217', 'stateRank': '38', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2003', 'playerName': 'Terrance Houston', 'highSchool': 'Hillsboro', 'city': 'Nashville', 'state': 'TN', 'position': 'OG', 'height': 75.0, 'weight': '275', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '149', 'stateRank': '41', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2003', 'playerName': 'Robert Lane', 'highSchool': 'Neville', 'city': 'Monroe', 'state': 'LA', 'position': 'DUAL', 'height': 75.0, 'weight': '210', 'compRating': '0.9876', 'compStars': 5, 'nationalRank': '27', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2015', 'playerName': 'Damarkus Lodge', 'highSchool': 'Cedar Hill', 'city': 'Cedar Hill', 'state': 'TX', 'position': 'WR', 'height': 74.5, 'weight': '190', 'compRating': '0.9817', 'compStars': 4, 'nationalRank': '42', 'positionRank': '6', 'stateRank': '9', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '57', '247positionRank': '7', '247stateRank': '9'}, {'school': 'ole-miss', 'year': '2015', 'playerName': 'Javon Patterson', 'highSchool': 'Petal', 'city': 'Petal', 'state': 'MS', 'position': 'OG', 'height': 74.5, 'weight': '317', 'compRating': '0.9751', 'compStars': 4, 'nationalRank': '52', 'positionRank': '3', 'stateRank': '1', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '32', '247positionRank': '1', '247stateRank': '1'}, {'school': 'ole-miss', 'year': '2015', 'playerName': 'Van Jefferson', 'highSchool': 'Ravenwood', 'city': 'Brentwood', 'state': 'TN', 'position': 'WR', 'height': 74.0, 'weight': '183', 'compRating': '0.9517', 'compStars': 4, 'nationalRank': '106', 'positionRank': '11', 'stateRank': '3', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '109', '247positionRank': '11', '247stateRank': '5'}, {'school': 'ole-miss', 'year': '2015', 'playerName': 'Eric Swinney', 'highSchool': 'Sandy Creek', 'city': 'Tyrone', 'state': 'GA', 'position': 'RB', 'height': 70.0, 'weight': '188', 'compRating': '0.9453', 'compStars': 4, 'nationalRank': '121', 'positionRank': '14', 'stateRank': '14', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '114', '247positionRank': '11', '247stateRank': '12'}, {'school': 'ole-miss', 'year': '2015', 'playerName': 'D.J. Jones', 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'DT', 'height': 74.0, 'weight': '310', 'compRating': '0.9365', 'compStars': 4, 'nationalRank': '4', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2015', 'playerName': 'Tony Bridges', 'highSchool': 'Mississippi Gulf Coast C.C.', 'city': 'Perkinston', 'state': 'MS', 'position': 'CB', 'height': 74.0, 'weight': '185', 'compRating': '0.9131', 'compStars': 4, 'nationalRank': '8', 'positionRank': '1', 'stateRank': '3', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '12', '247positionRank': '2', '247stateRank': '6'}, {'school': 'ole-miss', 'year': '2015', 'playerName': 'Armani Linton', 'highSchool': 'Walnut Attendance Center', 'city': 'Walnut', 'state': 'MS', 'position': 'S', 'height': 75.0, 'weight': '203', 'compRating': '0.9067', 'compStars': 4, 'nationalRank': '251', 'positionRank': '14', 'stateRank': '6', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '141', '247positionRank': '6', '247stateRank': '4'}, {'school': 'ole-miss', 'year': '2015', 'playerName': 'Willie Hibbler', 'highSchool': 'North Panola', 'city': 'Sardis', 'state': 'MS', 'position': 'ATH', 'height': 77.0, 'weight': '233', 'compRating': '0.8855', 'compStars': 3, 'nationalRank': '369', 'positionRank': '25', 'stateRank': '9', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '52', '247stateRank': '18'}, {'school': 'ole-miss', 'year': '2015', 'playerName': 'Cameron Ordway', 'highSchool': 'Giles County', 'city': 'Pulaski', 'state': 'TN', 'position': 'CB', 'height': 72.0, 'weight': '174', 'compRating': '0.8811', 'compStars': 3, 'nationalRank': '393', 'positionRank': '37', 'stateRank': '12', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '75', '247stateRank': '21'}, {'school': 'ole-miss', 'year': '2015', 'playerName': 'Jason Pellerin', 'highSchool': 'Catholic', 'city': 'New Iberia', 'state': 'LA', 'position': 'DUAL', 'height': 76.0, 'weight': '215', 'compRating': '0.8772', 'compStars': 3, 'nationalRank': '428', 'positionRank': '14', 'stateRank': '22', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '10', '247stateRank': '13'}, {'school': 'ole-miss', 'year': '2015', 'playerName': 'Chad Kelly', 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'DUAL', 'height': 73.0, 'weight': '210', 'compRating': '0.8727', 'compStars': 3, 'nationalRank': '35', 'positionRank': '1', 'stateRank': '14', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '101', '247positionRank': '4', '247stateRank': '1'}, {'school': 'ole-miss', 'year': '2015', 'playerName': 'Montrell Custis', 'highSchool': 'Lovejoy', 'city': 'Hampton', 'state': 'GA', 'position': 'CB', 'height': 72.0, 'weight': '175', 'compRating': '0.8711', 'compStars': 3, 'nationalRank': '491', 'positionRank': '49', 'stateRank': '46', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '63', '247stateRank': '71'}, {'school': 'ole-miss', 'year': '2015', 'playerName': 'Jalen Julius', 'highSchool': 'West Orange', 'city': 'Winter Garden', 'state': 'FL', 'position': 'CB', 'height': 70.5, 'weight': '170', 'compRating': '0.8685', 'compStars': 3, 'nationalRank': '522', 'positionRank': '51', 'stateRank': '70', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '101', '247stateRank': '150'}, {'school': 'ole-miss', 'year': '2015', 'playerName': 'Alex Givens', 'highSchool': 'Nashville Christian School', 'city': 'Nashville', 'state': 'TN', 'position': 'OT', 'height': 78.0, 'weight': '300', 'compRating': '0.8669', 'compStars': 3, 'nationalRank': '541', 'positionRank': '60', 'stateRank': '15', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '30', '247stateRank': '11'}, {'school': 'ole-miss', 'year': '2015', 'playerName': 'Michael Howard', 'highSchool': 'Clay', 'city': 'Green Cove Springs', 'state': 'FL', 'position': 'OT', 'height': 78.0, 'weight': '248', 'compRating': '0.8642', 'compStars': 3, 'nationalRank': '573', 'positionRank': '65', 'stateRank': '77', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '73', '247stateRank': '89'}, {'school': 'ole-miss', 'year': '2015', 'playerName': 'Austrian Robinson', 'highSchool': 'Trinity-Pawling School', 'city': 'Pawling', 'state': 'NY', 'position': 'SDE', 'height': 78.0, 'weight': '255', 'compRating': '0.8609', 'compStars': 3, 'nationalRank': '629', 'positionRank': '34', 'stateRank': '2', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '44', '247stateRank': '3'}, {'school': 'ole-miss', 'year': '2015', 'playerName': 'Ross Donelly', 'highSchool': 'Cy-Fair', 'city': 'Cypress', 'state': 'TX', 'position': 'DT', 'height': 74.0, 'weight': '300', 'compRating': '0.8565', 'compStars': 3, 'nationalRank': '730', 'positionRank': '41', 'stateRank': '94', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '56', '247stateRank': '122'}, {'school': 'ole-miss', 'year': '2015', 'playerName': 'Terry Caldwell', 'highSchool': 'Northwest Mississippi C.C.', 'city': 'Senatobia', 'state': 'MS', 'position': 'OLB', 'height': 74.0, 'weight': '215', 'compRating': '0.8504', 'compStars': 3, 'nationalRank': '85', 'positionRank': '6', 'stateRank': '25', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '81', '247positionRank': '8', '247stateRank': '26'}, {'school': 'ole-miss', 'year': '2015', 'playerName': 'Zedrick Woods', 'highSchool': 'Columbia', 'city': 'Lake City', 'state': 'FL', 'position': 'OLB', 'height': 72.0, 'weight': '200', 'compRating': '0.8401', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '69', 'stateRank': '155', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '60', '247stateRank': '112'}, {'school': 'ole-miss', 'year': '2015', 'playerName': 'Shawn Curtis', 'highSchool': 'Ronald Reagan Doral', 'city': 'Miami', 'state': 'FL', 'position': 'OLB', 'height': 75.0, 'weight': '230', 'compRating': '0.7917', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '160', 'stateRank': '324', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '112', '247stateRank': '225'}, {'school': 'ole-miss', 'year': '2015', 'playerName': 'Jacob Feeley', 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'OC', 'height': 75.0, 'weight': '275', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2015', 'playerName': 'Rasool Clemons', 'highSchool': 'South Aiken', 'city': 'Aiken', 'state': 'SC', 'position': 'WDE', 'height': 78.0, 'weight': '212', 'compRating': '0.8715', 'compStars': 3, 'nationalRank': '483', 'positionRank': '20', 'stateRank': '10'}, {'school': 'ole-miss', 'year': '2015', 'playerName': 'Joe Anderson', 'highSchool': 'Riverside Academy', 'city': 'Reserve', 'state': 'LA', 'position': 'WDE', 'height': 76.0, 'weight': '240', 'compRating': '0.8570', 'compStars': 3, 'nationalRank': '713', 'positionRank': '33', 'stateRank': '35'}, {'school': 'south-carolina', 'year': '2009', 'playerName': 'Stephon Gilmore', 'highSchool': 'South Pointe', 'city': 'Rock Hill', 'state': 'SC', 'position': 'CB', 'height': 73.0, 'weight': '189', 'compRating': '0.9812', 'compStars': 4, 'nationalRank': '34', 'positionRank': '6', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2009', 'playerName': 'DeVonte Holloman', 'highSchool': 'South Pointe', 'city': 'Rock Hill', 'state': 'SC', 'position': 'S', 'height': 74.0, 'weight': '228', 'compRating': '0.9621', 'compStars': 4, 'nationalRank': '81', 'positionRank': '6', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2009', 'playerName': 'Damario Jeffery', 'highSchool': 'Columbia', 'city': 'Columbia', 'state': 'SC', 'position': 'S', 'height': 75.0, 'weight': '220', 'compRating': '0.9574', 'compStars': 4, 'nationalRank': '93', 'positionRank': '8', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2009', 'playerName': 'Jarvis Giles', 'highSchool': 'Gaither', 'city': 'Tampa', 'state': 'FL', 'position': 'RB', 'height': 71.0, 'weight': '186', 'compRating': '0.9513', 'compStars': 4, 'nationalRank': '107', 'positionRank': '12', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2009', 'playerName': 'Alshon Jeffery', 'highSchool': 'Calhoun County', 'city': 'Saint Matthews', 'state': 'SC', 'position': 'WR', 'height': 76.0, 'weight': '225', 'compRating': '0.9487', 'compStars': 4, 'nationalRank': '110', 'positionRank': '13', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2009', 'playerName': 'Chaz Sutton', 'highSchool': 'Fork Union Military Academy', 'city': 'Fork Union', 'state': 'VA', 'position': 'WDE', 'height': 76.0, 'weight': '244', 'compRating': '0.8991', 'compStars': 4, 'nationalRank': '11', 'positionRank': '1', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2009', 'playerName': 'Leon Mackey', 'highSchool': 'Fork Union Military Academy', 'city': 'Fork Union', 'state': 'VA', 'position': 'SDE', 'height': 78.0, 'weight': '260', 'compRating': '0.8970', 'compStars': 4, 'nationalRank': '12', 'positionRank': '1', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2009', 'playerName': 'Lamar Scruggs', 'highSchool': 'Duncan U. Fletcher', 'city': 'Neptune Beach', 'state': 'FL', 'position': 'WR', 'height': 75.0, 'weight': '227', 'compRating': '0.8938', 'compStars': 4, 'nationalRank': '294', 'positionRank': '37', 'stateRank': '48', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2009', 'playerName': 'Matt Coffee', 'highSchool': 'Fort Walton Beach', 'city': 'Fort Walton Beach', 'state': 'FL', 'position': 'FB', 'height': 71.0, 'weight': '210', 'compRating': '0.8875', 'compStars': 3, 'nationalRank': '349', 'positionRank': '3', 'stateRank': '54', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2009', 'playerName': 'D.J. Swearinger', 'highSchool': 'Greenwood', 'city': 'Greenwood', 'state': 'SC', 'position': 'S', 'height': 70.0, 'weight': '201', 'compRating': '0.8826', 'compStars': 3, 'nationalRank': '398', 'positionRank': '28', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2009', 'playerName': 'Tony Straughter', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'OLB', 'height': 72.0, 'weight': '201', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '28', 'positionRank': '3', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2009', 'playerName': 'Ronald Byrd', 'highSchool': 'Fork Union Military Academy', 'city': 'Fork Union', 'state': 'VA', 'position': 'SDE', 'height': 79.0, 'weight': '260', 'compRating': '0.8750', 'compStars': 3, 'nationalRank': '16', 'positionRank': '2', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2009', 'playerName': 'Duane Chisolm', 'highSchool': 'Beaufort Christian School', 'city': 'Beaufort', 'state': 'SC', 'position': 'SDE', 'height': 75.0, 'weight': '250', 'compRating': '0.8715', 'compStars': 3, 'nationalRank': '532', 'positionRank': '26', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2009', 'playerName': 'Stedman Bailey', 'highSchool': 'Miramar', 'city': 'Hollywood', 'state': 'FL', 'position': 'WR', 'height': 71.0, 'weight': '186', 'compRating': '0.8694', 'compStars': 3, 'nationalRank': '567', 'positionRank': '74', 'stateRank': '82', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2009', 'playerName': 'Chaun Gresham', 'highSchool': 'Apalachee', 'city': 'Winder', 'state': 'GA', 'position': 'WDE', 'height': 73.0, 'weight': '229', 'compRating': '0.8684', 'compStars': 3, 'nationalRank': '578', 'positionRank': '25', 'stateRank': '43', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2009', 'playerName': 'Aldrick Fordham', 'highSchool': 'Timberland', 'city': 'Saint Stephen', 'state': 'SC', 'position': 'SDE', 'height': 75.0, 'weight': '263', 'compRating': '0.8684', 'compStars': 3, 'nationalRank': '586', 'positionRank': '28', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2009', 'playerName': 'Corey Addison', 'highSchool': 'Andrew Jackson', 'city': 'Jacksonville', 'state': 'FL', 'position': 'S', 'height': 72.0, 'weight': '204', 'compRating': '0.8670', 'compStars': 3, 'nationalRank': '603', 'positionRank': '43', 'stateRank': '86', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2009', 'playerName': 'Josh Dickerson', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'ILB', 'height': 73.0, 'weight': '225', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '38', 'positionRank': '4', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2009', 'playerName': 'Nick Allison', 'highSchool': 'A C Reynolds', 'city': 'Asheville', 'state': 'NC', 'position': 'OG', 'height': 75.0, 'weight': '275', 'compRating': '0.8590', 'compStars': 3, 'nationalRank': '758', 'positionRank': '54', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2009', 'playerName': 'Quin Smith', 'highSchool': 'Hibriten', 'city': 'Lenoir', 'state': 'NC', 'position': 'OLB', 'height': 72.0, 'weight': '233', 'compRating': '0.8510', 'compStars': 3, 'nationalRank': '913', 'positionRank': '74', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2009', 'playerName': 'Jimmy Legree', 'highSchool': 'Beaufort', 'city': 'Ladys Island', 'state': 'SC', 'position': 'CB', 'height': 71.0, 'weight': '178', 'compRating': '0.8510', 'compStars': 3, 'nationalRank': '926', 'positionRank': '73', 'stateRank': '28', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2009', 'playerName': 'DeAngelo Smith', 'highSchool': 'Camden County', 'city': 'Kingsland', 'state': 'GA', 'position': 'WR', 'height': 72.0, 'weight': '181', 'compRating': '0.8510', 'compStars': 3, 'nationalRank': '938', 'positionRank': '111', 'stateRank': '72', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2009', 'playerName': 'Andrew Clifford', 'highSchool': 'Wharton', 'city': 'Tampa', 'state': 'FL', 'position': 'PRO', 'height': 74.0, 'weight': '219', 'compRating': '0.8448', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '36', 'stateRank': '145', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2009', 'playerName': 'Justice Cunningham', 'highSchool': 'Central', 'city': 'Pageland', 'state': 'SC', 'position': 'TE', 'height': 75.0, 'weight': '268', 'compRating': '0.8431', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '43', 'stateRank': '33', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2009', 'playerName': 'DeMario Bennett', 'highSchool': 'Coffee', 'city': 'Douglas', 'state': 'GA', 'position': 'WR', 'height': 74.0, 'weight': '174', 'compRating': '0.8368', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '141', 'stateRank': '87', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2009', 'playerName': 'Steven Singleton', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'OT', 'height': 74.0, 'weight': '303', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '84', 'positionRank': '12', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2009', 'playerName': 'Charles Holmes', 'highSchool': 'South Pointe', 'city': 'Rock Hill', 'state': 'SC', 'position': 'WR', 'height': 76.0, 'weight': '180', 'compRating': '0.8306', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '150', 'stateRank': '38'}, {'school': 'south-carolina', 'year': '2009', 'playerName': 'Kevious Watkins', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'OG', 'height': 76.0, 'weight': '340', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': '204', 'positionRank': '12', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2009', 'playerName': 'Rokevious Watkins', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'OG', 'height': 76.0, 'weight': '325', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': '205', 'positionRank': '13', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2009', 'playerName': 'Chris Payne', 'highSchool': 'Columbia', 'city': 'Columbia', 'state': 'SC', 'position': 'S', 'height': 71.0, 'weight': '215', 'compRating': '0.9250', 'compStars': 4, 'nationalRank': '158', 'positionRank': '14', 'stateRank': '9', '247Rating': ' 77 ', '247Stars': 2, '247nationalRank': '158', '247positionRank': '12', '247stateRank': '31'}, {'school': 'south-carolina', 'year': '2009', 'playerName': 'Ben Axon', 'highSchool': 'Manatee', 'city': 'Bradenton', 'state': 'FL', 'position': 'RB', 'height': 74.0, 'weight': '200', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '265', 'positionRank': '31', 'stateRank': '45', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2009', 'playerName': 'Duane Chisholm', 'highSchool': 'Beaufort', 'city': 'Ladys Island', 'state': 'SC', 'position': 'DT', 'height': 76.0, 'weight': '260', 'compRating': '0.8715', 'compStars': 3, 'nationalRank': '533', 'positionRank': '48', 'stateRank': '20'}, {'school': 'south-carolina', 'year': '2009', 'playerName': 'Matthew Coffee', 'highSchool': 'Fort Walton Beach', 'city': 'Fort Walton Beach', 'state': 'FL', 'position': 'ATH', 'height': 71.0, 'weight': '220', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA'}, {'school': 'lsu', 'year': '2019', 'playerName': 'Derek Stingley', 'highSchool': 'Dunham School', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'CB', 'height': 72.5, 'weight': '188', 'compRating': '0.9980', 'compStars': 5, 'nationalRank': '3', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 100 ', '247Stars': 5, '247nationalRank': '2', '247positionRank': '1', '247stateRank': '1'}, {'school': 'lsu', 'year': '2019', 'playerName': 'John Emery Jr.', 'highSchool': 'Destrehan', 'city': 'Destrehan', 'state': 'LA', 'position': 'RB', 'height': 71.0, 'weight': '206', 'compRating': '0.9929', 'compStars': 5, 'nationalRank': '13', 'positionRank': '2', 'stateRank': '2', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '11', '247positionRank': '1', '247stateRank': '2'}, {'school': 'lsu', 'year': '2019', 'playerName': 'Marcel Brooks', 'highSchool': 'Marcus', 'city': 'Flower Mound', 'state': 'TX', 'position': 'OLB', 'height': 74.0, 'weight': '195', 'compRating': '0.9861', 'compStars': 5, 'nationalRank': '32', 'positionRank': '2', 'stateRank': '5', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '17', '247positionRank': '2', '247stateRank': '3'}, {'school': 'lsu', 'year': '2019', 'playerName': 'Kardell Thomas', 'highSchool': 'Southern University Lab School', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'OG', 'height': 74.5, 'weight': '356', 'compRating': '0.9572', 'compStars': 4, 'nationalRank': '97', 'positionRank': '4', 'stateRank': '4', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '22', '247stateRank': '14'}, {'school': 'lsu', 'year': '2019', 'playerName': 'Trey Palmer', 'highSchool': 'Kentwood', 'city': 'Kentwood', 'state': 'LA', 'position': 'WR', 'height': 72.0, 'weight': '179', 'compRating': '0.9499', 'compStars': 4, 'nationalRank': '112', 'positionRank': '18', 'stateRank': '6', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '246', '247positionRank': '31', '247stateRank': '11'}, {'school': 'lsu', 'year': '2019', 'playerName': 'Maurice Hampton', 'highSchool': 'Memphis University School', 'city': 'Memphis', 'state': 'TN', 'position': 'CB', 'height': 72.0, 'weight': '205', 'compRating': '0.9432', 'compStars': 4, 'nationalRank': '129', 'positionRank': '14', 'stateRank': '1', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '90', '247positionRank': '12', '247stateRank': '1'}, {'school': 'lsu', 'year': '2019', 'playerName': 'Siaki Ika', 'highSchool': 'East', 'city': 'Salt Lake City', 'state': 'UT', 'position': 'DT', 'height': 74.5, 'weight': '372', 'compRating': '0.9400', 'compStars': 4, 'nationalRank': '138', 'positionRank': '13', 'stateRank': '2', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '204', '247positionRank': '16', '247stateRank': '2'}, {'school': 'lsu', 'year': '2019', 'playerName': 'Tyrion Davis-Price', 'highSchool': 'Southern University Lab School', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'RB', 'height': 73.0, 'weight': '235', 'compRating': '0.9399', 'compStars': 4, 'nationalRank': '139', 'positionRank': '8', 'stateRank': '7', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '110', '247positionRank': '6', '247stateRank': '5'}, {'school': 'lsu', 'year': '2019', 'playerName': 'Ray Parker', 'highSchool': 'Ruston', 'city': 'Ruston', 'state': 'LA', 'position': 'OT', 'height': 77.0, 'weight': '270', 'compRating': '0.9341', 'compStars': 4, 'nationalRank': '154', 'positionRank': '14', 'stateRank': '8', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '114', '247positionRank': '12', '247stateRank': '6'}, {'school': 'lsu', 'year': '2019', 'playerName': 'Donte Starks', 'highSchool': 'John Ehret', 'city': 'Marrero', 'state': 'LA', 'position': 'ILB', 'height': 73.0, 'weight': '225', 'compRating': '0.9330', 'compStars': 4, 'nationalRank': '159', 'positionRank': '10', 'stateRank': '9', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '229', '247positionRank': '15', '247stateRank': '10'}, {'school': 'lsu', 'year': '2019', 'playerName': 'Devonta Lee', 'highSchool': 'Amite', 'city': 'Amite', 'state': 'LA', 'position': 'ATH', 'height': 74.0, 'weight': '212', 'compRating': '0.9312', 'compStars': 4, 'nationalRank': '166', 'positionRank': '8', 'stateRank': '10', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '189', '247positionRank': '8', '247stateRank': '8'}, {'school': 'lsu', 'year': '2019', 'playerName': 'Anthony Bradford', 'highSchool': 'Muskegon', 'city': 'Muskegon', 'state': 'MI', 'position': 'OG', 'height': 77.0, 'weight': '355', 'compRating': '0.9179', 'compStars': 4, 'nationalRank': '206', 'positionRank': '13', 'stateRank': '6', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '24', '247stateRank': '8'}, {'school': 'lsu', 'year': '2019', 'playerName': 'Peter Parrish', 'highSchool': 'Central', 'city': 'Phenix City', 'state': 'AL', 'position': 'DUAL', 'height': 73.0, 'weight': '198', 'compRating': '0.8988', 'compStars': 4, 'nationalRank': '313', 'positionRank': '11', 'stateRank': '11', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '12', '247stateRank': '19'}, {'school': 'lsu', 'year': '2019', 'playerName': 'Raydarious Jones', 'highSchool': 'Horn Lake', 'city': 'Horn Lake', 'state': 'MS', 'position': 'ATH', 'height': 74.0, 'weight': '170', 'compRating': '0.8908', 'compStars': 4, 'nationalRank': '376', 'positionRank': '20', 'stateRank': '16', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '201', '247positionRank': '12', '247stateRank': '12'}, {'school': 'lsu', 'year': '2019', 'playerName': 'Thomas Perry', 'highSchool': 'Teurlings Catholic', 'city': 'Lafayette', 'state': 'LA', 'position': 'OT', 'height': 77.5, 'weight': '325', 'compRating': '0.8850', 'compStars': 3, 'nationalRank': '451', 'positionRank': '36', 'stateRank': '18', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '42', '247stateRank': '19'}, {'school': 'lsu', 'year': '2019', 'playerName': 'Jay Ward', 'highSchool': 'Colquitt County', 'city': 'Moultrie', 'state': 'GA', 'position': 'CB', 'height': 73.0, 'weight': '175', 'compRating': '0.8801', 'compStars': 3, 'nationalRank': '518', 'positionRank': '50', 'stateRank': '54', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '29', '247stateRank': '32'}, {'school': 'lsu', 'year': '2019', 'playerName': 'Kendall McCallum', 'highSchool': 'Oxford', 'city': 'Oxford', 'state': 'AL', 'position': 'ILB', 'height': 75.0, 'weight': '227', 'compRating': '0.8784', 'compStars': 3, 'nationalRank': '541', 'positionRank': '27', 'stateRank': '19', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '31', '247stateRank': '24'}, {'school': 'lsu', 'year': '2019', 'playerName': 'Charles Turner', 'highSchool': 'IMG Academy', 'city': 'Bradenton', 'state': 'FL', 'position': 'OC', 'height': 75.0, 'weight': '245', 'compRating': '0.8763', 'compStars': 3, 'nationalRank': '568', 'positionRank': '8', 'stateRank': '71', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '11', '247stateRank': '76'}, {'school': 'lsu', 'year': '2019', 'playerName': 'Cordale Flott', 'highSchool': 'Saraland', 'city': 'Saraland', 'state': 'AL', 'position': 'CB', 'height': 72.0, 'weight': '160', 'compRating': '0.8735', 'compStars': 3, 'nationalRank': '610', 'positionRank': '60', 'stateRank': '21', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '42', '247stateRank': '14'}, {'school': 'lsu', 'year': '2019', 'playerName': 'Joseph Evans', 'highSchool': 'Haynesville', 'city': 'Haynesville', 'state': 'LA', 'position': 'DT', 'height': 75.0, 'weight': '305', 'compRating': '0.8702', 'compStars': 3, 'nationalRank': '666', 'positionRank': '55', 'stateRank': '23', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '38', '247stateRank': '20'}, {'school': 'lsu', 'year': '2019', 'playerName': 'Soni Fonua', 'highSchool': 'Mesa C.C.', 'city': 'Mesa', 'state': 'AZ', 'position': 'SDE', 'height': 76.0, 'weight': '264', 'compRating': '0.8676', 'compStars': 3, 'nationalRank': '43', 'positionRank': '4', 'stateRank': '6', '247Rating': ' 85 ', '247Stars': 3, '247nationalRank': '80', '247positionRank': '8', '247stateRank': '11'}, {'school': 'lsu', 'year': '2019', 'playerName': 'T.K. McLendon', 'highSchool': 'Copiah-Lincoln C.C.', 'city': 'Wesson', 'state': 'MS', 'position': 'TE', 'height': 76.5, 'weight': '247', 'compRating': '0.8656', 'compStars': 3, 'nationalRank': '47', 'positionRank': '2', 'stateRank': '8', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '63', '247positionRank': '2', '247stateRank': '11'}, {'school': 'lsu', 'year': '2019', 'playerName': 'Desmond Little', 'highSchool': 'Vigor', 'city': 'Mobile', 'state': 'AL', 'position': 'WDE', 'height': 77.0, 'weight': '210', 'compRating': '0.8601', 'compStars': 3, 'nationalRank': '874', 'positionRank': '56', 'stateRank': '34', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '70', '247stateRank': '37'}, {'school': 'lsu', 'year': '2019', 'playerName': 'Cade York', 'highSchool': 'Prosper', 'city': 'Prosper', 'state': 'TX', 'position': 'K', 'height': 74.0, 'weight': '175', 'compRating': '0.8271', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '4', 'stateRank': '238', '247Rating': ' 78 ', '247Stars': 2, '247positionRank': '7', '247stateRank': '365'}, {'school': 'lsu', 'year': '2019', 'playerName': 'Quentin Skinner', 'highSchool': 'Buford', 'city': 'Buford', 'state': 'GA', 'position': 'LS', 'height': 72.0, 'weight': '261', 'compRating': '0.7895', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '4', 'stateRank': '246', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '1', '247stateRank': '212'}, {'school': 'florida', 'year': '2008', 'playerName': 'Will Hill', 'highSchool': 'St. Peters Prep', 'city': 'Jersey City', 'state': 'NJ', 'position': 'S', 'height': 73.0, 'weight': '207', 'compRating': '0.9979', 'compStars': 5, 'nationalRank': '5', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2008', 'playerName': 'Omar Hunter', 'highSchool': 'Buford', 'city': 'Buford', 'state': 'GA', 'position': 'DT', 'height': 73.0, 'weight': '300', 'compRating': '0.9904', 'compStars': 5, 'nationalRank': '17', 'positionRank': '2', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2008', 'playerName': 'Matt Patchan', 'highSchool': 'Armwood', 'city': 'Seffner', 'state': 'FL', 'position': 'OT', 'height': 78.0, 'weight': '295', 'compRating': '0.9826', 'compStars': 4, 'nationalRank': '31', 'positionRank': '5', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2008', 'playerName': 'Janoris Jenkins', 'highSchool': 'Pahokee', 'city': 'Pahokee', 'state': 'FL', 'position': 'CB', 'height': 71.0, 'weight': '180', 'compRating': '0.9744', 'compStars': 4, 'nationalRank': '55', 'positionRank': '5', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2008', 'playerName': 'Dee Finley', 'highSchool': 'Auburn', 'city': 'Auburn', 'state': 'AL', 'position': 'S', 'height': 74.0, 'weight': '222', 'compRating': '0.9724', 'compStars': 4, 'nationalRank': '59', 'positionRank': '2', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2008', 'playerName': 'William Green', 'highSchool': 'Spain Park', 'city': 'Birmingham', 'state': 'AL', 'position': 'SDE', 'height': 76.0, 'weight': '255', 'compRating': '0.9684', 'compStars': 4, 'nationalRank': '66', 'positionRank': '5', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2008', 'playerName': 'Carl Moore', 'highSchool': 'Sierra College', 'city': 'Rocklin', 'state': 'CA', 'position': 'WR', 'height': 76.0, 'weight': '220', 'compRating': '0.9667', 'compStars': 4, 'nationalRank': '2', 'positionRank': '1', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2008', 'playerName': 'Brendan Beal', 'highSchool': 'Liberty', 'city': 'Bethlehem', 'state': 'PA', 'position': 'ILB', 'height': 76.0, 'weight': '235', 'compRating': '0.9620', 'compStars': 4, 'nationalRank': '83', 'positionRank': '4', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2008', 'playerName': 'T.J. Lawrence', 'highSchool': 'Kathleen', 'city': 'Lakeland', 'state': 'FL', 'position': 'WR', 'height': 73.0, 'weight': '185', 'compRating': '0.9590', 'compStars': 4, 'nationalRank': '86', 'positionRank': '16', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2008', 'playerName': 'Lerentee McCray', 'highSchool': 'Dunnellon', 'city': 'Dunnellon', 'state': 'FL', 'position': 'OLB', 'height': 74.0, 'weight': '252', 'compRating': '0.9516', 'compStars': 4, 'nationalRank': '100', 'positionRank': '9', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2008', 'playerName': 'Jeremy Brown', 'highSchool': 'Boone', 'city': 'Orlando', 'state': 'FL', 'position': 'CB', 'height': 70.0, 'weight': '185', 'compRating': '0.9264', 'compStars': 4, 'nationalRank': '164', 'positionRank': '15', 'stateRank': '29', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2008', 'playerName': 'Adrian Bushell', 'highSchool': 'DeSoto', 'city': 'DeSoto', 'state': 'TX', 'position': 'CB', 'height': 71.0, 'weight': '184', 'compRating': '0.9093', 'compStars': 4, 'nationalRank': '220', 'positionRank': '20', 'stateRank': '28', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2008', 'playerName': 'Omarius Hines', 'highSchool': 'Corsicana', 'city': 'Corsicana', 'state': 'TX', 'position': 'WR', 'height': 72.0, 'weight': '220', 'compRating': '0.9075', 'compStars': 4, 'nationalRank': '228', 'positionRank': '33', 'stateRank': '33', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2008', 'playerName': 'Frankie Hammond Jr.', 'highSchool': 'Hallandale', 'city': 'Hallandale', 'state': 'FL', 'position': 'WR', 'height': 71.0, 'weight': '178', 'compRating': '0.9014', 'compStars': 4, 'nationalRank': '255', 'positionRank': '36', 'stateRank': '36', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2008', 'playerName': 'Jeff Demps', 'highSchool': 'South Lake', 'city': 'Groveland', 'state': 'FL', 'position': 'RB', 'height': 68.0, 'weight': '188', 'compRating': '0.9012', 'compStars': 4, 'nationalRank': '257', 'positionRank': '27', 'stateRank': '37', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2008', 'playerName': 'Earl Okine', 'highSchool': 'Gainesville', 'city': 'Gainesville', 'state': 'FL', 'position': 'SDE', 'height': 79.0, 'weight': '290', 'compRating': '0.8917', 'compStars': 4, 'nationalRank': '322', 'positionRank': '18', 'stateRank': '48', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2008', 'playerName': 'Troy Epps', 'highSchool': 'Coffeyville C.C.', 'city': 'Coffeyville', 'state': 'KS', 'position': 'DT', 'height': 73.0, 'weight': '280', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '63', 'positionRank': '8', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2008', 'playerName': 'Byran Jones', 'highSchool': 'Forrest', 'city': 'Jacksonville', 'state': 'FL', 'position': 'DT', 'height': 75.0, 'weight': '325', 'compRating': '0.8462', 'compStars': 3, 'nationalRank': '802', 'positionRank': '56', 'stateRank': '104', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2008', 'playerName': 'T.J. Pridemore', 'highSchool': 'Buford', 'city': 'Buford', 'state': 'GA', 'position': 'FB', 'height': 73.0, 'weight': '247', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2008', 'playerName': 'David Young', 'highSchool': 'Edwardsville', 'city': 'Edwardsville', 'state': 'IL', 'position': 'OT', 'height': 76.0, 'weight': '300', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2008', 'playerName': 'Caleb Sturgis', 'highSchool': 'St. Augustine', 'city': 'Saint Augustine', 'state': 'FL', 'position': 'K', 'height': 70.0, 'weight': '192', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2008', 'playerName': 'Sam Robey', 'highSchool': 'Unknown', 'city': 'Nashville', 'state': 'TN', 'position': 'OC', 'height': 75.0, 'weight': '295', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2007', 'playerName': 'Michael Keck', 'highSchool': 'Harrisonville', 'city': 'Harrisonville', 'state': 'MO', 'position': 'WDE', 'height': 77.0, 'weight': '215', 'compRating': '0.9697', 'compStars': 4, 'nationalRank': '66', 'positionRank': '3', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2007', 'playerName': 'Andy Maples', 'highSchool': 'College of the Sequoias', 'city': 'Visalia', 'state': 'CA', 'position': 'DT', 'height': 75.0, 'weight': '300', 'compRating': '0.9111', 'compStars': 4, 'nationalRank': '17', 'positionRank': '2', 'stateRank': '8'}, {'school': 'missouri', 'year': '2007', 'playerName': 'Gilbert Moye', 'highSchool': 'Diboll', 'city': 'Diboll', 'state': 'TX', 'position': 'ATH', 'height': 74.0, 'weight': '200', 'compRating': '0.8750', 'compStars': 3, 'nationalRank': '356', 'positionRank': '23', 'stateRank': '49', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2007', 'playerName': 'Derick Washington', 'highSchool': 'Raymore-Peculiar', 'city': 'Peculiar', 'state': 'MO', 'position': 'RB', 'height': 71.0, 'weight': '194', 'compRating': '0.8750', 'compStars': 3, 'nationalRank': '359', 'positionRank': '32', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2007', 'playerName': 'Dominique Hamilton', 'highSchool': 'Chapin', 'city': 'El Paso', 'state': 'TX', 'position': 'DT', 'height': 77.0, 'weight': '279', 'compRating': '0.8653', 'compStars': 3, 'nationalRank': '442', 'positionRank': '37', 'stateRank': '60', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2007', 'playerName': 'Chris Earnhardt', 'highSchool': 'Hillcrest', 'city': 'Springfield', 'state': 'MO', 'position': 'SDE', 'height': 77.0, 'weight': '250', 'compRating': '0.8622', 'compStars': 3, 'nationalRank': '471', 'positionRank': '32', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2007', 'playerName': 'Jayson Palmgren', 'highSchool': 'North Kansas City', 'city': 'Kansas City', 'state': 'MO', 'position': 'OG', 'height': 74.0, 'weight': '295', 'compRating': '0.8576', 'compStars': 3, 'nationalRank': '507', 'positionRank': '35', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2007', 'playerName': 'Tekerrein Cuba', 'highSchool': 'Tyler Lee', 'city': 'Tyler', 'state': 'TX', 'position': 'S', 'height': 74.0, 'weight': '180', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '532', 'positionRank': '40', 'stateRank': '67', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2007', 'playerName': 'Terrell Resonno', 'highSchool': 'Jefferson City', 'city': 'Jefferson City', 'state': 'MO', 'position': 'SDE', 'height': 75.0, 'weight': '250', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '546', 'positionRank': '37', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2007', 'playerName': 'Rolandis Woodland', 'highSchool': 'Rockwood Summit', 'city': 'Fenton', 'state': 'MO', 'position': 'WR', 'height': 77.0, 'weight': '185', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '565', 'positionRank': '72', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2007', 'playerName': 'George White', 'highSchool': 'Carman-Ainsworth', 'city': 'Flint', 'state': 'MI', 'position': 'ILB', 'height': 74.0, 'weight': '252', 'compRating': '0.8497', 'compStars': 3, 'nationalRank': '648', 'positionRank': '25', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2007', 'playerName': 'Trey Hobson', 'highSchool': 'Blue Valley', 'city': 'Stilwell', 'state': 'KS', 'position': 'S', 'height': 70.0, 'weight': '167', 'compRating': '0.8479', 'compStars': 3, 'nationalRank': '668', 'positionRank': '51', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2007', 'playerName': 'Luke Lambert', 'highSchool': 'Brookfield', 'city': 'Brookfield', 'state': 'MO', 'position': 'OLB', 'height': 75.0, 'weight': '215', 'compRating': '0.8465', 'compStars': 3, 'nationalRank': '681', 'positionRank': '37', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2007', 'playerName': 'Elvis Fisher', 'highSchool': 'St. Peter Catholic High School', 'city': 'Orleans', 'state': 'ON', 'position': 'OT', 'height': 77.0, 'weight': '310', 'compRating': '0.8417', 'compStars': 3, 'nationalRank': '739', 'positionRank': '69', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2007', 'playerName': 'J.T. Beasley', 'highSchool': 'Dyersburg', 'city': 'Dyersburg', 'state': 'TN', 'position': 'OG', 'height': 75.0, 'weight': '260', 'compRating': '0.8385', 'compStars': 3, 'nationalRank': '784', 'positionRank': '63', 'stateRank': '27', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2007', 'playerName': 'Andrew Gachkar', 'highSchool': 'Blue Valley Northwest', 'city': 'Overland Park', 'state': 'KS', 'position': 'OLB', 'height': 74.0, 'weight': '208', 'compRating': '0.8368', 'compStars': 3, 'nationalRank': '800', 'positionRank': '48', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2007', 'playerName': 'Devion Moore', 'highSchool': 'Hazelwood Central', 'city': 'Florissant', 'state': 'MO', 'position': 'RB', 'height': 68.0, 'weight': '178', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '863', 'positionRank': '59', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2007', 'playerName': 'Tremane Vaughns', 'highSchool': 'Pasadena City College', 'city': 'Pasadena', 'state': 'CA', 'position': 'ATH', 'height': 69.0, 'weight': '180', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '81', 'positionRank': '1', 'stateRank': '35'}, {'school': 'missouri', 'year': '2007', 'playerName': 'Justin Garrett', 'highSchool': 'Pasadena City College', 'city': 'Pasadena', 'state': 'CA', 'position': 'S', 'height': 74.0, 'weight': '200', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '83', 'positionRank': '10', 'stateRank': '36'}, {'school': 'missouri', 'year': '2007', 'playerName': 'Austin Wuebbels', 'highSchool': 'Triad', 'city': 'Troy', 'state': 'IL', 'position': 'OG', 'height': 76.0, 'weight': '260', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '922', 'positionRank': '76', 'stateRank': '26', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2007', 'playerName': 'Jaysen Corbett', 'highSchool': 'Sacramento City College', 'city': 'Sacramento', 'state': 'CA', 'position': 'SDE', 'height': 76.0, 'weight': '254', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '99', 'positionRank': '9', 'stateRank': '46'}, {'school': 'missouri', 'year': '2007', 'playerName': 'Carl Gettis', 'highSchool': 'Ft. Zumwalt West', 'city': "O'Fallon", 'state': 'MO', 'position': 'RB', 'height': 70.0, 'weight': '187', 'compRating': '0.8309', 'compStars': 3, 'nationalRank': '967', 'positionRank': '69', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2007', 'playerName': 'Bryan Webb', 'highSchool': 'Tecumseh', 'city': 'Tecumseh', 'state': 'OK', 'position': 'TE', 'height': 76.0, 'weight': '254', 'compRating': '0.8257', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '57', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2007', 'playerName': 'Kendall Irving', 'highSchool': 'Seguin', 'city': 'Arlington', 'state': 'TX', 'position': 'WR', 'height': 70.0, 'weight': '175', 'compRating': '0.8181', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '117', 'stateRank': '148', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2007', 'playerName': 'Jake Harry', 'highSchool': 'Palomar College', 'city': 'San Marcos', 'state': 'CA', 'position': 'K', 'height': 73.0, 'weight': '190', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '131', 'positionRank': '1', 'stateRank': '63'}, {'school': 'missouri', 'year': '2007', 'playerName': 'Donte Neal', 'highSchool': 'Seguin', 'city': 'Arlington', 'state': 'TX', 'position': 'S', 'height': 71.0, 'weight': '190', 'compRating': '0.8021', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '92', 'stateRank': '186', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2007', 'playerName': 'Tyler Crane', 'highSchool': 'Allen', 'city': 'Allen', 'state': 'TX', 'position': 'WDE', 'height': 74.0, 'weight': '210', 'compRating': '0.7958', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '56', 'stateRank': '190', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2007', 'playerName': 'Jason Townson', 'highSchool': 'College of the Sequoias', 'city': 'Visalia', 'state': 'CA', 'position': 'SDE', 'height': 76.0, 'weight': '268', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': '175', 'positionRank': '13', 'stateRank': '88'}, {'school': 'kentucky', 'year': '2015', 'playerName': 'Eli Brown', 'highSchool': 'Warren East', 'city': 'Bowling Green', 'state': 'KY', 'position': 'OLB', 'height': 74.0, 'weight': '190', 'compRating': '0.9047', 'compStars': 4, 'nationalRank': '260', 'positionRank': '20', 'stateRank': '2', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '19', '247stateRank': '2'}, {'school': 'kentucky', 'year': '2015', 'playerName': 'CJ Conrad', 'highSchool': 'Keystone', 'city': 'Lagrange', 'state': 'OH', 'position': 'TE', 'height': 77.0, 'weight': '225', 'compRating': '0.8988', 'compStars': 4, 'nationalRank': '294', 'positionRank': '11', 'stateRank': '13', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '9', '247stateRank': '13'}, {'school': 'kentucky', 'year': '2015', 'playerName': 'Courtney Miggins', 'highSchool': 'Pearl River C.C.', 'city': 'Poplarville', 'state': 'MS', 'position': 'DT', 'height': 77.0, 'weight': '285', 'compRating': '0.8800', 'compStars': 3, 'nationalRank': '28', 'positionRank': '3', 'stateRank': '10', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '44', '247positionRank': '7', '247stateRank': '17'}, {'school': 'kentucky', 'year': '2015', 'playerName': 'Marcus Walker', 'highSchool': 'Lake Wales', 'city': 'Lake Wales', 'state': 'FL', 'position': 'S', 'height': 72.5, 'weight': '176', 'compRating': '0.8799', 'compStars': 3, 'nationalRank': '400', 'positionRank': '23', 'stateRank': '59', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '28', '247stateRank': '65'}, {'school': 'kentucky', 'year': '2015', 'playerName': 'Jordan Jones', 'highSchool': 'Cardinal Mooney', 'city': 'Youngstown', 'state': 'OH', 'position': 'OLB', 'height': 74.0, 'weight': '203', 'compRating': '0.8781', 'compStars': 3, 'nationalRank': '416', 'positionRank': '33', 'stateRank': '21', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '50', '247stateRank': '29'}, {'school': 'kentucky', 'year': '2015', 'playerName': 'George Asafo-Adjei', 'highSchool': 'Lakota West', 'city': 'West Chester', 'state': 'OH', 'position': 'OT', 'height': 76.0, 'weight': '295', 'compRating': '0.8751', 'compStars': 3, 'nationalRank': '451', 'positionRank': '48', 'stateRank': '23', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '199', '247positionRank': '22', '247stateRank': '9'}, {'school': 'kentucky', 'year': '2015', 'playerName': 'Jabari Greenwood', 'highSchool': 'Gonzaga', 'city': 'Washington', 'state': 'DC', 'position': 'WR', 'height': 76.0, 'weight': '193', 'compRating': '0.8681', 'compStars': 3, 'nationalRank': '526', 'positionRank': '63', 'stateRank': '4', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '57', '247stateRank': '7'}, {'school': 'kentucky', 'year': '2015', 'playerName': 'Kei Beckham', 'highSchool': 'Trotwood-Madison', 'city': 'Dayton', 'state': 'OH', 'position': 'CB', 'height': 72.0, 'weight': '173', 'compRating': '0.8634', 'compStars': 3, 'nationalRank': '591', 'positionRank': '58', 'stateRank': '31', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '53', '247stateRank': '23'}, {'school': 'kentucky', 'year': '2015', 'playerName': 'Logan Stenberg', 'highSchool': 'James Clemens', 'city': 'Madison', 'state': 'AL', 'position': 'OT', 'height': 78.0, 'weight': '327', 'compRating': '0.8587', 'compStars': 3, 'nationalRank': '677', 'positionRank': '75', 'stateRank': '27', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '61', '247stateRank': '20'}, {'school': 'kentucky', 'year': '2015', 'playerName': 'Kengera Daniel', 'highSchool': 'Millbrook', 'city': 'Raleigh', 'state': 'NC', 'position': 'WDE', 'height': 78.0, 'weight': '250', 'compRating': '0.8575', 'compStars': 3, 'nationalRank': '704', 'positionRank': '32', 'stateRank': '23', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '37', '247stateRank': '23'}, {'school': 'kentucky', 'year': '2015', 'playerName': 'Tavin Richardson', 'highSchool': 'Byrnes', 'city': 'Duncan', 'state': 'SC', 'position': 'WR', 'height': 75.0, 'weight': '200', 'compRating': '0.8479', 'compStars': 3, 'nationalRank': '933', 'positionRank': '112', 'stateRank': '15', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '213', '247stateRank': '24'}, {'school': 'kentucky', 'year': '2015', 'playerName': 'Chris Westry', 'highSchool': 'Oakleaf', 'city': 'Orange Park', 'state': 'FL', 'position': 'CB', 'height': 76.0, 'weight': '180', 'compRating': '0.8468', 'compStars': 3, 'nationalRank': '965', 'positionRank': '88', 'stateRank': '125', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '125', '247stateRank': '195'}, {'school': 'kentucky', 'year': '2015', 'playerName': 'Sihiem King', 'highSchool': 'Colquitt County', 'city': 'Moultrie', 'state': 'GA', 'position': 'RB', 'height': 69.0, 'weight': '172', 'compRating': '0.8438', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '80', 'stateRank': '103', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '100', '247stateRank': '124'}, {'school': 'kentucky', 'year': '2015', 'playerName': 'Derrick Baity', 'highSchool': 'Plant', 'city': 'Tampa', 'state': 'FL', 'position': 'CB', 'height': 74.0, 'weight': '170', 'compRating': '0.8432', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '93', 'stateRank': '140', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '91', '247stateRank': '129'}, {'school': 'kentucky', 'year': '2015', 'playerName': 'Mason Wolfe', 'highSchool': 'Henderson County', 'city': 'Henderson', 'state': 'KY', 'position': 'OG', 'height': 79.0, 'weight': '280', 'compRating': '0.8158', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '97', 'stateRank': '9', '247Rating': ' 76 ', '247Stars': 2, '247positionRank': '136', '247stateRank': '15'}, {'school': 'kentucky', 'year': '2015', 'playerName': 'Alvonte Bell', 'highSchool': 'Pearl River C.C.', 'city': 'Poplarville', 'state': 'MS', 'position': 'WDE', 'height': 77.0, 'weight': '260', 'compRating': '0.8107', 'compStars': 3, 'nationalRank': '184', 'positionRank': '12', 'stateRank': '45', '247Rating': ' 81 ', '247Stars': 3, '247nationalRank': '166', '247positionRank': '14', '247stateRank': '43'}, {'school': 'kentucky', 'year': '2015', 'playerName': 'Josh Allen', 'highSchool': 'Montclair', 'city': 'Montclair', 'state': 'NJ', 'position': 'WDE', 'height': 76.0, 'weight': '210', 'compRating': '0.7965', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '97', 'stateRank': '46', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '92', '247stateRank': '46'}, {'school': 'kentucky', 'year': '2015', 'playerName': 'Will Jackson', 'highSchool': "St. John's", 'city': 'Washington', 'state': 'DC', 'position': 'ATH', 'height': 75.0, 'weight': '190', 'compRating': '0.7709', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '214', 'stateRank': '16', '247Rating': ' 78 ', '247Stars': 2, '247positionRank': '181', '247stateRank': '16'}, {'school': 'kentucky', 'year': '2015', 'playerName': 'Calvin Taylor', 'highSchool': 'Augusta Christian Schools', 'city': 'Augusta', 'state': 'GA', 'position': 'OT', 'height': 81.0, 'weight': '260', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2015', 'playerName': 'Levon Livingston', 'highSchool': 'Ballou', 'city': 'Washington', 'state': 'DC', 'position': 'OT', 'height': 79.0, 'weight': '232', 'compRating': '0.8538', 'compStars': 3, 'nationalRank': '789', 'positionRank': '84', 'stateRank': '10', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '70', '247positionRank': '11', '247stateRank': '8'}, {'school': 'kentucky', 'year': '2015', 'playerName': 'Therrell Gosier', 'highSchool': 'Blanche Ely', 'city': 'Pompano Beach', 'state': 'FL', 'position': 'WR', 'height': 78.0, 'weight': '200', 'compRating': '0.8431', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '127', 'stateRank': '141'}, {'school': 'kentucky', 'year': '2015', 'playerName': 'Javon Provitt', 'highSchool': 'Warren G Harding', 'city': 'Warren', 'state': 'OH', 'position': 'DT', 'height': 75.0, 'weight': '305', 'compRating': '0.8397', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '77', 'stateRank': '52'}, {'school': 'arkansas', 'year': '2008', 'playerName': "De'Anthony Curtis", 'highSchool': 'Camden Fairview', 'city': 'Camden', 'state': 'AR', 'position': 'CB', 'height': 69.0, 'weight': '211', 'compRating': '0.9568', 'compStars': 4, 'nationalRank': '91', 'positionRank': '7', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2008', 'playerName': 'Tyler Wilson', 'highSchool': 'Greenwood', 'city': 'Greenwood', 'state': 'AR', 'position': 'PRO', 'height': 75.0, 'weight': '220', 'compRating': '0.9366', 'compStars': 4, 'nationalRank': '127', 'positionRank': '6', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2008', 'playerName': 'Joe Adams', 'highSchool': 'Central Arkansas Christian', 'city': 'Maumelle', 'state': 'AR', 'position': 'WR', 'height': 71.0, 'weight': '190', 'compRating': '0.9302', 'compStars': 4, 'nationalRank': '146', 'positionRank': '22', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2008', 'playerName': 'Jarius Wright', 'highSchool': 'Warren', 'city': 'Warren', 'state': 'AR', 'position': 'WR', 'height': 70.0, 'weight': '180', 'compRating': '0.8995', 'compStars': 4, 'nationalRank': '262', 'positionRank': '37', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2008', 'playerName': 'Jerico Nelson', 'highSchool': 'Destrehan', 'city': 'Destrehan', 'state': 'LA', 'position': 'OLB', 'height': 70.0, 'weight': '211', 'compRating': '0.8938', 'compStars': 4, 'nationalRank': '300', 'positionRank': '24', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2008', 'playerName': 'Matt Hall', 'highSchool': 'Russellville', 'city': 'Russellville', 'state': 'AR', 'position': 'OT', 'height': 82.0, 'weight': '320', 'compRating': '0.8844', 'compStars': 3, 'nationalRank': '362', 'positionRank': '36', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2008', 'playerName': 'Cruz Williams', 'highSchool': 'Pulaski Academy', 'city': 'Little Rock', 'state': 'AR', 'position': 'WR', 'height': 76.0, 'weight': '206', 'compRating': '0.8795', 'compStars': 3, 'nationalRank': '404', 'positionRank': '57', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2008', 'playerName': 'Greg Childs', 'highSchool': 'Warren', 'city': 'Warren', 'state': 'AR', 'position': 'WR', 'height': 75.0, 'weight': '217', 'compRating': '0.8684', 'compStars': 3, 'nationalRank': '523', 'positionRank': '68', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2008', 'playerName': 'Lavunce Askew', 'highSchool': 'Camden Fairview', 'city': 'Camden', 'state': 'AR', 'position': 'DT', 'height': 75.0, 'weight': '290', 'compRating': '0.8653', 'compStars': 3, 'nationalRank': '553', 'positionRank': '39', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2008', 'playerName': 'Jim Youngblood', 'highSchool': 'Camden Fairview', 'city': 'Camden', 'state': 'AR', 'position': 'DUAL', 'height': 74.0, 'weight': '217', 'compRating': '0.8559', 'compStars': 3, 'nationalRank': '660', 'positionRank': '12', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2008', 'playerName': 'Jelani Smith', 'highSchool': 'Abbeville', 'city': 'Abbeville', 'state': 'LA', 'position': 'ILB', 'height': 73.0, 'weight': '207', 'compRating': '0.8510', 'compStars': 3, 'nationalRank': '743', 'positionRank': '39', 'stateRank': '27', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2008', 'playerName': 'Dennis Johnson', 'highSchool': 'Arkansas', 'city': 'Texarkana', 'state': 'AR', 'position': 'RB', 'height': 69.0, 'weight': '213', 'compRating': '0.8510', 'compStars': 3, 'nationalRank': '744', 'positionRank': '63', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2008', 'playerName': 'Khiry Battle', 'highSchool': 'Dacula', 'city': 'Dacula', 'state': 'GA', 'position': 'S', 'height': 71.0, 'weight': '203', 'compRating': '0.8479', 'compStars': 3, 'nationalRank': '784', 'positionRank': '65', 'stateRank': '51', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2008', 'playerName': 'Tramain Thomas', 'highSchool': 'East Chambers', 'city': 'Winnie', 'state': 'TX', 'position': 'S', 'height': 72.0, 'weight': '204', 'compRating': '0.8448', 'compStars': 3, 'nationalRank': '814', 'positionRank': '67', 'stateRank': '123', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2008', 'playerName': 'Zach Stadther', 'highSchool': 'North Little Rock', 'city': 'North Little Rock', 'state': 'AR', 'position': 'DT', 'height': 73.0, 'weight': '295', 'compRating': '0.8448', 'compStars': 3, 'nationalRank': '822', 'positionRank': '59', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2008', 'playerName': 'Albert Gary', 'highSchool': 'North Marion', 'city': 'Citra', 'state': 'FL', 'position': 'RB', 'height': 70.0, 'weight': '177', 'compRating': '0.8351', 'compStars': 3, 'nationalRank': '927', 'positionRank': '76', 'stateRank': '113', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2008', 'playerName': 'Austin Eoff', 'highSchool': 'Northside', 'city': 'Fort Smith', 'state': 'AR', 'position': 'OG', 'height': 77.0, 'weight': '308', 'compRating': '0.8337', 'compStars': 3, 'nationalRank': '945', 'positionRank': '71', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2008', 'playerName': 'Tenarius Wright', 'highSchool': 'Whitehaven', 'city': 'Memphis', 'state': 'TN', 'position': 'WDE', 'height': 74.0, 'weight': '252', 'compRating': '0.8292', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '30', 'stateRank': '29', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2008', 'playerName': 'Elton Ford', 'highSchool': 'Chattahoochee', 'city': 'Alpharetta', 'state': 'GA', 'position': 'S', 'height': 72.0, 'weight': '210', 'compRating': '0.8115', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '90', 'stateRank': '85', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2008', 'playerName': 'Basmine Jones', 'highSchool': 'Warren', 'city': 'Warren', 'state': 'AR', 'position': 'ATH', 'height': 72.0, 'weight': '195', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '94', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2008', 'playerName': 'Chris Gragg', 'highSchool': 'Warren', 'city': 'Warren', 'state': 'AR', 'position': 'TE', 'height': 75.0, 'weight': '236', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '64', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2008', 'playerName': 'Alfred Davis', 'highSchool': 'Banneker', 'city': 'Atlanta', 'state': 'GA', 'position': 'DT', 'height': 73.0, 'weight': '326', 'compRating': '0.7910', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '88', 'stateRank': '97', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2008', 'playerName': 'Brian Christopher', 'highSchool': 'Camden Fairview', 'city': 'Camden', 'state': 'AR', 'position': 'SDE', 'height': 76.0, 'weight': '240', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '81', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2008', 'playerName': 'Matt Marshall', 'highSchool': 'Camden', 'city': 'Camden', 'state': 'NJ', 'position': 'OLB', 'height': 73.0, 'weight': '230', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '124', 'stateRank': '38', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2008', 'playerName': 'Chris Raggett', 'highSchool': 'Ozen', 'city': 'Beaumont', 'state': 'TX', 'position': 'S', 'height': 71.0, 'weight': '172', 'compRating': '0.7000', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '156', 'stateRank': '320', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2008', 'playerName': 'Nick Brewer', 'highSchool': 'James Bowie', 'city': 'Simms', 'state': 'TX', 'position': 'LS', 'height': 73.0, 'weight': '215', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2008', 'playerName': 'Cameron Bryan', 'highSchool': 'Bishop McGuinness', 'city': 'Oklahoma City', 'state': 'OK', 'position': 'K', 'height': 70.0, 'weight': '176', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2008', 'playerName': 'Tyler Deacon', 'highSchool': 'Little Rock Christian Academy', 'city': 'Little Rock', 'state': 'AR', 'position': 'OT', 'height': 74.0, 'weight': '295', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2008', 'playerName': 'Blake Gunderson', 'highSchool': 'Rockwall', 'city': 'Rockwall', 'state': 'TX', 'position': 'OG', 'height': 75.0, 'weight': '298', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2011', 'playerName': 'Sheldon Richardson', 'highSchool': 'College of the Sequoias', 'city': 'Visalia', 'state': 'CA', 'position': 'DT', 'height': 76.0, 'weight': '290', 'compRating': '0.9537', 'compStars': 4, 'nationalRank': '2', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2011', 'playerName': 'Shane Ray', 'highSchool': 'Bishop Miege', 'city': 'Mission', 'state': 'KS', 'position': 'WDE', 'height': 76.0, 'weight': '220', 'compRating': '0.8807', 'compStars': 3, 'nationalRank': '326', 'positionRank': '11', 'stateRank': '3', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '22', '247stateRank': '3'}, {'school': 'missouri', 'year': '2011', 'playerName': 'Kentrell Brothers', 'highSchool': 'Guthrie', 'city': 'Guthrie', 'state': 'OK', 'position': 'OLB', 'height': 73.0, 'weight': '215', 'compRating': '0.8568', 'compStars': 3, 'nationalRank': '602', 'positionRank': '48', 'stateRank': '10', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '45', '247stateRank': '10'}, {'school': 'missouri', 'year': '2011', 'playerName': 'Gerrand Johnson', 'highSchool': 'Rayville', 'city': 'Rayville', 'state': 'LA', 'position': 'DT', 'height': 75.0, 'weight': '280', 'compRating': '0.8534', 'compStars': 3, 'nationalRank': '660', 'positionRank': '52', 'stateRank': '25', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '53', '247stateRank': '28'}, {'school': 'missouri', 'year': '2011', 'playerName': 'Wesley Leftwich', 'highSchool': 'Hickman', 'city': 'Columbia', 'state': 'MO', 'position': 'WR', 'height': 73.0, 'weight': '194', 'compRating': '0.8306', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '133', 'stateRank': '9', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '140', '247stateRank': '9'}, {'school': 'missouri', 'year': '2011', 'playerName': 'Corbin Berkstresser', 'highSchool': "Lee's Summit", 'city': 'Lees Summit', 'state': 'MO', 'position': 'PRO', 'height': 75.0, 'weight': '218', 'compRating': '0.8599', 'compStars': 3, 'nationalRank': '548', 'positionRank': '16', 'stateRank': '4', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '19', '247stateRank': '6'}, {'school': 'missouri', 'year': '2011', 'playerName': 'Cortland Browning', 'highSchool': 'Robert Lee', 'city': 'Robert Lee', 'state': 'TX', 'position': 'S', 'height': 73.0, 'weight': '190', 'compRating': '0.8572', 'compStars': 3, 'nationalRank': '595', 'positionRank': '40', 'stateRank': '92', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '26', '247stateRank': '58'}, {'school': 'missouri', 'year': '2011', 'playerName': 'Taylor Chappell', 'highSchool': 'Canadian', 'city': 'Canadian', 'state': 'TX', 'position': 'OT', 'height': 78.0, 'weight': '270', 'compRating': '0.8543', 'compStars': 3, 'nationalRank': '651', 'positionRank': '63', 'stateRank': '99', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '70', '247stateRank': '116'}, {'school': 'missouri', 'year': '2011', 'playerName': 'Clarence Green', 'highSchool': 'Brazoswood', 'city': 'Clute', 'state': 'TX', 'position': 'OLB', 'height': 71.0, 'weight': '205', 'compRating': '0.8331', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '88', 'stateRank': '174', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '92', '247stateRank': '169'}, {'school': 'missouri', 'year': '2011', 'playerName': 'Ian Simon', 'highSchool': 'Mansfield Legacy', 'city': 'Mansfield', 'state': 'TX', 'position': 'S', 'height': 70.0, 'weight': '180', 'compRating': '0.8255', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '85', 'stateRank': '187', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '78', '247stateRank': '170'}, {'school': 'missouri', 'year': '2011', 'playerName': 'Connor McGovern', 'highSchool': 'Shanley-sullivan Middle School', 'city': 'Fargo', 'state': 'ND', 'position': 'OG', 'height': 75.0, 'weight': '280', 'compRating': '0.8221', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '77', 'stateRank': '1', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '77', '247stateRank': '1'}, {'school': 'missouri', 'year': '2011', 'playerName': 'Brandon Hannah', 'highSchool': 'Chaminade', 'city': 'Saint Louis', 'state': 'MO', 'position': 'TE', 'height': 75.0, 'weight': '240', 'compRating': '0.8188', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '56', 'stateRank': '10'}, {'school': 'missouri', 'year': '2011', 'playerName': 'David Johnson', 'highSchool': 'Spring HS', 'city': 'Spring', 'state': 'TX', 'position': 'S', 'height': 72.0, 'weight': '195', 'compRating': '0.7966', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '107', 'stateRank': '229', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '89', '247stateRank': '190'}, {'school': 'missouri', 'year': '2011', 'playerName': 'Earnest Payton', 'highSchool': 'A&M Consolidated', 'city': 'College Station', 'state': 'TX', 'position': 'S', 'height': 74.0, 'weight': '195', 'compRating': '0.7599', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '150', 'stateRank': '323'}, {'school': 'kentucky', 'year': '2003', 'playerName': 'Keenan Burton', 'highSchool': 'Dupont Manual', 'city': 'Louisville', 'state': 'KY', 'position': 'WR', 'height': 74.0, 'weight': '175', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2003', 'playerName': 'Andre Woodson', 'highSchool': 'North Hardin', 'city': 'Radcliff', 'state': 'KY', 'position': 'PRO', 'height': 77.0, 'weight': '215', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2003', 'playerName': 'Ricky Abren', 'highSchool': 'Hopkinsville', 'city': 'Hopkinsville', 'state': 'KY', 'position': 'DT', 'height': 74.0, 'weight': '250', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2003', 'playerName': 'Draak Davis', 'highSchool': 'Solano C.C.', 'city': 'Fairfield', 'state': 'CA', 'position': 'RB', 'height': 68.0, 'weight': '160', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2003', 'playerName': 'Dallas Greer', 'highSchool': 'Bell County', 'city': 'Pineville', 'state': 'KY', 'position': 'S', 'height': 73.0, 'weight': '185', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2003', 'playerName': 'Travis Day', 'highSchool': 'Carver', 'city': 'Columbus', 'state': 'GA', 'position': 'WDE', 'height': 76.0, 'weight': '255', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2003', 'playerName': 'Brad Booker', 'highSchool': 'Bowling Green', 'city': 'Bowling Green', 'state': 'KY', 'position': 'OLB', 'height': 74.0, 'weight': '215', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2003', 'playerName': 'Kurt Jackson', 'highSchool': 'Dixie', 'city': 'Saint George', 'state': 'UT', 'position': 'TE', 'height': 77.0, 'weight': '240', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2003', 'playerName': 'Jan Jorgensen', 'highSchool': 'Carbon', 'city': 'Price', 'state': 'UT', 'position': 'ILB', 'height': 75.0, 'weight': '230', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2003', 'playerName': 'Dominic Lewis', 'highSchool': 'John Hardin', 'city': 'Elizabethtown', 'state': 'KY', 'position': 'TE', 'height': 75.0, 'weight': '210', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2003', 'playerName': 'John Logan', 'highSchool': 'Lexington Catholic', 'city': 'Lexington', 'state': 'KY', 'position': 'WR', 'height': 72.0, 'weight': '170', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2003', 'playerName': 'Maurice Marchman', 'highSchool': 'Ballard', 'city': 'Louisville', 'state': 'KY', 'position': 'WR', 'height': 70.0, 'weight': '170', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2003', 'playerName': 'Jacob Tamme', 'highSchool': 'Boyle County', 'city': 'Danville', 'state': 'KY', 'position': 'TE', 'height': 77.0, 'weight': '205', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2003', 'playerName': 'Delaine Means', 'highSchool': 'Avondale', 'city': 'Avondale Estates', 'state': 'GA', 'position': 'DT', 'height': 76.0, 'weight': '285', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2003', 'playerName': 'Joey Razzano', 'highSchool': 'Milford', 'city': 'Milford', 'state': 'OH', 'position': 'FB', 'height': 72.0, 'weight': '235', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2003', 'playerName': 'Joe Schuler', 'highSchool': 'Evansville Central', 'city': 'Evansville', 'state': 'IN', 'position': 'ILB', 'height': 75.0, 'weight': '240', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2003', 'playerName': 'Eric Scott', 'highSchool': 'Etowah', 'city': 'Woodstock', 'state': 'GA', 'position': 'TE', 'height': 77.0, 'weight': '252', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2003', 'playerName': 'Paul Webb', 'highSchool': 'Johnson Central', 'city': 'Paintsville', 'state': 'KY', 'position': 'DT', 'height': 77.0, 'weight': '295', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2003', 'playerName': 'Durrell White', 'highSchool': 'Middlesboro', 'city': 'Middlesboro', 'state': 'KY', 'position': 'ILB', 'height': 75.0, 'weight': '250', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2003', 'playerName': 'Roger Williams', 'highSchool': 'Rockmart', 'city': 'Rockmart', 'state': 'GA', 'position': 'S', 'height': 73.0, 'weight': '180', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2003', 'playerName': 'Leroy Wilson', 'highSchool': 'Warren Central', 'city': 'Bowling Green', 'state': 'KY', 'position': 'ATH', 'height': 76.0, 'weight': '185', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2003', 'playerName': 'Emmanual Harrell', 'highSchool': 'LaGrange', 'city': 'Lagrange', 'state': 'GA', 'position': 'WR', 'height': 71.0, 'weight': '175', 'compRating': '0.9268', 'compStars': 4, 'nationalRank': '124', 'positionRank': '12', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2012', 'playerName': 'D.J. Humphries', 'highSchool': 'Mallard Creek', 'city': 'Charlotte', 'state': 'NC', 'position': 'OT', 'height': 77.0, 'weight': '275', 'compRating': '0.9980', 'compStars': 5, 'nationalRank': '3', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 99 ', '247Stars': 5, '247nationalRank': '5', '247positionRank': '1', '247stateRank': '1'}, {'school': 'florida', 'year': '2012', 'playerName': 'Jonathan Bullard', 'highSchool': 'Crest', 'city': 'Shelby', 'state': 'NC', 'position': 'SDE', 'height': 76.0, 'weight': '245', 'compRating': '0.9924', 'compStars': 5, 'nationalRank': '12', 'positionRank': '1', 'stateRank': '2', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '30', '247positionRank': '2', '247stateRank': '3'}, {'school': 'florida', 'year': '2012', 'playerName': 'Dante Fowler', 'highSchool': 'Lakewood', 'city': 'Saint Petersburg', 'state': 'FL', 'position': 'WDE', 'height': 75.0, 'weight': '258', 'compRating': '0.9842', 'compStars': 5, 'nationalRank': '36', 'positionRank': '6', 'stateRank': '6', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '15', '247positionRank': '2', '247stateRank': '2'}, {'school': 'florida', 'year': '2012', 'playerName': 'Brian Poole', 'highSchool': 'Southeast', 'city': 'Bradenton', 'state': 'FL', 'position': 'S', 'height': 70.0, 'weight': '192', 'compRating': '0.9739', 'compStars': 4, 'nationalRank': '60', 'positionRank': '3', 'stateRank': '13', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '95', '247positionRank': '4', '247stateRank': '15'}, {'school': 'florida', 'year': '2012', 'playerName': 'Jessamen Dunker', 'highSchool': 'Boynton Beach Community', 'city': 'Boynton Beach', 'state': 'FL', 'position': 'OG', 'height': 77.0, 'weight': '315', 'compRating': '0.9739', 'compStars': 4, 'nationalRank': '59', 'positionRank': '5', 'stateRank': '12', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '59', '247positionRank': '3', '247stateRank': '11'}, {'school': 'florida', 'year': '2012', 'playerName': 'Kent Taylor', 'highSchool': "Land O' Lakes", 'city': 'Land O Lakes', 'state': 'FL', 'position': 'TE', 'height': 77.0, 'weight': '210', 'compRating': '0.9647', 'compStars': 4, 'nationalRank': '79', 'positionRank': '1', 'stateRank': '15', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '119', '247positionRank': '3', '247stateRank': '17'}, {'school': 'florida', 'year': '2012', 'playerName': 'Marcus Maye', 'highSchool': 'Holy Trinity Episcopal Academy', 'city': 'Melbourne', 'state': 'FL', 'position': 'OLB', 'height': 73.0, 'weight': '195', 'compRating': '0.9527', 'compStars': 4, 'nationalRank': '111', 'positionRank': '10', 'stateRank': '18', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '204', '247positionRank': '21', '247stateRank': '28'}, {'school': 'florida', 'year': '2012', 'playerName': 'Colin Thompson', 'highSchool': 'Archbishop Wood', 'city': 'Warminster', 'state': 'PA', 'position': 'TE', 'height': 77.0, 'weight': '263', 'compRating': '0.9445', 'compStars': 4, 'nationalRank': '135', 'positionRank': '4', 'stateRank': '3', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '184', '247positionRank': '6', '247stateRank': '5'}, {'school': 'florida', 'year': '2012', 'playerName': 'Matt Jones', 'highSchool': 'Armwood', 'city': 'Seffner', 'state': 'FL', 'position': 'ATH', 'height': 75.0, 'weight': '230', 'compRating': '0.9370', 'compStars': 4, 'nationalRank': '159', 'positionRank': '12', 'stateRank': '27', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '193', '247positionRank': '15', '247stateRank': '26'}, {'school': 'florida', 'year': '2012', 'playerName': 'Jeremi Powell', 'highSchool': 'Pinellas Park', 'city': 'Largo', 'state': 'FL', 'position': 'OLB', 'height': 74.0, 'weight': '200', 'compRating': '0.9210', 'compStars': 4, 'nationalRank': '223', 'positionRank': '24', 'stateRank': '35', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '208', '247positionRank': '24', '247stateRank': '29'}, {'school': 'florida', 'year': '2012', 'playerName': 'Rhaheim Ledbetter', 'highSchool': 'Crest', 'city': 'Shelby', 'state': 'NC', 'position': 'S', 'height': 71.0, 'weight': '190', 'compRating': '0.9138', 'compStars': 4, 'nationalRank': '253', 'positionRank': '16', 'stateRank': '9', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '25', '247stateRank': '15'}, {'school': 'florida', 'year': '2012', 'playerName': 'Latroy Pittman', 'highSchool': 'North Marion', 'city': 'Citra', 'state': 'FL', 'position': 'ATH', 'height': 73.0, 'weight': '200', 'compRating': '0.8996', 'compStars': 4, 'nationalRank': '321', 'positionRank': '23', 'stateRank': '40', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '19', '247stateRank': '38'}, {'school': 'florida', 'year': '2012', 'playerName': 'Damien Jacobs', 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'DT', 'height': 76.0, 'weight': '300', 'compRating': '0.8967', 'compStars': 4, 'nationalRank': '12', 'positionRank': '2', 'stateRank': '5', '247Rating': ' 89 ', '247Stars': 3, '247nationalRank': '39', '247positionRank': '6', '247stateRank': '11'}, {'school': 'florida', 'year': '2012', 'playerName': 'Antonio Morrison', 'highSchool': 'Bolingbrook', 'city': 'Bolingbrook', 'state': 'IL', 'position': 'ILB', 'height': 75.0, 'weight': '220', 'compRating': '0.8947', 'compStars': 4, 'nationalRank': '345', 'positionRank': '16', 'stateRank': '7', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '16', '247stateRank': '8'}, {'school': 'florida', 'year': '2012', 'playerName': 'Quinteze Williams', 'highSchool': 'Sandy Creek', 'city': 'Tyrone', 'state': 'GA', 'position': 'SDE', 'height': 77.0, 'weight': '247', 'compRating': '0.8921', 'compStars': 4, 'nationalRank': '364', 'positionRank': '19', 'stateRank': '29'}, {'school': 'florida', 'year': '2012', 'playerName': 'Jafar Mann', 'highSchool': 'Stephenson', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'DT', 'height': 76.0, 'weight': '275', 'compRating': '0.8848', 'compStars': 3, 'nationalRank': '419', 'positionRank': '28', 'stateRank': '32', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '24', '247stateRank': '23'}, {'school': 'florida', 'year': '2012', 'playerName': 'Alex McCalister', 'highSchool': 'West Forsyth', 'city': 'Clemmons', 'state': 'NC', 'position': 'WDE', 'height': 79.0, 'weight': '210', 'compRating': '0.8776', 'compStars': 3, 'nationalRank': '519', 'positionRank': '34', 'stateRank': '21', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '40', '247stateRank': '26'}, {'school': 'florida', 'year': '2012', 'playerName': 'Bryan Cox Jr.', 'highSchool': 'St. Thomas Aquinas', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'SDE', 'height': 75.0, 'weight': '240', 'compRating': '0.8751', 'compStars': 3, 'nationalRank': '560', 'positionRank': '29', 'stateRank': '68', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '34', '247stateRank': '79'}, {'school': 'florida', 'year': '2012', 'playerName': 'Willie Bailey', 'highSchool': 'Hallandale', 'city': 'Hallandale', 'state': 'FL', 'position': 'S', 'height': 73.0, 'weight': '165', 'compRating': '0.8580', 'compStars': 3, 'nationalRank': '768', 'positionRank': '48', 'stateRank': '93', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '54', '247stateRank': '93'}, {'school': 'florida', 'year': '2012', 'playerName': 'Skyler Mornhinweg', 'highSchool': "St. Joseph's", 'city': 'Philadelphia', 'state': 'PA', 'position': 'DUAL', 'height': 75.0, 'weight': '215', 'compRating': '0.8517', 'compStars': 3, 'nationalRank': '852', 'positionRank': '22', 'stateRank': '30', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '20', '247stateRank': '35'}, {'school': 'florida', 'year': '2012', 'playerName': 'Austin Hardin', 'highSchool': 'Marist School', 'city': 'Atlanta', 'state': 'GA', 'position': 'K', 'height': 71.0, 'weight': '195', 'compRating': '0.8485', 'compStars': 3, 'nationalRank': '889', 'positionRank': '5', 'stateRank': '76', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '5', '247stateRank': '107'}, {'school': 'florida', 'year': '2012', 'playerName': 'Raph Andrades', 'highSchool': 'Lincoln', 'city': 'Tallahassee', 'state': 'FL', 'position': 'WR', 'height': 73.0, 'weight': '200', 'compRating': '0.8387', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '124', 'stateRank': '125', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '161', '247stateRank': '141'}, {'school': 'texas-am', 'year': '2007', 'playerName': 'Derrick Stephens', 'highSchool': 'Cy Falls', 'city': 'Houston', 'state': 'TX', 'position': 'ILB', 'height': 75.0, 'weight': '240', 'compRating': '0.9527', 'compStars': 4, 'nationalRank': '90', 'positionRank': '2', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2007', 'playerName': 'Von Miller', 'highSchool': 'DeSoto', 'city': 'DeSoto', 'state': 'TX', 'position': 'OLB', 'height': 75.0, 'weight': '243', 'compRating': '0.8844', 'compStars': 3, 'nationalRank': '288', 'positionRank': '17', 'stateRank': '36', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2007', 'playerName': 'Billy Chavis', 'highSchool': 'Westbrook School', 'city': 'Westbrook', 'state': 'TX', 'position': 'ATH', 'height': 76.0, 'weight': '220', 'compRating': '0.8764', 'compStars': 3, 'nationalRank': '348', 'positionRank': '22', 'stateRank': '47', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2007', 'playerName': 'Nick Trice', 'highSchool': 'Harker Heights', 'city': 'Harker Heights', 'state': 'TX', 'position': 'WR', 'height': 75.0, 'weight': '188', 'compRating': '0.8559', 'compStars': 3, 'nationalRank': '527', 'positionRank': '66', 'stateRank': '66', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2007', 'playerName': 'Frank Avery', 'highSchool': 'Ball', 'city': 'Galveston', 'state': 'TX', 'position': 'TE', 'height': 77.0, 'weight': '230', 'compRating': '0.8497', 'compStars': 3, 'nationalRank': '644', 'positionRank': '32', 'stateRank': '84', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2007', 'playerName': 'Charles Young', 'highSchool': 'Mamou', 'city': 'Mamou', 'state': 'LA', 'position': 'ILB', 'height': 75.0, 'weight': '219', 'compRating': '0.8354', 'compStars': 3, 'nationalRank': '810', 'positionRank': '35', 'stateRank': '29', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2007', 'playerName': 'Harold Turnage', 'highSchool': 'Chavez', 'city': 'Houston', 'state': 'TX', 'position': 'TE', 'height': 75.0, 'weight': '260', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '913', 'positionRank': '49', 'stateRank': '123', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2007', 'playerName': 'Daniel Baker', 'highSchool': 'Elkins', 'city': 'Missouri City', 'state': 'TX', 'position': 'OT', 'height': 78.0, 'weight': '285', 'compRating': '0.8323', 'compStars': 3, 'nationalRank': '963', 'positionRank': '86', 'stateRank': '129', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2007', 'playerName': 'Roger Holland', 'highSchool': 'Cy Falls', 'city': 'Houston', 'state': 'TX', 'position': 'WR', 'height': 72.0, 'weight': '190', 'compRating': '0.8181', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '116', 'stateRank': '147', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2007', 'playerName': 'David Tufuga', 'highSchool': 'Snow College', 'city': 'Ephraim', 'state': 'UT', 'position': 'DT', 'height': 73.0, 'weight': '293', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': '196', 'positionRank': '17', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2007', 'playerName': 'Bradley Stephens', 'highSchool': 'Memorial', 'city': 'Mcallen', 'state': 'TX', 'position': 'RB', 'height': 70.0, 'weight': '185', 'compRating': '0.9407', 'compStars': 4, 'nationalRank': '113', 'positionRank': '13', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2007', 'playerName': 'Michael Ebbitt', 'highSchool': 'Oaks Christian', 'city': 'Westlake Village', 'state': 'CA', 'position': 'SDE', 'height': 76.0, 'weight': '275', 'compRating': '0.9153', 'compStars': 4, 'nationalRank': '175', 'positionRank': '14', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2007', 'playerName': 'Ryan Tannehill', 'highSchool': 'Big Spring', 'city': 'Big Spring', 'state': 'TX', 'position': 'DUAL', 'height': 76.0, 'weight': '193', 'compRating': '0.8510', 'compStars': 3, 'nationalRank': '630', 'positionRank': '19', 'stateRank': '80', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2007', 'playerName': 'Brandon Williams', 'highSchool': 'Beaumont Central', 'city': 'Beaumont', 'state': 'TX', 'position': 'ATH', 'height': 76.0, 'weight': '225', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA'}, {'school': 'south-carolina', 'year': '2013', 'playerName': 'Kelsey Griffin', 'highSchool': 'Mill Creek', 'city': 'Hoschton', 'state': 'GA', 'position': 'DT', 'height': 74.0, 'weight': '290', 'compRating': '0.9616', 'compStars': 4, 'nationalRank': '84', 'positionRank': '6', 'stateRank': '9', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '78', '247positionRank': '7', '247stateRank': '8'}, {'school': 'south-carolina', 'year': '2013', 'playerName': 'Larenz Bryant', 'highSchool': 'Zebulon B. Vance', 'city': 'Charlotte', 'state': 'NC', 'position': 'OLB', 'height': 73.0, 'weight': '213', 'compRating': '0.9536', 'compStars': 4, 'nationalRank': '103', 'positionRank': '9', 'stateRank': '3', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '50', '247positionRank': '6', '247stateRank': '1'}, {'school': 'south-carolina', 'year': '2013', 'playerName': 'David Williams', 'highSchool': 'Imhotep Institute', 'city': 'Philadelphia', 'state': 'PA', 'position': 'APB', 'height': 72.5, 'weight': '204', 'compRating': '0.9305', 'compStars': 4, 'nationalRank': '159', 'positionRank': '8', 'stateRank': '7', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '145', '247positionRank': '8', '247stateRank': '7'}, {'school': 'south-carolina', 'year': '2013', 'playerName': 'D.J. Park', 'highSchool': 'Dillon', 'city': 'Dillon', 'state': 'SC', 'position': 'OG', 'height': 77.0, 'weight': '313', 'compRating': '0.8999', 'compStars': 4, 'nationalRank': '284', 'positionRank': '13', 'stateRank': '5', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '16', '247stateRank': '5'}, {'school': 'south-carolina', 'year': '2013', 'playerName': 'Connor Mitch', 'highSchool': 'Wakefield', 'city': 'Raleigh', 'state': 'NC', 'position': 'PRO', 'height': 75.0, 'weight': '220', 'compRating': '0.8903', 'compStars': 4, 'nationalRank': '335', 'positionRank': '21', 'stateRank': '9', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '244', '247positionRank': '13', '247stateRank': '7'}, {'school': 'south-carolina', 'year': '2013', 'playerName': "Na'Ty Rodgers", 'highSchool': 'Maurice J. McDonough', 'city': 'Pomfret', 'state': 'MD', 'position': 'OT', 'height': 77.0, 'weight': '270', 'compRating': '0.8887', 'compStars': 3, 'nationalRank': '341', 'positionRank': '27', 'stateRank': '7', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '33', '247positionRank': '5', '247stateRank': '2'}, {'school': 'south-carolina', 'year': '2013', 'playerName': 'Skai Moore', 'highSchool': 'University School', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'OLB', 'height': 75.0, 'weight': '215', 'compRating': '0.8786', 'compStars': 3, 'nationalRank': '390', 'positionRank': '26', 'stateRank': '57', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '22', '247stateRank': '46'}, {'school': 'south-carolina', 'year': '2013', 'playerName': 'Devin Washington', 'highSchool': 'Jones', 'city': 'Orlando', 'state': 'FL', 'position': 'WDE', 'height': 75.0, 'weight': '225', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '399', 'positionRank': '16', 'stateRank': '61', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '14', '247stateRank': '48'}, {'school': 'south-carolina', 'year': '2013', 'playerName': 'David Johnson', 'highSchool': 'Lithonia', 'city': 'Lithonia', 'state': 'GA', 'position': 'WDE', 'height': 73.0, 'weight': '253', 'compRating': '0.8737', 'compStars': 3, 'nationalRank': '438', 'positionRank': '18', 'stateRank': '39', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '17', '247stateRank': '37'}, {'school': 'south-carolina', 'year': '2013', 'playerName': 'Pharoh Cooper', 'highSchool': 'Havelock', 'city': 'Havelock', 'state': 'NC', 'position': 'ATH', 'height': 71.0, 'weight': '181', 'compRating': '0.8730', 'compStars': 3, 'nationalRank': '448', 'positionRank': '21', 'stateRank': '15', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '24', '247stateRank': '15'}, {'school': 'south-carolina', 'year': '2013', 'playerName': 'Bryce King', 'highSchool': 'Dillon', 'city': 'Dillon', 'state': 'SC', 'position': 'OC', 'height': 75.0, 'weight': '293', 'compRating': '0.8675', 'compStars': 3, 'nationalRank': '508', 'positionRank': '8', 'stateRank': '7', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '8', '247stateRank': '8'}, {'school': 'south-carolina', 'year': '2013', 'playerName': 'Alan Knott', 'highSchool': 'Sandy Creek', 'city': 'Tyrone', 'state': 'GA', 'position': 'OG', 'height': 76.0, 'weight': '275', 'compRating': '0.8672', 'compStars': 3, 'nationalRank': '509', 'positionRank': '29', 'stateRank': '47', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '27', '247stateRank': '43'}, {'school': 'south-carolina', 'year': '2013', 'playerName': 'Gerald Turner', 'highSchool': 'Goose Creek', 'city': 'Goose Creek', 'state': 'SC', 'position': 'ILB', 'height': 73.0, 'weight': '240', 'compRating': '0.8664', 'compStars': 3, 'nationalRank': '527', 'positionRank': '37', 'stateRank': '9', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '34', '247stateRank': '10'}, {'school': 'south-carolina', 'year': '2013', 'playerName': 'Jamari Smith', 'highSchool': 'Duncan U. Fletcher', 'city': 'Neptune Beach', 'state': 'FL', 'position': 'APB', 'height': 70.0, 'weight': '195', 'compRating': '0.8634', 'compStars': 3, 'nationalRank': '561', 'positionRank': '14', 'stateRank': '84', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '14', '247stateRank': '64'}, {'school': 'south-carolina', 'year': '2013', 'playerName': 'J.P. Vonashek', 'highSchool': 'Camden County', 'city': 'Kingsland', 'state': 'GA', 'position': 'OT', 'height': 79.0, 'weight': '275', 'compRating': '0.8631', 'compStars': 3, 'nationalRank': '565', 'positionRank': '44', 'stateRank': '52'}, {'school': 'south-carolina', 'year': '2013', 'playerName': 'Ali Groves', 'highSchool': 'Stephenson', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'S', 'height': 71.0, 'weight': '177', 'compRating': '0.8594', 'compStars': 3, 'nationalRank': '638', 'positionRank': '46', 'stateRank': '61', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '39', '247stateRank': '45'}, {'school': 'south-carolina', 'year': '2013', 'playerName': 'Jonathan Walton', 'highSchool': 'Bayside Academy', 'city': 'Daphne', 'state': 'AL', 'position': 'ILB', 'height': 73.0, 'weight': '227', 'compRating': '0.8577', 'compStars': 3, 'nationalRank': '668', 'positionRank': '44', 'stateRank': '22', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '39', '247stateRank': '21'}, {'school': 'south-carolina', 'year': '2013', 'playerName': 'Ronnie Martin', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'CB', 'height': 70.0, 'weight': '185', 'compRating': '0.8553', 'compStars': 3, 'nationalRank': '77', 'positionRank': '4', 'stateRank': '5', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '83', '247positionRank': '6', '247stateRank': '5'}, {'school': 'south-carolina', 'year': '2013', 'playerName': 'Jasper Sasser', 'highSchool': 'Samuel W. Wolfson', 'city': 'Jacksonville', 'state': 'FL', 'position': 'ATH', 'height': 74.0, 'weight': '185', 'compRating': '0.8540', 'compStars': 3, 'nationalRank': '736', 'positionRank': '49', 'stateRank': '110', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '80', '247stateRank': '157'}, {'school': 'south-carolina', 'year': '2013', 'playerName': 'Mohamed Camara', 'highSchool': 'West Forsyth', 'city': 'Cumming', 'state': 'GA', 'position': 'OLB', 'height': 74.0, 'weight': '205', 'compRating': '0.8493', 'compStars': 3, 'nationalRank': '831', 'positionRank': '66', 'stateRank': '79', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '85', '247stateRank': '85'}, {'school': 'south-carolina', 'year': '2013', 'playerName': 'Drew Williams', 'highSchool': 'Dutch Fork', 'city': 'Irmo', 'state': 'SC', 'position': 'LS', 'height': 74.0, 'weight': '180', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2013', 'playerName': 'Benji Russell', 'highSchool': 'Woodward Academy', 'city': 'Atlanta', 'state': 'GA', 'position': 'CB', 'height': 72.0, 'weight': '175', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2013', 'playerName': 'Demetrius Smalls', 'highSchool': 'Bluffton', 'city': 'Bluffton', 'state': 'SC', 'position': 'CB', 'height': 71.0, 'weight': '170', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2013', 'playerName': 'Devante Covington', 'highSchool': 'Richmond', 'city': 'Rockingham', 'state': 'NC', 'position': 'WDE', 'height': 75.0, 'weight': '210', 'compRating': '0.8570', 'compStars': 3, 'nationalRank': '680', 'positionRank': '29', 'stateRank': '26'}, {'school': 'lsu', 'year': '2003', 'playerName': 'Kenny Hollis', 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'ILB', 'height': 74.0, 'weight': '241', 'compRating': '0.9333', 'compStars': 4, 'nationalRank': '1', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2003', 'playerName': 'Craig Davis', 'highSchool': 'O Perry Walker', 'city': 'New Orleans', 'state': 'LA', 'position': 'WR', 'height': 74.0, 'weight': '185', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '134', 'positionRank': '14', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2003', 'playerName': 'Dwayne Bowe', 'highSchool': 'Norland', 'city': 'Miami', 'state': 'FL', 'position': 'WR', 'height': 75.0, 'weight': '210', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '140', 'positionRank': '15', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2003', 'playerName': 'Matt Flynn', 'highSchool': 'Tyler Lee', 'city': 'Tyler', 'state': 'TX', 'position': 'PRO', 'height': 74.0, 'weight': '216', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '159', 'positionRank': '12', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2003', 'playerName': 'Daryl Johnson', 'highSchool': 'O Perry Walker', 'city': 'New Orleans', 'state': 'LA', 'position': 'S', 'height': 73.0, 'weight': '195', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '163', 'positionRank': '11', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2003', 'playerName': 'Will Arnold', 'highSchool': 'Centreville', 'city': 'Centreville', 'state': 'MI', 'position': 'OT', 'height': 77.0, 'weight': '325', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '236', 'positionRank': '19', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2003', 'playerName': 'Jessie Daniels', 'highSchool': 'Breaux Bridge', 'city': 'Breaux Bridge', 'state': 'LA', 'position': 'S', 'height': 72.0, 'weight': '195', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '273', 'positionRank': '19', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2003', 'playerName': 'Patrick Fisher', 'highSchool': 'DeMatha Catholic', 'city': 'Hyattsville', 'state': 'MD', 'position': 'K', 'height': 77.0, 'weight': '240', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '287', 'positionRank': '9', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2003', 'playerName': 'Chris Jackson', 'highSchool': 'John Curtis', 'city': 'New Orleans', 'state': 'LA', 'position': 'K', 'height': 72.0, 'weight': '180', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '291', 'positionRank': '11', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2003', 'playerName': 'Jonathon Zenon', 'highSchool': 'Breaux Bridge', 'city': 'Breaux Bridge', 'state': 'LA', 'position': 'CB', 'height': 74.0, 'weight': '185', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '386', 'positionRank': '25', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2003', 'playerName': 'Keith Zinger', 'highSchool': 'Leesville', 'city': 'Leesville', 'state': 'LA', 'position': 'TE', 'height': 77.0, 'weight': '260', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '442', 'positionRank': '27', 'stateRank': '22', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2003', 'playerName': 'Dominic Cooper', 'highSchool': 'O Perry Walker', 'city': 'New Orleans', 'state': 'LA', 'position': 'WDE', 'height': 76.0, 'weight': '217', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '466', 'positionRank': '20', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2003', 'playerName': 'Jarrod Carter', 'highSchool': 'John Curtis', 'city': 'New Orleans', 'state': 'LA', 'position': 'DT', 'height': 75.0, 'weight': '280', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '478', 'positionRank': '35', 'stateRank': '25', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2003', 'playerName': 'Shawn Jordan', 'highSchool': 'Riverside', 'city': 'El Paso', 'state': 'TX', 'position': 'FB', 'height': 71.0, 'weight': '225', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '653', 'positionRank': '9', 'stateRank': '116', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2003', 'playerName': 'Darius Ingram', 'highSchool': 'Tenaha', 'city': 'Tenaha', 'state': 'TX', 'position': 'OLB', 'height': 74.0, 'weight': '218', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '660', 'positionRank': '46', 'stateRank': '119', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2003', 'playerName': 'Daniel Francis', 'highSchool': 'Port Barre', 'city': 'Port Barre', 'state': 'LA', 'position': 'CB', 'height': 71.0, 'weight': '175', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '939', 'positionRank': '69', 'stateRank': '32', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2003', 'playerName': 'JaMarcus Russell', 'highSchool': 'Williamson', 'city': 'Mobile', 'state': 'AL', 'position': 'PRO', 'height': 77.0, 'weight': '225', 'compRating': '0.9817', 'compStars': 4, 'nationalRank': '38', 'positionRank': '4', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2003', 'playerName': 'Amp Hill', 'highSchool': 'First Coast', 'city': 'Jacksonville', 'state': 'FL', 'position': 'WR', 'height': 74.0, 'weight': '195', 'compRating': '0.9783', 'compStars': 4, 'nationalRank': '47', 'positionRank': '6', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2003', 'playerName': 'Carnell Stewart', 'highSchool': 'John Curtis', 'city': 'New Orleans', 'state': 'LA', 'position': 'DT', 'height': 78.0, 'weight': '297', 'compRating': '0.9737', 'compStars': 4, 'nationalRank': '58', 'positionRank': '5', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2003', 'playerName': 'Tim Washington', 'highSchool': 'Dulles', 'city': 'Sugar Land', 'state': 'TX', 'position': 'SDE', 'height': 76.0, 'weight': '235', 'compRating': '0.9645', 'compStars': 4, 'nationalRank': '69', 'positionRank': '6', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2003', 'playerName': 'Kirston Pittman', 'highSchool': 'East St. John', 'city': 'Reserve', 'state': 'LA', 'position': 'OLB', 'height': 76.0, 'weight': '235', 'compRating': '0.9501', 'compStars': 4, 'nationalRank': '74', 'positionRank': '3', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2003', 'playerName': 'Alley Broussard', 'highSchool': 'Acadiana', 'city': 'Lafayette', 'state': 'LA', 'position': 'RB', 'height': 73.0, 'weight': '230', 'compRating': '0.9418', 'compStars': 4, 'nationalRank': '84', 'positionRank': '6', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2003', 'playerName': 'Justin Vincent', 'highSchool': 'Barbe', 'city': 'Lake Charles', 'state': 'LA', 'position': 'RB', 'height': 72.0, 'weight': '205', 'compRating': '0.9402', 'compStars': 4, 'nationalRank': '92', 'positionRank': '8', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2003', 'playerName': 'Barrington Edwards', 'highSchool': 'Bowie', 'city': 'Bowie', 'state': 'MD', 'position': 'RB', 'height': 73.0, 'weight': '210', 'compRating': '0.9396', 'compStars': 4, 'nationalRank': '96', 'positionRank': '9', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2003', 'playerName': 'Jerry Sevin', 'highSchool': 'John Curtis', 'city': 'New Orleans', 'state': 'LA', 'position': 'OC', 'height': 74.0, 'weight': '295', 'compRating': '0.9351', 'compStars': 4, 'nationalRank': '109', 'positionRank': '3', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2003', 'playerName': 'LaRon Landry', 'highSchool': 'Hahnville', 'city': 'Boutte', 'state': 'LA', 'position': 'S', 'height': 75.0, 'weight': '185', 'compRating': '0.9327', 'compStars': 4, 'nationalRank': '116', 'positionRank': '7', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2003', 'playerName': 'Nick Child', 'highSchool': 'Archbishop Rummel', 'city': 'Metairie', 'state': 'LA', 'position': 'CB', 'height': 73.0, 'weight': '170', 'compRating': '0.9086', 'compStars': 4, 'nationalRank': '126', 'positionRank': '11', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2003', 'playerName': 'Sean Merrill', 'highSchool': "D'Iberville", 'city': 'Diberville', 'state': 'MS', 'position': 'SDE', 'height': 76.0, 'weight': '290', 'compRating': '0.9082', 'compStars': 4, 'nationalRank': '127', 'positionRank': '12', 'stateRank': '4'}, {'school': 'tennessee', 'year': '2007', 'playerName': 'Eric Berry', 'highSchool': 'Creekside', 'city': 'Fairburn', 'state': 'GA', 'position': 'CB', 'height': 72.0, 'weight': '195', 'compRating': '0.9986', 'compStars': 5, 'nationalRank': '3', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2007', 'playerName': 'Ben Martin', 'highSchool': 'La Salle', 'city': 'Cincinnati', 'state': 'OH', 'position': 'SDE', 'height': 77.0, 'weight': '251', 'compRating': '0.9874', 'compStars': 5, 'nationalRank': '22', 'positionRank': '3', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2007', 'playerName': 'Chris Donald', 'highSchool': 'Huntingdon', 'city': 'Huntingdon', 'state': 'TN', 'position': 'OLB', 'height': 74.0, 'weight': '220', 'compRating': '0.9808', 'compStars': 4, 'nationalRank': '39', 'positionRank': '2', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2007', 'playerName': 'Lennon Creer', 'highSchool': 'Lawrence Free State', 'city': 'Lawrence', 'state': 'KS', 'position': 'RB', 'height': 73.0, 'weight': '200', 'compRating': '0.9765', 'compStars': 4, 'nationalRank': '52', 'positionRank': '6', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2007', 'playerName': 'Gerald Jones', 'highSchool': 'Millwood', 'city': 'Oklahoma City', 'state': 'OK', 'position': 'WR', 'height': 72.0, 'weight': '195', 'compRating': '0.9689', 'compStars': 4, 'nationalRank': '68', 'positionRank': '8', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2007', 'playerName': 'Brent Vinson', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'ATH', 'height': 74.0, 'weight': '180', 'compRating': '0.9667', 'compStars': 4, 'nationalRank': '1', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2007', 'playerName': "Kenny O'Neal", 'highSchool': 'City College of San Francisco', 'city': 'San Francisco', 'state': 'CA', 'position': 'WR', 'height': 72.0, 'weight': '195', 'compRating': '0.9333', 'compStars': 4, 'nationalRank': '5', 'positionRank': '2', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2007', 'playerName': 'Ahmad Paige', 'highSchool': 'Sterlington', 'city': 'Monroe', 'state': 'LA', 'position': 'WR', 'height': 75.0, 'weight': '175', 'compRating': '0.9257', 'compStars': 4, 'nationalRank': '151', 'positionRank': '20', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2007', 'playerName': 'Nevin McKenzie', 'highSchool': 'Trinity Valley C.C.', 'city': 'Athens', 'state': 'TX', 'position': 'S', 'height': 74.0, 'weight': '210', 'compRating': '0.9111', 'compStars': 4, 'nationalRank': '16', 'positionRank': '5', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2007', 'playerName': 'Todd Campbell', 'highSchool': 'Franklin', 'city': 'Franklin', 'state': 'TN', 'position': 'WR', 'height': 72.0, 'weight': '185', 'compRating': '0.9014', 'compStars': 4, 'nationalRank': '190', 'positionRank': '25', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2007', 'playerName': 'DeAngelo Willingham', 'highSchool': 'College of the Desert', 'city': 'Palm Desert', 'state': 'CA', 'position': 'CB', 'height': 72.0, 'weight': '205', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '22', 'positionRank': '2', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2007', 'playerName': 'Darris Sawtelle', 'highSchool': 'Brother Rice', 'city': 'Bloomfield Hills', 'state': 'MI', 'position': 'OT', 'height': 78.0, 'weight': '295', 'compRating': '0.8986', 'compStars': 4, 'nationalRank': '207', 'positionRank': '16', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2007', 'playerName': 'Deshaun Barnes', 'highSchool': 'Lincoln', 'city': 'Tallahassee', 'state': 'FL', 'position': 'S', 'height': 74.0, 'weight': '195', 'compRating': '0.8889', 'compStars': 3, 'nationalRank': '244', 'positionRank': '16', 'stateRank': '39', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2007', 'playerName': 'Denarius Moore', 'highSchool': 'Tatum', 'city': 'Tatum', 'state': 'TX', 'position': 'WR', 'height': 73.0, 'weight': '194', 'compRating': '0.8889', 'compStars': 3, 'nationalRank': '245', 'positionRank': '31', 'stateRank': '31', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2007', 'playerName': 'Chris Walker', 'highSchool': 'Christian Brothers', 'city': 'Memphis', 'state': 'TN', 'position': 'WDE', 'height': 75.0, 'weight': '245', 'compRating': '0.8875', 'compStars': 3, 'nationalRank': '263', 'positionRank': '10', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2007', 'playerName': 'Daryl Vereen', 'highSchool': 'North Mecklenburg', 'city': 'Huntersville', 'state': 'NC', 'position': 'OLB', 'height': 71.0, 'weight': '221', 'compRating': '0.8795', 'compStars': 3, 'nationalRank': '306', 'positionRank': '20', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2007', 'playerName': 'C.J. Fleming', 'highSchool': 'Highland Springs', 'city': 'Highland Springs', 'state': 'VA', 'position': 'CB', 'height': 71.0, 'weight': '165', 'compRating': '0.8795', 'compStars': 3, 'nationalRank': '308', 'positionRank': '23', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2007', 'playerName': 'William Brimfield', 'highSchool': 'Hunter-kinard-tyler', 'city': 'Neeses', 'state': 'SC', 'position': 'DT', 'height': 77.0, 'weight': '287', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '322', 'positionRank': '28', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2007', 'playerName': 'Donald Langley', 'highSchool': 'Seneca Valley', 'city': 'Germantown', 'state': 'MD', 'position': 'DT', 'height': 74.0, 'weight': '295', 'compRating': '0.8736', 'compStars': 3, 'nationalRank': '365', 'positionRank': '33', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2007', 'playerName': 'Anthony Anderson', 'highSchool': 'Austin-East', 'city': 'Knoxville', 'state': 'TN', 'position': 'CB', 'height': 71.0, 'weight': '185', 'compRating': '0.8733', 'compStars': 3, 'nationalRank': '369', 'positionRank': '27', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2007', 'playerName': 'B.J. Coleman', 'highSchool': 'McCallie School', 'city': 'Chattanooga', 'state': 'TN', 'position': 'PRO', 'height': 76.0, 'weight': '180', 'compRating': '0.8719', 'compStars': 3, 'nationalRank': '392', 'positionRank': '15', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2007', 'playerName': 'Rufus Williams', 'highSchool': 'Astronaut', 'city': 'Titusville', 'state': 'FL', 'position': 'WDE', 'height': 75.0, 'weight': '225', 'compRating': '0.8701', 'compStars': 3, 'nationalRank': '408', 'positionRank': '18', 'stateRank': '54', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2007', 'playerName': 'Kevin Cooper', 'highSchool': 'Baylor School', 'city': 'Chattanooga', 'state': 'TN', 'position': 'FB', 'height': 72.0, 'weight': '242', 'compRating': '0.8670', 'compStars': 3, 'nationalRank': '430', 'positionRank': '6', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2007', 'playerName': 'Dennis Rogan', 'highSchool': 'Fulton', 'city': 'Knoxville', 'state': 'TN', 'position': 'APB', 'height': 71.0, 'weight': '167', 'compRating': '0.8639', 'compStars': 3, 'nationalRank': '460', 'positionRank': '7', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2007', 'playerName': 'Savion Frazier', 'highSchool': 'Gar-field', 'city': 'Woodbridge', 'state': 'VA', 'position': 'OLB', 'height': 72.0, 'weight': '221', 'compRating': '0.8576', 'compStars': 3, 'nationalRank': '506', 'positionRank': '30', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2007', 'playerName': 'Josh Hawkins', 'highSchool': 'Loudon', 'city': 'Loudon', 'state': 'TN', 'position': 'RB', 'height': 73.0, 'weight': '190', 'compRating': '0.8573', 'compStars': 3, 'nationalRank': '510', 'positionRank': '43', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2007', 'playerName': 'Art Evans', 'highSchool': 'Victory Christian Academy', 'city': 'Lakeland', 'state': 'FL', 'position': 'CB', 'height': 72.0, 'weight': '185', 'compRating': '0.8559', 'compStars': 3, 'nationalRank': '521', 'positionRank': '32', 'stateRank': '70', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2007', 'playerName': 'Tyler Maples', 'highSchool': 'Maryville', 'city': 'Maryville', 'state': 'TN', 'position': 'WR', 'height': 74.0, 'weight': '180', 'compRating': '0.8323', 'compStars': 3, 'nationalRank': '964', 'positionRank': '107', 'stateRank': '29', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2007', 'playerName': 'Cory Hall', 'highSchool': 'Brainerd', 'city': 'Chattanooga', 'state': 'TN', 'position': 'SDE', 'height': 77.0, 'weight': '255', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '70', 'stateRank': '35', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2007', 'playerName': 'Rolando Melancon', 'highSchool': 'Lutcher', 'city': 'Lutcher', 'state': 'LA', 'position': 'DT', 'height': 74.0, 'weight': '260', 'compRating': '0.9326', 'compStars': 4, 'nationalRank': '131', 'positionRank': '16', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2007', 'playerName': 'Rae Sykes', 'highSchool': 'Alcoa', 'city': 'Alcoa', 'state': 'TN', 'position': 'WDE', 'height': 76.0, 'weight': '240', 'compRating': '0.8906', 'compStars': 4, 'nationalRank': '230', 'positionRank': '7', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2017', 'playerName': 'Isaiah Wilson', 'highSchool': 'Poly Prep', 'city': 'Brooklyn', 'state': 'NY', 'position': 'OT', 'height': 79.0, 'weight': '350', 'compRating': '0.9904', 'compStars': 5, 'nationalRank': '16', 'positionRank': '5', 'stateRank': '1', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '39', '247positionRank': '8', '247stateRank': '1'}, {'school': 'georgia', 'year': '2017', 'playerName': 'Richard LeCounte III', 'highSchool': 'Liberty County', 'city': 'Hinesville', 'state': 'GA', 'position': 'S', 'height': 70.5, 'weight': '174', 'compRating': '0.9876', 'compStars': 5, 'nationalRank': '25', 'positionRank': '2', 'stateRank': '3', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '17', '247positionRank': '1', '247stateRank': '1'}, {'school': 'georgia', 'year': '2017', 'playerName': "D'Andre Swift", 'highSchool': "St. Joseph's", 'city': 'Philadelphia', 'state': 'PA', 'position': 'RB', 'height': 68.75, 'weight': '222', 'compRating': '0.9838', 'compStars': 5, 'nationalRank': '33', 'positionRank': '4', 'stateRank': '1', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '38', '247positionRank': '3', '247stateRank': '1'}, {'school': 'georgia', 'year': '2017', 'playerName': 'Jake Fromm', 'highSchool': 'Houston County', 'city': 'Warner Robins', 'state': 'GA', 'position': 'PRO', 'height': 73.25, 'weight': '229', 'compRating': '0.9794', 'compStars': 4, 'nationalRank': '44', 'positionRank': '3', 'stateRank': '4', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '51', '247positionRank': '2', '247stateRank': '5'}, {'school': 'georgia', 'year': '2017', 'playerName': 'Andrew Thomas', 'highSchool': 'Pace Academy', 'city': 'Atlanta', 'state': 'GA', 'position': 'OT', 'height': 76.63, 'weight': '335', 'compRating': '0.9791', 'compStars': 4, 'nationalRank': '45', 'positionRank': '9', 'stateRank': '5', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '37', '247positionRank': '7', '247stateRank': '4'}, {'school': 'georgia', 'year': '2017', 'playerName': 'Deangelo Gibbs', 'highSchool': 'Grayson', 'city': 'Loganville', 'state': 'GA', 'position': 'S', 'height': 74.0, 'weight': '204', 'compRating': '0.9770', 'compStars': 4, 'nationalRank': '49', 'positionRank': '4', 'stateRank': '6', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '68', '247positionRank': '8', '247stateRank': '8'}, {'school': 'georgia', 'year': '2017', 'playerName': 'Netori Johnson', 'highSchool': 'Cedar Grove', 'city': 'Ellenwood', 'state': 'GA', 'position': 'OG', 'height': 75.25, 'weight': '341', 'compRating': '0.9588', 'compStars': 4, 'nationalRank': '87', 'positionRank': '6', 'stateRank': '10', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '115', '247positionRank': '7', '247stateRank': '12'}, {'school': 'georgia', 'year': '2017', 'playerName': 'Robert Beal', 'highSchool': 'Peachtree Ridge', 'city': 'Suwanee', 'state': 'GA', 'position': 'WDE', 'height': 75.5, 'weight': '230', 'compRating': '0.9498', 'compStars': 4, 'nationalRank': '107', 'positionRank': '8', 'stateRank': '11', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '147', '247positionRank': '11', '247stateRank': '13'}, {'school': 'georgia', 'year': '2017', 'playerName': 'Jeremiah Holloman', 'highSchool': 'Newton', 'city': 'Covington', 'state': 'GA', 'position': 'WR', 'height': 74.0, 'weight': '195', 'compRating': '0.9431', 'compStars': 4, 'nationalRank': '125', 'positionRank': '18', 'stateRank': '12', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '98', '247positionRank': '16', '247stateRank': '10'}, {'school': 'georgia', 'year': '2017', 'playerName': 'Mark Webb', 'highSchool': 'Archbishop Wood', 'city': 'Warminster', 'state': 'PA', 'position': 'WR', 'height': 74.0, 'weight': '195', 'compRating': '0.9387', 'compStars': 4, 'nationalRank': '135', 'positionRank': '21', 'stateRank': '6', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '118', '247positionRank': '19', '247stateRank': '6'}, {'school': 'georgia', 'year': '2017', 'playerName': 'Jaden Hunter', 'highSchool': 'Westlake', 'city': 'Atlanta', 'state': 'GA', 'position': 'OLB', 'height': 74.0, 'weight': '212', 'compRating': '0.9379', 'compStars': 4, 'nationalRank': '137', 'positionRank': '9', 'stateRank': '13', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '238', '247positionRank': '13', '247stateRank': '18'}, {'school': 'georgia', 'year': '2017', 'playerName': 'Tray Bishop', 'highSchool': 'Terrell County', 'city': 'Dawson', 'state': 'GA', 'position': 'CB', 'height': 74.0, 'weight': '200', 'compRating': '0.9346', 'compStars': 4, 'nationalRank': '153', 'positionRank': '20', 'stateRank': '14'}, {'school': 'georgia', 'year': '2017', 'playerName': 'Malik Herring', 'highSchool': 'Mary Persons', 'city': 'Forsyth', 'state': 'GA', 'position': 'SDE', 'height': 75.5, 'weight': '265', 'compRating': '0.9345', 'compStars': 4, 'nationalRank': '154', 'positionRank': '4', 'stateRank': '15', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '175', '247positionRank': '4', '247stateRank': '16'}, {'school': 'georgia', 'year': '2017', 'playerName': 'Nate McBride', 'highSchool': 'Vidalia Comprehensive', 'city': 'Vidalia', 'state': 'GA', 'position': 'ILB', 'height': 73.25, 'weight': '223', 'compRating': '0.9310', 'compStars': 4, 'nationalRank': '163', 'positionRank': '6', 'stateRank': '16', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '13', '247stateRank': '25'}, {'school': 'georgia', 'year': '2017', 'playerName': 'William Poole III', 'highSchool': 'Hapeville Charter', 'city': 'Atlanta', 'state': 'GA', 'position': 'CB', 'height': 71.5, 'weight': '180', 'compRating': '0.9224', 'compStars': 4, 'nationalRank': '195', 'positionRank': '28', 'stateRank': '20', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '42', '247stateRank': '44'}, {'school': 'georgia', 'year': '2017', 'playerName': 'Walter Grant', 'highSchool': 'Cairo', 'city': 'Cairo', 'state': 'GA', 'position': 'OLB', 'height': 76.0, 'weight': '236', 'compRating': '0.9217', 'compStars': 4, 'nationalRank': '202', 'positionRank': '11', 'stateRank': '21', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '15', '247stateRank': '20'}, {'school': 'georgia', 'year': '2017', 'playerName': "D'Marcus Hayes", 'highSchool': 'Mississippi Gulf Coast C.C.', 'city': 'Perkinston', 'state': 'MS', 'position': 'OT', 'height': 78.0, 'weight': '320', 'compRating': '0.8950', 'compStars': 4, 'nationalRank': '14', 'positionRank': '2', 'stateRank': '5', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '31', '247positionRank': '5', '247stateRank': '12'}, {'school': 'georgia', 'year': '2017', 'playerName': 'Trey Blount', 'highSchool': 'Pace Academy', 'city': 'Atlanta', 'state': 'GA', 'position': 'WR', 'height': 74.0, 'weight': '185', 'compRating': '0.8919', 'compStars': 4, 'nationalRank': '324', 'positionRank': '48', 'stateRank': '33', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '56', '247stateRank': '47'}, {'school': 'georgia', 'year': '2017', 'playerName': 'Monty Rice', 'highSchool': 'James Clemens', 'city': 'Madison', 'state': 'AL', 'position': 'ILB', 'height': 73.0, 'weight': '227', 'compRating': '0.8906', 'compStars': 4, 'nationalRank': '334', 'positionRank': '18', 'stateRank': '16', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '22', '247stateRank': '18'}, {'school': 'georgia', 'year': '2017', 'playerName': 'Ameer Speed', 'highSchool': 'Sandalwood', 'city': 'Jacksonville', 'state': 'FL', 'position': 'CB', 'height': 75.0, 'weight': '195', 'compRating': '0.8873', 'compStars': 3, 'nationalRank': '356', 'positionRank': '42', 'stateRank': '44', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '46', '247stateRank': '63'}, {'school': 'georgia', 'year': '2017', 'playerName': 'Justin Shaffer', 'highSchool': 'Cedar Grove', 'city': 'Ellenwood', 'state': 'GA', 'position': 'OG', 'height': 77.0, 'weight': '356', 'compRating': '0.8828', 'compStars': 3, 'nationalRank': '388', 'positionRank': '23', 'stateRank': '39', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '21', '247stateRank': '34'}, {'school': 'georgia', 'year': '2017', 'playerName': 'Latavious Brini', 'highSchool': 'Mater Academy Charter', 'city': 'Hialeah', 'state': 'FL', 'position': 'CB', 'height': 74.0, 'weight': '200', 'compRating': '0.8681', 'compStars': 3, 'nationalRank': '509', 'positionRank': '50', 'stateRank': '66', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '41', '247stateRank': '52'}, {'school': 'georgia', 'year': '2017', 'playerName': 'Eric Stokes', 'highSchool': 'Eastside', 'city': 'Covington', 'state': 'GA', 'position': 'CB', 'height': 72.0, 'weight': '170', 'compRating': '0.8578', 'compStars': 3, 'nationalRank': '669', 'positionRank': '63', 'stateRank': '65', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '39', '247stateRank': '42'}, {'school': 'georgia', 'year': '2017', 'playerName': 'Matt Landers', 'highSchool': 'St. Petersburg', 'city': 'Saint Petersburg', 'state': 'FL', 'position': 'WR', 'height': 77.0, 'weight': '182', 'compRating': '0.8570', 'compStars': 3, 'nationalRank': '681', 'positionRank': '98', 'stateRank': '89', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '63', '247stateRank': '62'}, {'school': 'georgia', 'year': '2017', 'playerName': 'Ahkil Crumpton', 'highSchool': 'Los Angeles Valley College', 'city': 'Van Nuys', 'state': 'CA', 'position': 'WR', 'height': 68.0, 'weight': '160', 'compRating': '0.7900', 'compStars': 2, 'nationalRank': '236', 'positionRank': '25', 'stateRank': '64', '247Rating': ' 79 ', '247Stars': 2, '247nationalRank': '200', '247positionRank': '26', '247stateRank': '51'}, {'school': 'georgia', 'year': '2017', 'playerName': 'Devonte Wyatt', 'highSchool': 'Towers', 'city': 'Decatur', 'state': 'GA', 'position': 'DT', 'height': 75.0, 'weight': '300', 'compRating': '0.8993', 'compStars': 4, 'nationalRank': '278', 'positionRank': '17', 'stateRank': '27', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '6', '247positionRank': '3', '247stateRank': '1'}, {'school': 'auburn', 'year': '2016', 'playerName': 'Derrick Brown', 'highSchool': 'Lanier', 'city': 'Buford', 'state': 'GA', 'position': 'DT', 'height': 75.75, 'weight': '317', 'compRating': '0.9964', 'compStars': 5, 'nationalRank': '9', 'positionRank': '4', 'stateRank': '1', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '6', '247positionRank': '3', '247stateRank': '1'}, {'school': 'auburn', 'year': '2016', 'playerName': 'Marlon Davidson', 'highSchool': 'Greenville', 'city': 'Greenville', 'state': 'AL', 'position': 'SDE', 'height': 76.0, 'weight': '260', 'compRating': '0.9813', 'compStars': 4, 'nationalRank': '32', 'positionRank': '4', 'stateRank': '3', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '59', '247positionRank': '6', '247stateRank': '3'}, {'school': 'auburn', 'year': '2016', 'playerName': 'Nate Craig-Myers', 'highSchool': 'Tampa Catholic', 'city': 'Tampa', 'state': 'FL', 'position': 'WR', 'height': 74.0, 'weight': '205', 'compRating': '0.9767', 'compStars': 4, 'nationalRank': '45', 'positionRank': '6', 'stateRank': '6', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '118', '247positionRank': '16', '247stateRank': '16'}, {'school': 'auburn', 'year': '2016', 'playerName': 'Antwuan Jackson Jr.', 'highSchool': 'Cedar Grove', 'city': 'Ellenwood', 'state': 'GA', 'position': 'DT', 'height': 74.25, 'weight': '305', 'compRating': '0.9739', 'compStars': 4, 'nationalRank': '51', 'positionRank': '7', 'stateRank': '5', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '1', '247positionRank': '1', '247stateRank': '1'}, {'school': 'auburn', 'year': '2016', 'playerName': 'Kyle Davis', 'highSchool': 'Archer', 'city': 'Lawrenceville', 'state': 'GA', 'position': 'WR', 'height': 73.5, 'weight': '218', 'compRating': '0.9641', 'compStars': 4, 'nationalRank': '75', 'positionRank': '10', 'stateRank': '9', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '54', '247positionRank': '6', '247stateRank': '8'}, {'school': 'auburn', 'year': '2016', 'playerName': 'Eli Stove', 'highSchool': 'Niceville', 'city': 'Niceville', 'state': 'FL', 'position': 'WR', 'height': 73.0, 'weight': '178', 'compRating': '0.9431', 'compStars': 4, 'nationalRank': '124', 'positionRank': '20', 'stateRank': '20', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '49', '247stateRank': '38'}, {'school': 'auburn', 'year': '2016', 'playerName': 'Prince Sammons', 'highSchool': 'Cincinnati Hills Christian Academy', 'city': 'Cincinnati', 'state': 'OH', 'position': 'SDE', 'height': 80.0, 'weight': '280', 'compRating': '0.9192', 'compStars': 4, 'nationalRank': '208', 'positionRank': '10', 'stateRank': '10', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '14', '247stateRank': '12'}, {'school': 'auburn', 'year': '2016', 'playerName': 'Woody Barrett', 'highSchool': 'West Orange', 'city': 'Winter Garden', 'state': 'FL', 'position': 'DUAL', 'height': 74.0, 'weight': '225', 'compRating': '0.9164', 'compStars': 4, 'nationalRank': '218', 'positionRank': '6', 'stateRank': '31', '247Rating': ' 84 ', '247Stars': 3, '247nationalRank': '105', '247positionRank': '7', '247stateRank': '23'}, {'school': 'auburn', 'year': '2016', 'playerName': 'Landon Rice', 'highSchool': 'Calhoun', 'city': 'Calhoun', 'state': 'GA', 'position': 'TE', 'height': 77.0, 'weight': '250', 'compRating': '0.9158', 'compStars': 4, 'nationalRank': '222', 'positionRank': '8', 'stateRank': '20'}, {'school': 'auburn', 'year': '2016', 'playerName': 'John Broussard Jr.', 'highSchool': 'Central', 'city': 'Phenix City', 'state': 'AL', 'position': 'CB', 'height': 72.0, 'weight': '164', 'compRating': '0.9049', 'compStars': 4, 'nationalRank': '274', 'positionRank': '26', 'stateRank': '7', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '55', '247stateRank': '23'}, {'school': 'auburn', 'year': '2016', 'playerName': 'Kam Martin', 'highSchool': 'Memorial', 'city': 'Port Arthur', 'state': 'TX', 'position': 'APB', 'height': 70.0, 'weight': '178', 'compRating': '0.9040', 'compStars': 4, 'nationalRank': '278', 'positionRank': '7', 'stateRank': '44', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '9', '247stateRank': '79'}, {'school': 'auburn', 'year': '2016', 'playerName': 'Nick Coe', 'highSchool': 'Asheboro', 'city': 'Asheboro', 'state': 'NC', 'position': 'SDE', 'height': 77.5, 'weight': '269', 'compRating': '0.9034', 'compStars': 4, 'nationalRank': '283', 'positionRank': '13', 'stateRank': '10', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '55', '247positionRank': '4', '247stateRank': '3'}, {'school': 'auburn', 'year': '2016', 'playerName': 'Paul James III', 'highSchool': 'Copiah-Lincoln C.C.', 'city': 'Wesson', 'state': 'MS', 'position': 'WDE', 'height': 76.0, 'weight': '255', 'compRating': '0.8954', 'compStars': 4, 'nationalRank': '17', 'positionRank': '2', 'stateRank': '3', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '15', '247positionRank': '1', '247stateRank': '2'}, {'school': 'auburn', 'year': '2016', 'playerName': 'Brodarious Hamm', 'highSchool': 'Spalding', 'city': 'Griffin', 'state': 'GA', 'position': 'OT', 'height': 77.0, 'weight': '320', 'compRating': '0.8893', 'compStars': 3, 'nationalRank': '343', 'positionRank': '33', 'stateRank': '28', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '47', '247stateRank': '47'}, {'school': 'auburn', 'year': '2016', 'playerName': 'John Franklin III', 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'ATH', 'height': 74.0, 'weight': '180', 'compRating': '0.8885', 'compStars': 3, 'nationalRank': '23', 'positionRank': '1', 'stateRank': '4', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '28', '247stateRank': '144'}, {'school': 'auburn', 'year': '2016', 'playerName': 'Marlon Character Jr.', 'highSchool': 'Grady', 'city': 'Atlanta', 'state': 'GA', 'position': 'S', 'height': 72.0, 'weight': '170', 'compRating': '0.8883', 'compStars': 3, 'nationalRank': '348', 'positionRank': '14', 'stateRank': '29', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '28', '247positionRank': '1', '247stateRank': '9'}, {'school': 'auburn', 'year': '2016', 'playerName': 'Tre Threat', 'highSchool': 'Spanish Fort', 'city': 'Spanish Fort', 'state': 'AL', 'position': 'OLB', 'height': 74.0, 'weight': '235', 'compRating': '0.8812', 'compStars': 3, 'nationalRank': '390', 'positionRank': '26', 'stateRank': '12', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '26', '247stateRank': '11'}, {'school': 'auburn', 'year': '2016', 'playerName': 'Jayvaughn Myers', 'highSchool': 'Pasco', 'city': 'Dade City', 'state': 'FL', 'position': 'CB', 'height': 73.0, 'weight': '185', 'compRating': '0.8810', 'compStars': 3, 'nationalRank': '394', 'positionRank': '38', 'stateRank': '53', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '30', '247stateRank': '46'}, {'school': 'auburn', 'year': '2016', 'playerName': 'Stephen Davis Jr.', 'highSchool': 'Dutch Fork', 'city': 'Irmo', 'state': 'SC', 'position': 'ATH', 'height': 76.0, 'weight': '215', 'compRating': '0.8802', 'compStars': 3, 'nationalRank': '404', 'positionRank': '20', 'stateRank': '7', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '15', '247stateRank': '6'}, {'school': 'auburn', 'year': '2016', 'playerName': 'Malik Miller', 'highSchool': 'Madison Academy', 'city': 'Madison', 'state': 'AL', 'position': 'RB', 'height': 71.0, 'weight': '229', 'compRating': '0.8752', 'compStars': 3, 'nationalRank': '444', 'positionRank': '23', 'stateRank': '15', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '19', '247stateRank': '15'}, {'school': 'auburn', 'year': '2016', 'playerName': 'Marquis McClain', 'highSchool': 'Crestview', 'city': 'Crestview', 'state': 'FL', 'position': 'WR', 'height': 74.0, 'weight': '209', 'compRating': '0.8605', 'compStars': 3, 'nationalRank': '618', 'positionRank': '98', 'stateRank': '88', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '159', '247stateRank': '136'}, {'school': 'auburn', 'year': '2016', 'playerName': 'Tashawn Manning', 'highSchool': 'Wekiva', 'city': 'Apopka', 'state': 'FL', 'position': 'DT', 'height': 76.0, 'weight': '270', 'compRating': '0.8433', 'compStars': 3, 'nationalRank': '985', 'positionRank': '61', 'stateRank': '139', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '49', '247stateRank': '91'}, {'school': 'auburn', 'year': '2016', 'playerName': 'Daniel Thomas', 'highSchool': 'Robert E. Lee', 'city': 'Montgomery', 'state': 'AL', 'position': 'S', 'height': 72.0, 'weight': '190', 'compRating': '0.8233', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '100', 'stateRank': '53', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '40', '247stateRank': '24'}, {'school': 'lsu', 'year': '2015', 'playerName': 'Kevin Toliver II', 'highSchool': 'Trinity Christian Academy', 'city': 'Jacksonville', 'state': 'FL', 'position': 'CB', 'height': 74.0, 'weight': '185', 'compRating': '0.9950', 'compStars': 5, 'nationalRank': '9', 'positionRank': '2', 'stateRank': '5', '247Rating': ' 99 ', '247Stars': 5, '247nationalRank': '9', '247positionRank': '2', '247stateRank': '4'}, {'school': 'lsu', 'year': '2015', 'playerName': 'Tyron Johnson', 'highSchool': 'Warren Easton', 'city': 'New Orleans', 'state': 'LA', 'position': 'WR', 'height': 73.0, 'weight': '191', 'compRating': '0.9879', 'compStars': 5, 'nationalRank': '28', 'positionRank': '5', 'stateRank': '1', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '39', '247positionRank': '5', '247stateRank': '2'}, {'school': 'lsu', 'year': '2015', 'playerName': 'Maea Teuhema', 'highSchool': 'Keller', 'city': 'Keller', 'state': 'TX', 'position': 'OG', 'height': 76.5, 'weight': '340', 'compRating': '0.9839', 'compStars': 5, 'nationalRank': '37', 'positionRank': '2', 'stateRank': '6', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '34', '247positionRank': '2', '247stateRank': '6'}, {'school': 'lsu', 'year': '2015', 'playerName': 'Derrius Guice', 'highSchool': 'Catholic', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'RB', 'height': 70.5, 'weight': '213', 'compRating': '0.9793', 'compStars': 4, 'nationalRank': '45', 'positionRank': '5', 'stateRank': '2', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '70', '247positionRank': '5', '247stateRank': '3'}, {'school': 'lsu', 'year': '2015', 'playerName': 'Donte Jackson', 'highSchool': 'Riverdale', 'city': 'New Orleans', 'state': 'LA', 'position': 'ATH', 'height': 71.0, 'weight': '164', 'compRating': '0.9761', 'compStars': 4, 'nationalRank': '50', 'positionRank': '3', 'stateRank': '3', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '10', '247positionRank': '1', '247stateRank': '1'}, {'school': 'lsu', 'year': '2015', 'playerName': 'Arden Key', 'highSchool': 'Hapeville Charter', 'city': 'Atlanta', 'state': 'GA', 'position': 'WDE', 'height': 77.0, 'weight': '230', 'compRating': '0.9593', 'compStars': 4, 'nationalRank': '87', 'positionRank': '4', 'stateRank': '9', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '37', '247positionRank': '3', '247stateRank': '6'}, {'school': 'lsu', 'year': '2015', 'playerName': 'Toby Weathersby', 'highSchool': 'Westfield', 'city': 'Houston', 'state': 'TX', 'position': 'OT', 'height': 76.5, 'weight': '295', 'compRating': '0.9522', 'compStars': 4, 'nationalRank': '103', 'positionRank': '6', 'stateRank': '15', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '149', '247positionRank': '12', '247stateRank': '20'}, {'school': 'lsu', 'year': '2015', 'playerName': 'Chidi Okeke', 'highSchool': 'Faith Baptist Christian Academy', 'city': 'Ludowici', 'state': 'GA', 'position': 'OT', 'height': 78.0, 'weight': '305', 'compRating': '0.9521', 'compStars': 4, 'nationalRank': '104', 'positionRank': '7', 'stateRank': '11', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '22', '247positionRank': '2', '247stateRank': '2'}, {'school': 'lsu', 'year': '2015', 'playerName': 'Derrick Dillon', 'highSchool': 'Pine', 'city': 'Franklinton', 'state': 'LA', 'position': 'WR', 'height': 71.0, 'weight': '173', 'compRating': '0.9272', 'compStars': 4, 'nationalRank': '166', 'positionRank': '20', 'stateRank': '6', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '91', '247positionRank': '9', '247stateRank': '5'}, {'school': 'lsu', 'year': '2015', 'playerName': 'Xavier Lewis', 'highSchool': 'East St. John', 'city': 'Reserve', 'state': 'LA', 'position': 'CB', 'height': 71.0, 'weight': '188', 'compRating': '0.9242', 'compStars': 4, 'nationalRank': '175', 'positionRank': '22', 'stateRank': '8', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '144', '247positionRank': '15', '247stateRank': '8'}, {'school': 'lsu', 'year': '2015', 'playerName': 'Nick Brossette', 'highSchool': 'University Lab', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'RB', 'height': 72.0, 'weight': '207', 'compRating': '0.9224', 'compStars': 4, 'nationalRank': '180', 'positionRank': '16', 'stateRank': '9', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '216', '247positionRank': '19', '247stateRank': '11'}, {'school': 'lsu', 'year': '2015', 'playerName': 'David Ducre', 'highSchool': 'Lakeshore', 'city': 'Mandeville', 'state': 'LA', 'position': 'FB', 'height': 71.0, 'weight': '238', 'compRating': '0.9156', 'compStars': 4, 'nationalRank': '210', 'positionRank': '1', 'stateRank': '10', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '186', '247positionRank': '1', '247stateRank': '9'}, {'school': 'lsu', 'year': '2015', 'playerName': 'Jazz Ferguson', 'highSchool': 'West Feliciana', 'city': 'Saint Francisville', 'state': 'LA', 'position': 'WR', 'height': 77.0, 'weight': '205', 'compRating': '0.8983', 'compStars': 4, 'nationalRank': '300', 'positionRank': '36', 'stateRank': '12', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '37', '247stateRank': '15'}, {'school': 'lsu', 'year': '2015', 'playerName': 'Adrian Magee', 'highSchool': 'Franklinton', 'city': 'Franklinton', 'state': 'LA', 'position': 'OT', 'height': 77.0, 'weight': '315', 'compRating': '0.8772', 'compStars': 3, 'nationalRank': '427', 'positionRank': '45', 'stateRank': '21', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '28', '247stateRank': '12'}, {'school': 'lsu', 'year': '2015', 'playerName': 'George Brown', 'highSchool': 'Winton Woods', 'city': 'Cincinnati', 'state': 'OH', 'position': 'OT', 'height': 78.0, 'weight': '290', 'compRating': '0.8721', 'compStars': 3, 'nationalRank': '476', 'positionRank': '52', 'stateRank': '25', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '83', '247stateRank': '36'}, {'school': 'lsu', 'year': '2015', 'playerName': 'Isaiah Washington', 'highSchool': 'Edna Karr', 'city': 'New Orleans', 'state': 'LA', 'position': 'WDE', 'height': 76.0, 'weight': '240', 'compRating': '0.8711', 'compStars': 3, 'nationalRank': '493', 'positionRank': '22', 'stateRank': '25'}, {'school': 'lsu', 'year': '2015', 'playerName': "Bry'Keithon Mouton", 'highSchool': 'Acadiana', 'city': 'Lafayette', 'state': 'LA', 'position': 'TE', 'height': 73.0, 'weight': '230', 'compRating': '0.8590', 'compStars': 3, 'nationalRank': '667', 'positionRank': '24', 'stateRank': '34', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '28', '247stateRank': '44'}, {'school': 'lsu', 'year': '2015', 'playerName': 'Lanard Fournette', 'highSchool': 'St. Augustine', 'city': 'New Orleans', 'state': 'LA', 'position': 'ATH', 'height': 69.0, 'weight': '170', 'compRating': '0.8381', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '98', 'stateRank': '58', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '117', '247stateRank': '78'}, {'school': 'lsu', 'year': '2015', 'playerName': 'Hanner Shipley', 'highSchool': 'Marble Falls', 'city': 'Marble Falls', 'state': 'TX', 'position': 'TE', 'height': 77.0, 'weight': '283', 'compRating': '0.8366', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '46', 'stateRank': '147', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '45', '247stateRank': '143'}, {'school': 'lsu', 'year': '2015', 'playerName': 'Justin McMillan', 'highSchool': 'Cedar Hill', 'city': 'Cedar Hill', 'state': 'TX', 'position': 'DUAL', 'height': 73.5, 'weight': '170', 'compRating': '0.8266', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '35', 'stateRank': '175', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '46', '247stateRank': '201'}, {'school': 'lsu', 'year': '2015', 'playerName': 'Foster Moreau', 'highSchool': 'Jesuit', 'city': 'New Orleans', 'state': 'LA', 'position': 'TE', 'height': 77.0, 'weight': '225', 'compRating': '0.8025', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '74', 'stateRank': '86', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '46', '247stateRank': '67'}, {'school': 'lsu', 'year': '2015', 'playerName': 'Blake Ferguson', 'highSchool': 'Buford', 'city': 'Buford', 'state': 'GA', 'position': 'LS', 'height': 73.0, 'weight': '235', 'compRating': '0.7762', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '2', 'stateRank': '235', '247Rating': ' 76 ', '247Stars': 2, '247positionRank': '2', '247stateRank': '223'}, {'school': 'lsu', 'year': '2015', 'playerName': 'Josh Growden', 'highSchool': 'ProKick Australia', 'city': 'Australia', 'state': 'AUST', 'position': 'P', 'height': 74.0, 'weight': '190', 'compRating': '0.7743', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '15', 'stateRank': '1', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '5', '247stateRank': '1'}, {'school': 'lsu', 'year': '2015', 'playerName': 'Brandon Martin', 'highSchool': 'Prime Prep Academy', 'city': 'Dallas', 'state': 'TX', 'position': 'WR', 'height': 76.5, 'weight': '200', 'compRating': '0.8894', 'compStars': 3, 'nationalRank': '347', 'positionRank': '46', 'stateRank': '13', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '28', '247positionRank': '1', '247stateRank': '10'}, {'school': 'south-carolina', 'year': '2005', 'playerName': 'Shea McKeen', 'highSchool': 'Hun School', 'city': 'Princeton', 'state': 'NJ', 'position': 'TE', 'height': 78.0, 'weight': '265', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '223', 'positionRank': '10', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2005', 'playerName': 'Jared Cook', 'highSchool': 'North Gwinnett', 'city': 'Suwanee', 'state': 'GA', 'position': 'TE', 'height': 77.0, 'weight': '202', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '276', 'positionRank': '14', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2005', 'playerName': 'Freddie Brown', 'highSchool': 'Byrnes', 'city': 'Duncan', 'state': 'SC', 'position': 'WR', 'height': 76.0, 'weight': '195', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '323', 'positionRank': '37', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2005', 'playerName': 'Brandyn Young', 'highSchool': 'Decatur', 'city': 'Decatur', 'state': 'GA', 'position': 'ATH', 'height': 72.0, 'weight': '190', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '441', 'positionRank': '31', 'stateRank': '28', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2005', 'playerName': 'Bobby Wallace', 'highSchool': 'Conway', 'city': 'Conway', 'state': 'SC', 'position': 'APB', 'height': 68.0, 'weight': '185', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '538', 'positionRank': '9', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2005', 'playerName': 'Damien Wright', 'highSchool': 'Crestwood', 'city': 'Sumter', 'state': 'SC', 'position': 'S', 'height': 74.0, 'weight': '190', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '568', 'positionRank': '36', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2005', 'playerName': 'Taylor Rank', 'highSchool': 'Evergreen', 'city': 'Vancouver', 'state': 'WA', 'position': 'S', 'height': 72.0, 'weight': '182', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '587', 'positionRank': '37', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2005', 'playerName': 'Gerrod Sinclair', 'highSchool': 'Mandarin', 'city': 'Jacksonville', 'state': 'FL', 'position': 'S', 'height': 72.0, 'weight': '208', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '625', 'positionRank': '41', 'stateRank': '79', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2005', 'playerName': 'Dakota Walker', 'highSchool': 'Oakcrest', 'city': 'Mays Landing', 'state': 'NJ', 'position': 'OLB', 'height': 76.0, 'weight': '225', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '627', 'positionRank': '50', 'stateRank': '22', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2005', 'playerName': 'Nathan Pepper', 'highSchool': 'Greenville', 'city': 'Greenville', 'state': 'SC', 'position': 'SDE', 'height': 73.0, 'weight': '247', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '666', 'positionRank': '43', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2005', 'playerName': 'Kerry Bonds', 'highSchool': 'Lincoln', 'city': 'Tallahassee', 'state': 'FL', 'position': 'SDE', 'height': 75.0, 'weight': '232', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '684', 'positionRank': '44', 'stateRank': '84', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2005', 'playerName': 'Marvin Sapp', 'highSchool': 'Sandalwood', 'city': 'Jacksonville', 'state': 'FL', 'position': 'ILB', 'height': 73.0, 'weight': '215', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '687', 'positionRank': '39', 'stateRank': '85', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2005', 'playerName': 'Kenny McKinley', 'highSchool': 'South Cobb', 'city': 'Avondale Estates', 'state': 'GA', 'position': 'ATH', 'height': 72.0, 'weight': '166', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '753', 'positionRank': '58', 'stateRank': '40', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2005', 'playerName': 'Cade Thompson', 'highSchool': 'Maryville', 'city': 'Maryville', 'state': 'TN', 'position': 'PRO', 'height': 74.0, 'weight': '175', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '829', 'positionRank': '31', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2005', 'playerName': 'Lemuel Jeanpierre', 'highSchool': 'Timber Creek', 'city': 'Orlando', 'state': 'FL', 'position': 'DT', 'height': 76.0, 'weight': '255', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '938', 'positionRank': '52', 'stateRank': '105', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2005', 'playerName': 'Yvan Banag', 'highSchool': 'Buford', 'city': 'Buford', 'state': 'GA', 'position': 'S', 'height': 70.0, 'weight': '195', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': '980', 'positionRank': '59', 'stateRank': '55', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2005', 'playerName': 'Jarriel King', 'highSchool': 'N Charleston', 'city': 'North Charleston', 'state': 'SC', 'position': 'DT', 'height': 78.0, 'weight': '270', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '56', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2005', 'playerName': 'Brent Davis', 'highSchool': 'Mainland', 'city': 'Daytona Beach', 'state': 'FL', 'position': 'OLB', 'height': 74.0, 'weight': '190', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '81', 'stateRank': '121', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2005', 'playerName': 'Mychal Belcher', 'highSchool': 'Dorman', 'city': 'Roebuck', 'state': 'SC', 'position': 'ATH', 'height': 73.0, 'weight': '180', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '96', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2005', 'playerName': 'Jeremy Ware', 'highSchool': 'Lehigh Senior', 'city': 'Lehigh Acres', 'state': 'FL', 'position': 'CB', 'height': 71.0, 'weight': '180', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '148', 'stateRank': '192', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2005', 'playerName': 'Tommy Beecher', 'highSchool': 'Concord', 'city': 'Concord', 'state': 'NC', 'position': 'PRO', 'height': 73.0, 'weight': '199', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '56', 'stateRank': '43', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2005', 'playerName': 'Lemuel Jeanpierre', 'highSchool': 'Timber Creek', 'city': 'Orlando', 'state': 'FL', 'position': 'OG', 'height': 76.0, 'weight': '295', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2005', 'playerName': 'Ryan Succop', 'highSchool': 'Hickory', 'city': 'Hickory', 'state': 'NC', 'position': 'K', 'height': 74.0, 'weight': '220', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2005', 'playerName': 'O.J. Murdock', 'highSchool': 'Middleton', 'city': 'Tampa', 'state': 'FL', 'position': 'WR', 'height': 72.0, 'weight': '185', 'compRating': '0.9679', 'compStars': 4, 'nationalRank': '80', 'positionRank': '11', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2005', 'playerName': 'Carlos Thomas', 'highSchool': 'Banneker', 'city': 'Atlanta', 'state': 'GA', 'position': 'CB', 'height': 71.0, 'weight': '175', 'compRating': '0.9665', 'compStars': 4, 'nationalRank': '85', 'positionRank': '11', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2005', 'playerName': 'Jonathan Hannah', 'highSchool': 'South View', 'city': 'Hope Mills', 'state': 'NC', 'position': 'TE', 'height': 76.0, 'weight': '250', 'compRating': '0.9303', 'compStars': 4, 'nationalRank': '120', 'positionRank': '4', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2019', 'playerName': 'Jerrion Ealy', 'highSchool': 'Jackson Prep', 'city': 'Flowood', 'state': 'MS', 'position': 'RB', 'height': 70.0, 'weight': '200', 'compRating': '0.9870', 'compStars': 5, 'nationalRank': '29', 'positionRank': '3', 'stateRank': '3', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '26', '247positionRank': '3', '247stateRank': '3'}, {'school': 'ole-miss', 'year': '2019', 'playerName': 'Dannis Jackson', 'highSchool': 'Sumrall', 'city': 'Sumrall', 'state': 'MS', 'position': 'WR', 'height': 73.0, 'weight': '187', 'compRating': '0.9333', 'compStars': 4, 'nationalRank': '155', 'positionRank': '25', 'stateRank': '10', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '137', '247positionRank': '22', '247stateRank': '9'}, {'school': 'ole-miss', 'year': '2019', 'playerName': 'Jonathan Mingo', 'highSchool': 'Brandon', 'city': 'Brandon', 'state': 'MS', 'position': 'WR', 'height': 74.0, 'weight': '200', 'compRating': '0.9157', 'compStars': 4, 'nationalRank': '215', 'positionRank': '32', 'stateRank': '12', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '57', '247stateRank': '18'}, {'school': 'ole-miss', 'year': '2019', 'playerName': 'Lakia Henry', 'highSchool': 'Dodge City C.C.', 'city': 'Dodge City', 'state': 'KS', 'position': 'ILB', 'height': 72.0, 'weight': '225', 'compRating': '0.9141', 'compStars': 4, 'nationalRank': '3', 'positionRank': '1', 'stateRank': '2', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '3', '247positionRank': '1', '247stateRank': '2'}, {'school': 'ole-miss', 'year': '2019', 'playerName': 'Darius Thomas', 'highSchool': 'Jonesboro', 'city': 'Jonesboro', 'state': 'AR', 'position': 'OT', 'height': 78.0, 'weight': '340', 'compRating': '0.9002', 'compStars': 4, 'nationalRank': '304', 'positionRank': '25', 'stateRank': '4', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '33', '247stateRank': '5'}, {'school': 'ole-miss', 'year': '2019', 'playerName': 'Sam Williams', 'highSchool': 'Northeast Mississippi C.C.', 'city': 'Booneville', 'state': 'MS', 'position': 'WDE', 'height': 76.5, 'weight': '250', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '8', 'positionRank': '3', 'stateRank': '1', '247Rating': ' 90 ', '247Stars': 4, '247nationalRank': '9', '247positionRank': '3', '247stateRank': '1'}, {'school': 'ole-miss', 'year': '2019', 'playerName': 'John Rhys Plumlee', 'highSchool': 'Oak Grove', 'city': 'Hattiesburg', 'state': 'MS', 'position': 'DUAL', 'height': 73.0, 'weight': '185', 'compRating': '0.8936', 'compStars': 4, 'nationalRank': '350', 'positionRank': '13', 'stateRank': '15', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '10', '247stateRank': '17'}, {'school': 'ole-miss', 'year': '2019', 'playerName': 'Grant Tisdale', 'highSchool': 'Allen', 'city': 'Allen', 'state': 'TX', 'position': 'DUAL', 'height': 73.0, 'weight': '204', 'compRating': '0.8925', 'compStars': 4, 'nationalRank': '358', 'positionRank': '14', 'stateRank': '44', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '7', '247stateRank': '45'}, {'school': 'ole-miss', 'year': '2019', 'playerName': 'Nick Broeker', 'highSchool': 'Sacred Heart Griffin', 'city': 'Springfield', 'state': 'IL', 'position': 'OT', 'height': 78.0, 'weight': '288', 'compRating': '0.8857', 'compStars': 3, 'nationalRank': '439', 'positionRank': '35', 'stateRank': '5', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '213', '247positionRank': '21', '247stateRank': '3'}, {'school': 'ole-miss', 'year': '2019', 'playerName': 'Jadon Jackson', 'highSchool': 'Bentonville West', 'city': 'Centerton', 'state': 'AR', 'position': 'WR', 'height': 73.5, 'weight': '180', 'compRating': '0.8851', 'compStars': 3, 'nationalRank': '447', 'positionRank': '53', 'stateRank': '6', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '54', '247stateRank': '6'}, {'school': 'ole-miss', 'year': '2019', 'playerName': 'Deantre Prince', 'highSchool': 'Charleston', 'city': 'Charleston', 'state': 'MS', 'position': 'ATH', 'height': 73.0, 'weight': '170', 'compRating': '0.8851', 'compStars': 3, 'nationalRank': '449', 'positionRank': '27', 'stateRank': '18', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '32', '247stateRank': '16'}, {'school': 'ole-miss', 'year': '2019', 'playerName': 'LeDarrius Cox', 'highSchool': 'McGill Toolen', 'city': 'Mobile', 'state': 'AL', 'position': 'DT', 'height': 77.0, 'weight': '312', 'compRating': '0.8742', 'compStars': 3, 'nationalRank': '598', 'positionRank': '42', 'stateRank': '20', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '49', '247stateRank': '23'}, {'school': 'ole-miss', 'year': '2019', 'playerName': 'Patrick Lucas', 'highSchool': 'Wetumpka', 'city': 'Wetumpka', 'state': 'AL', 'position': 'DT', 'height': 75.0, 'weight': '290', 'compRating': '0.8735', 'compStars': 3, 'nationalRank': '611', 'positionRank': '46', 'stateRank': '22', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '36', '247stateRank': '18'}, {'school': 'ole-miss', 'year': '2019', 'playerName': 'Jonathan Haynes', 'highSchool': 'Jones College', 'city': 'Ellisville', 'state': 'MS', 'position': 'S', 'height': 72.0, 'weight': '205', 'compRating': '0.8730', 'compStars': 3, 'nationalRank': '35', 'positionRank': '4', 'stateRank': '5', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '59', '247positionRank': '6', '247stateRank': '10'}, {'school': 'ole-miss', 'year': '2019', 'playerName': 'Jordan Jernigan', 'highSchool': 'Tupelo', 'city': 'Tupelo', 'state': 'MS', 'position': 'WR', 'height': 73.0, 'weight': '193', 'compRating': '0.8689', 'compStars': 3, 'nationalRank': '689', 'positionRank': '91', 'stateRank': '22', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '100', '247stateRank': '23'}, {'school': 'ole-miss', 'year': '2019', 'playerName': 'Brandon Mack', 'highSchool': 'Jefferson Davis', 'city': 'Montgomery', 'state': 'AL', 'position': 'WDE', 'height': 76.0, 'weight': '240', 'compRating': '0.8680', 'compStars': 3, 'nationalRank': '715', 'positionRank': '45', 'stateRank': '26', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '46', '247stateRank': '22'}, {'school': 'ole-miss', 'year': '2019', 'playerName': 'Jeremy James', 'highSchool': 'North Forsyth', 'city': 'Cumming', 'state': 'GA', 'position': 'OT', 'height': 77.0, 'weight': '315', 'compRating': '0.8680', 'compStars': 3, 'nationalRank': '716', 'positionRank': '55', 'stateRank': '71', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '61', '247stateRank': '69'}, {'school': 'ole-miss', 'year': '2019', 'playerName': 'Reece McIntyre', 'highSchool': 'Buford', 'city': 'Buford', 'state': 'GA', 'position': 'OT', 'height': 77.0, 'weight': '290', 'compRating': '0.8668', 'compStars': 3, 'nationalRank': '753', 'positionRank': '58', 'stateRank': '75', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '63', '247stateRank': '71'}, {'school': 'ole-miss', 'year': '2019', 'playerName': 'A.J. Finley', 'highSchool': "St. Paul's Episcopal", 'city': 'Mobile', 'state': 'AL', 'position': 'S', 'height': 74.0, 'weight': '195', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '761', 'positionRank': '59', 'stateRank': '29', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '73', '247stateRank': '31'}, {'school': 'ole-miss', 'year': '2019', 'playerName': 'Ashanti Cistrunk', 'highSchool': 'Louisville', 'city': 'Louisville', 'state': 'MS', 'position': 'OLB', 'height': 74.0, 'weight': '205', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '762', 'positionRank': '54', 'stateRank': '25', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '72', '247stateRank': '30'}, {'school': 'ole-miss', 'year': '2019', 'playerName': 'Dontario Drummond', 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'WR', 'height': 74.0, 'weight': '200', 'compRating': '0.8615', 'compStars': 3, 'nationalRank': '56', 'positionRank': '6', 'stateRank': '11', '247Rating': ' 87 ', '247Stars': 3, '247nationalRank': '36', '247positionRank': '4', '247stateRank': '6'}, {'school': 'ole-miss', 'year': '2019', 'playerName': 'Jamar Richardson', 'highSchool': 'Jones College', 'city': 'Ellisville', 'state': 'MS', 'position': 'CB', 'height': 72.0, 'weight': '185', 'compRating': '0.8582', 'compStars': 3, 'nationalRank': '66', 'positionRank': '9', 'stateRank': '14', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '54', '247positionRank': '8', '247stateRank': '9'}, {'school': 'ole-miss', 'year': '2019', 'playerName': 'Jalen Jordan', 'highSchool': 'Lake Cormorant', 'city': 'Lake Cormorant', 'state': 'MS', 'position': 'CB', 'height': 70.0, 'weight': '185', 'compRating': '0.8551', 'compStars': 3, 'nationalRank': '989', 'positionRank': '93', 'stateRank': '29', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '82', '247stateRank': '25'}, {'school': 'ole-miss', 'year': '2019', 'playerName': 'Snoop Conner', 'highSchool': 'Hattiesburg', 'city': 'Hattiesburg', 'state': 'MS', 'position': 'RB', 'height': 71.0, 'weight': '210', 'compRating': '0.8551', 'compStars': 3, 'nationalRank': '991', 'positionRank': '62', 'stateRank': '30', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '58', '247stateRank': '29'}, {'school': 'ole-miss', 'year': '2019', 'playerName': 'Jay Stanley', 'highSchool': 'Brandon', 'city': 'Brandon', 'state': 'MS', 'position': 'S', 'height': 74.0, 'weight': '195', 'compRating': '0.8519', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '92', 'stateRank': '32', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '79', '247stateRank': '31'}, {'school': 'ole-miss', 'year': '2019', 'playerName': 'Bryce Ramsey', 'highSchool': 'Harrison Central', 'city': 'Gulfport', 'state': 'MS', 'position': 'OG', 'height': 73.5, 'weight': '336', 'compRating': '0.8492', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '60', 'stateRank': '34', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '83', '247stateRank': '43'}, {'school': 'ole-miss', 'year': '2019', 'playerName': 'Caleb Warren', 'highSchool': 'Nanih Waiya Attendance Center', 'city': 'Louisville', 'state': 'MS', 'position': 'OT', 'height': 76.0, 'weight': '305', 'compRating': '0.8485', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '92', 'stateRank': '35', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '101', '247stateRank': '35'}, {'school': 'ole-miss', 'year': '2019', 'playerName': 'Carter Colquitt', 'highSchool': 'Buford', 'city': 'Buford', 'state': 'GA', 'position': 'OT', 'height': 77.0, 'weight': '300', 'compRating': '0.8479', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '94', 'stateRank': '112', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '143', '247stateRank': '153'}, {'school': 'ole-miss', 'year': '2019', 'playerName': 'Kinkead Dent', 'highSchool': 'Jackson Academy', 'city': 'Jackson', 'state': 'MS', 'position': 'PRO', 'height': 77.0, 'weight': '205', 'compRating': '0.8479', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '36', 'stateRank': '36', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '65', '247stateRank': '49'}, {'school': 'ole-miss', 'year': '2019', 'playerName': 'Tavario Standifer', 'highSchool': 'Tupelo', 'city': 'Tupelo', 'state': 'MS', 'position': 'S', 'height': 74.0, 'weight': '223', 'compRating': '0.8431', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '110', 'stateRank': '38', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '114', '247stateRank': '36'}, {'school': 'ole-miss', 'year': '2019', 'playerName': 'Eric Jeffries', 'highSchool': 'Lafayette', 'city': 'Oxford', 'state': 'MS', 'position': 'OLB', 'height': 75.0, 'weight': '228', 'compRating': '0.8376', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '110', 'stateRank': '41', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '120', '247stateRank': '45'}, {'school': 'tennessee', 'year': '2011', 'playerName': 'DeAnthony Arnett', 'highSchool': 'Saginaw', 'city': 'Saginaw', 'state': 'MI', 'position': 'WR', 'height': 71.0, 'weight': '184', 'compRating': '0.9771', 'compStars': 4, 'nationalRank': '40', 'positionRank': '6', 'stateRank': '1', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '37', '247positionRank': '7', '247stateRank': '2'}, {'school': 'tennessee', 'year': '2011', 'playerName': 'Antonio Richardson', 'highSchool': 'Pearl-Cohn', 'city': 'Nashville', 'state': 'TN', 'position': 'OT', 'height': 78.0, 'weight': '310', 'compRating': '0.9582', 'compStars': 4, 'nationalRank': '88', 'positionRank': '8', 'stateRank': '1', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '125', '247positionRank': '12', '247stateRank': '2'}, {'school': 'tennessee', 'year': '2011', 'playerName': 'Cameron Clear', 'highSchool': 'Memphis Central', 'city': 'Memphis', 'state': 'TN', 'position': 'OT', 'height': 78.0, 'weight': '255', 'compRating': '0.9482', 'compStars': 4, 'nationalRank': '105', 'positionRank': '10', 'stateRank': '2', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '118', '247positionRank': '10', '247stateRank': '1'}, {'school': 'tennessee', 'year': '2011', 'playerName': 'A.J. Johnson', 'highSchool': 'Gainesville', 'city': 'Gainesville', 'state': 'GA', 'position': 'WDE', 'height': 75.0, 'weight': '233', 'compRating': '0.9391', 'compStars': 4, 'nationalRank': '122', 'positionRank': '7', 'stateRank': '11', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '126', '247positionRank': '7', '247stateRank': '11'}, {'school': 'tennessee', 'year': '2011', 'playerName': 'Curt Maggitt', 'highSchool': 'Dwyer', 'city': 'Palm Beach Gardens', 'state': 'FL', 'position': 'WDE', 'height': 75.0, 'weight': '215', 'compRating': '0.9322', 'compStars': 4, 'nationalRank': '142', 'positionRank': '8', 'stateRank': '30', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '179', '247positionRank': '10', '247stateRank': '36'}, {'school': 'tennessee', 'year': '2011', 'playerName': 'Marlin Lane', 'highSchool': 'Mainland', 'city': 'Daytona Beach', 'state': 'FL', 'position': 'RB', 'height': 72.0, 'weight': '200', 'compRating': '0.9295', 'compStars': 4, 'nationalRank': '149', 'positionRank': '11', 'stateRank': '31', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '159', '247positionRank': '13', '247stateRank': '32'}, {'school': 'tennessee', 'year': '2011', 'playerName': 'Maurice Couch', 'highSchool': 'Garden City C.C.', 'city': 'Garden City', 'state': 'KS', 'position': 'DT', 'height': 75.0, 'weight': '295', 'compRating': '0.9267', 'compStars': 4, 'nationalRank': '5', 'positionRank': '3', 'stateRank': '3', '247Rating': ' 98 ', '247Stars': 5, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2011', 'playerName': 'Byron Moore', 'highSchool': 'Los Angeles Harbor College', 'city': 'Wilmington', 'state': 'CA', 'position': 'CB', 'height': 73.0, 'weight': '200', 'compRating': '0.9207', 'compStars': 4, 'nationalRank': '6', 'positionRank': '1', 'stateRank': '2', '247Rating': ' 94 ', '247Stars': 4, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2011', 'playerName': 'Marcus Jackson', 'highSchool': 'Vero Beach', 'city': 'Vero Beach', 'state': 'FL', 'position': 'OG', 'height': 74.0, 'weight': '310', 'compRating': '0.9024', 'compStars': 4, 'nationalRank': '232', 'positionRank': '9', 'stateRank': '40', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '13', '247stateRank': '45'}, {'school': 'tennessee', 'year': '2011', 'playerName': 'Izauea Lanier', 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'ATH', 'height': 73.0, 'weight': '180', 'compRating': '0.8844', 'compStars': 3, 'nationalRank': '18', 'positionRank': '1', 'stateRank': '3', '247Rating': ' 92 ', '247Stars': 4, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2011', 'playerName': 'Kyler Kerbyson', 'highSchool': 'Knoxville Catholic', 'city': 'Knoxville', 'state': 'TN', 'position': 'OT', 'height': 77.0, 'weight': '290', 'compRating': '0.8838', 'compStars': 3, 'nationalRank': '312', 'positionRank': '33', 'stateRank': '4', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '50', '247stateRank': '5'}, {'school': 'tennessee', 'year': '2011', 'playerName': 'Justin Coleman', 'highSchool': 'Brunswick', 'city': 'Brunswick', 'state': 'GA', 'position': 'CB', 'height': 72.0, 'weight': '175', 'compRating': '0.8801', 'compStars': 3, 'nationalRank': '329', 'positionRank': '26', 'stateRank': '26', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '26', '247stateRank': '21'}, {'school': 'tennessee', 'year': '2011', 'playerName': 'Pat Martin', 'highSchool': 'J L Mann', 'city': 'Greenville', 'state': 'SC', 'position': 'S', 'height': 71.0, 'weight': '212', 'compRating': '0.8702', 'compStars': 3, 'nationalRank': '409', 'positionRank': '27', 'stateRank': '11'}, {'school': 'tennessee', 'year': '2011', 'playerName': 'Vincent Dallas', 'highSchool': 'Cedar Grove', 'city': 'Ellenwood', 'state': 'GA', 'position': 'WR', 'height': 71.0, 'weight': '185', 'compRating': '0.8640', 'compStars': 3, 'nationalRank': '481', 'positionRank': '58', 'stateRank': '36', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '65', '247stateRank': '37'}, {'school': 'tennessee', 'year': '2011', 'playerName': 'Jordan Williams', 'highSchool': 'Gainesville', 'city': 'Gainesville', 'state': 'FL', 'position': 'SDE', 'height': 76.0, 'weight': '240', 'compRating': '0.8624', 'compStars': 3, 'nationalRank': '500', 'positionRank': '38', 'stateRank': '76', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '34', '247stateRank': '76'}, {'school': 'tennessee', 'year': '2011', 'playerName': 'Brendan Downs', 'highSchool': 'Tennessee', 'city': 'Bristol', 'state': 'TN', 'position': 'TE', 'height': 78.0, 'weight': '225', 'compRating': '0.8610', 'compStars': 3, 'nationalRank': '526', 'positionRank': '22', 'stateRank': '6', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '21', '247stateRank': '4'}, {'school': 'tennessee', 'year': '2011', 'playerName': 'Mack Crowder', 'highSchool': 'Tennessee', 'city': 'Bristol', 'state': 'TN', 'position': 'OC', 'height': 76.0, 'weight': '270', 'compRating': '0.8600', 'compStars': 3, 'nationalRank': '545', 'positionRank': '11', 'stateRank': '7', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '11', '247stateRank': '8'}, {'school': 'tennessee', 'year': '2011', 'playerName': 'Brian Randolph', 'highSchool': 'Kell', 'city': 'Marietta', 'state': 'GA', 'position': 'S', 'height': 71.0, 'weight': '182', 'compRating': '0.8590', 'compStars': 3, 'nationalRank': '563', 'positionRank': '38', 'stateRank': '45', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '53', '247stateRank': '48'}, {'school': 'tennessee', 'year': '2011', 'playerName': 'Tom Smith', 'highSchool': 'Apopka', 'city': 'Apopka', 'state': 'FL', 'position': 'RB', 'height': 71.0, 'weight': '205', 'compRating': '0.8584', 'compStars': 3, 'nationalRank': '579', 'positionRank': '36', 'stateRank': '83', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '42', '247stateRank': '87'}, {'school': 'tennessee', 'year': '2011', 'playerName': 'Justin Worley', 'highSchool': 'Northwestern', 'city': 'Rock Hill', 'state': 'SC', 'position': 'PRO', 'height': 76.0, 'weight': '200', 'compRating': '0.8575', 'compStars': 3, 'nationalRank': '590', 'positionRank': '22', 'stateRank': '13', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '18', '247stateRank': '12'}, {'school': 'tennessee', 'year': '2011', 'playerName': 'Alan Posey', 'highSchool': 'Clarke Central', 'city': 'Athens', 'state': 'GA', 'position': 'OT', 'height': 78.0, 'weight': '305', 'compRating': '0.8555', 'compStars': 3, 'nationalRank': '634', 'positionRank': '62', 'stateRank': '48', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '80', '247stateRank': '59'}, {'school': 'tennessee', 'year': '2011', 'playerName': 'Geraldo Orta', 'highSchool': 'Lowndes', 'city': 'Valdosta', 'state': 'GA', 'position': 'S', 'height': 72.0, 'weight': '180', 'compRating': '0.8515', 'compStars': 3, 'nationalRank': '698', 'positionRank': '50', 'stateRank': '54', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '66', '247stateRank': '55'}, {'school': 'tennessee', 'year': '2011', 'playerName': 'Trevarris Saulsberry', 'highSchool': 'Gainesville', 'city': 'Gainesville', 'state': 'FL', 'position': 'DT', 'height': 76.0, 'weight': '255', 'compRating': '0.8493', 'compStars': 3, 'nationalRank': '732', 'positionRank': '57', 'stateRank': '102', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '59', '247stateRank': '104'}, {'school': 'tennessee', 'year': '2011', 'playerName': 'Devrin Young', 'highSchool': 'Bearden', 'city': 'Knoxville', 'state': 'TN', 'position': 'APB', 'height': 67.0, 'weight': '165', 'compRating': '0.8466', 'compStars': 3, 'nationalRank': '780', 'positionRank': '18', 'stateRank': '11', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '14', '247stateRank': '7'}, {'school': 'tennessee', 'year': '2011', 'playerName': 'Tino Thomas', 'highSchool': 'Melrose', 'city': 'Memphis', 'state': 'TN', 'position': 'S', 'height': 71.0, 'weight': '190', 'compRating': '0.8437', 'compStars': 3, 'nationalRank': '838', 'positionRank': '63', 'stateRank': '12', '247Rating': ' 70 ', '247Stars': 2, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2011', 'playerName': 'Christian Harris', 'highSchool': 'Etowah', 'city': 'Woodstock', 'state': 'GA', 'position': 'ILB', 'height': 73.0, 'weight': '225', 'compRating': '0.8378', 'compStars': 3, 'nationalRank': '933', 'positionRank': '36', 'stateRank': '73', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '42', '247stateRank': '71'}, {'school': 'tennessee', 'year': '2011', 'playerName': 'Allan Carson', 'highSchool': 'Oxford', 'city': 'Oxford', 'state': 'AL', 'position': 'DT', 'height': 72.0, 'weight': '327', 'compRating': '0.8285', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '80', 'stateRank': '36', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '69', '247stateRank': '29'}, {'school': 'texas-am', 'year': '2011', 'playerName': 'Mike Evans', 'highSchool': 'Ball', 'city': 'Galveston', 'state': 'TX', 'position': 'WR', 'height': 77.0, 'weight': '180', 'compRating': '0.8493', 'compStars': 3, 'nationalRank': '733', 'positionRank': '83', 'stateRank': '118', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2011', 'playerName': 'Floyd Raven', 'highSchool': 'East St. John', 'city': 'Reserve', 'state': 'LA', 'position': 'CB', 'height': 74.0, 'weight': '185', 'compRating': '0.9051', 'compStars': 4, 'nationalRank': '222', 'positionRank': '20', 'stateRank': '11', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '86', '247positionRank': '7', '247stateRank': '6'}, {'school': 'texas-am', 'year': '2011', 'playerName': 'Shayvion Hatten', 'highSchool': 'Daingerfield', 'city': 'Daingerfield', 'state': 'TX', 'position': 'OT', 'height': 77.0, 'weight': '265', 'compRating': '0.9030', 'compStars': 4, 'nationalRank': '229', 'positionRank': '22', 'stateRank': '32', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '235', '247positionRank': '20', '247stateRank': '34'}, {'school': 'texas-am', 'year': '2011', 'playerName': 'Howard Matthews', 'highSchool': 'Clear Springs', 'city': 'League City', 'state': 'TX', 'position': 'S', 'height': 73.0, 'weight': '205', 'compRating': '0.8999', 'compStars': 4, 'nationalRank': '242', 'positionRank': '17', 'stateRank': '37', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '233', '247positionRank': '17', '247stateRank': '33'}, {'school': 'texas-am', 'year': '2011', 'playerName': 'Brandon Alexander', 'highSchool': 'Brenham', 'city': 'Brenham', 'state': 'TX', 'position': 'SDE', 'height': 77.0, 'weight': '235', 'compRating': '0.8947', 'compStars': 4, 'nationalRank': '266', 'positionRank': '18', 'stateRank': '44', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '240', '247positionRank': '16', '247stateRank': '35'}, {'school': 'texas-am', 'year': '2011', 'playerName': 'Devonta Burns', 'highSchool': 'Martin', 'city': 'Arlington', 'state': 'TX', 'position': 'S', 'height': 72.0, 'weight': '205', 'compRating': '0.8762', 'compStars': 3, 'nationalRank': '357', 'positionRank': '25', 'stateRank': '57', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '37', '247stateRank': '86'}, {'school': 'texas-am', 'year': '2011', 'playerName': 'Johnny Manziel', 'highSchool': 'Tivy', 'city': 'Kerrville', 'state': 'TX', 'position': 'DUAL', 'height': 72.0, 'weight': '195', 'compRating': '0.8740', 'compStars': 3, 'nationalRank': '374', 'positionRank': '13', 'stateRank': '62', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '9', '247stateRank': '37'}, {'school': 'texas-am', 'year': '2011', 'playerName': 'LeMarc Strahan', 'highSchool': 'Blinn College', 'city': 'Brenham', 'state': 'TX', 'position': 'DT', 'height': 76.0, 'weight': '360', 'compRating': '0.8700', 'compStars': 3, 'nationalRank': '27', 'positionRank': '9', 'stateRank': '2'}, {'school': 'texas-am', 'year': '2011', 'playerName': 'Joseph Cheek', 'highSchool': 'Seguin', 'city': 'Seguin', 'state': 'TX', 'position': 'OT', 'height': 79.0, 'weight': '277', 'compRating': '0.8681', 'compStars': 3, 'nationalRank': '423', 'positionRank': '43', 'stateRank': '70', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '66', '247stateRank': '108'}, {'school': 'texas-am', 'year': '2011', 'playerName': 'Shaun Ward', 'highSchool': 'Boyd Anderson', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'OLB', 'height': 73.0, 'weight': '223', 'compRating': '0.8617', 'compStars': 3, 'nationalRank': '518', 'positionRank': '40', 'stateRank': '77', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '27', '247stateRank': '62'}, {'school': 'texas-am', 'year': '2011', 'playerName': 'Ben Compton', 'highSchool': 'Friendswood', 'city': 'Friendswood', 'state': 'TX', 'position': 'OC', 'height': 75.0, 'weight': '305', 'compRating': '0.8516', 'compStars': 3, 'nationalRank': '691', 'positionRank': '13', 'stateRank': '106', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '10', '247stateRank': '79'}, {'school': 'texas-am', 'year': '2011', 'playerName': 'Donnie Baggs', 'highSchool': 'Clear Springs', 'city': 'League City', 'state': 'TX', 'position': 'OLB', 'height': 73.0, 'weight': '205', 'compRating': '0.8516', 'compStars': 3, 'nationalRank': '696', 'positionRank': '56', 'stateRank': '109', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '41', '247stateRank': '93'}, {'school': 'texas-am', 'year': '2011', 'playerName': 'Johntel Franklin', 'highSchool': 'Victor Valley College', 'city': 'Victorville', 'state': 'CA', 'position': 'CB', 'height': 74.0, 'weight': '200', 'compRating': '0.8500', 'compStars': 3, 'nationalRank': '42', 'positionRank': '3', 'stateRank': '13', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2011', 'playerName': 'Nathan Gutekunst', 'highSchool': 'Atascocita', 'city': 'Humble', 'state': 'TX', 'position': 'OG', 'height': 77.0, 'weight': '290', 'compRating': '0.8366', 'compStars': 3, 'nationalRank': '953', 'positionRank': '53', 'stateRank': '152', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '48', '247stateRank': '131'}, {'school': 'texas-am', 'year': '2011', 'playerName': 'Deshazor Everett', 'highSchool': 'DeRidder', 'city': 'Deridder', 'state': 'LA', 'position': 'CB', 'height': 71.0, 'weight': '185', 'compRating': '0.8266', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '82', 'stateRank': '37', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '73', '247stateRank': '36'}, {'school': 'texas-am', 'year': '2011', 'playerName': 'Steven Jenkins', 'highSchool': 'Coffeyville C.C.', 'city': 'Coffeyville', 'state': 'KS', 'position': 'ILB', 'height': 73.0, 'weight': '220', 'compRating': '0.8200', 'compStars': 3, 'nationalRank': '71', 'positionRank': '5', 'stateRank': '13', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2011', 'playerName': 'Taylor Bertolet', 'highSchool': 'Exeter Township', 'city': 'Reading', 'state': 'PA', 'position': 'K', 'height': 69.0, 'weight': '170', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '20', 'stateRank': '40', '247Rating': ' 70 ', '247Stars': 2, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2011', 'playerName': 'Tyrell Taylor', 'highSchool': 'Galena Park', 'city': 'Galena Park', 'state': 'TX', 'position': 'OLB', 'height': 75.0, 'weight': '205', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '142', 'stateRank': '265', '247Rating': ' 70 ', '247Stars': 2, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2011', 'playerName': 'Will Randolph', 'highSchool': 'Copperas Cove', 'city': 'Copperas Cove', 'state': 'TX', 'position': 'RB', 'height': 69.0, 'weight': '185', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '113', 'stateRank': '269', '247Rating': ' 70 ', '247Stars': 2, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2011', 'playerName': 'Drew Kaser', 'highSchool': 'Walsh Jesuit', 'city': 'Stow', 'state': 'OH', 'position': 'P', 'height': 75.0, 'weight': '195', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '3', 'stateRank': '104', '247Rating': ' 70 ', '247Stars': 2, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2011', 'playerName': 'Darzil Washington', 'highSchool': 'West St. John', 'city': 'Edgard', 'state': 'LA', 'position': 'ILB', 'height': 75.0, 'weight': '218', 'compRating': '0.7333', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '110', 'stateRank': '70'}, {'school': 'texas-am', 'year': '2011', 'playerName': 'Chance Nelson', 'highSchool': 'Sterling', 'city': 'Baytown', 'state': 'TX', 'position': 'WR', 'height': 69.0, 'weight': '165', 'compRating': '0.7333', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '304', 'stateRank': '392', '247Rating': ' 70 ', '247Stars': 2, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2004', 'playerName': 'Derrick Harvey', 'highSchool': 'Eleanor Roosevelt', 'city': 'Greenbelt', 'state': 'MD', 'position': 'WDE', 'height': 77.0, 'weight': '235', 'compRating': '0.9956', 'compStars': 5, 'nationalRank': '11', 'positionRank': '3', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2004', 'playerName': 'Brandon Siler', 'highSchool': 'Evans', 'city': 'Orlando', 'state': 'FL', 'position': 'OLB', 'height': 75.0, 'weight': '220', 'compRating': '0.9867', 'compStars': 5, 'nationalRank': '32', 'positionRank': '4', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2004', 'playerName': 'Kyle Jackson', 'highSchool': 'Duncan U. Fletcher', 'city': 'Neptune Beach', 'state': 'FL', 'position': 'S', 'height': 72.0, 'weight': '190', 'compRating': '0.9755', 'compStars': 4, 'nationalRank': '57', 'positionRank': '2', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2004', 'playerName': 'Drew Miller', 'highSchool': 'Riverview', 'city': 'Sarasota', 'state': 'FL', 'position': 'OT', 'height': 77.0, 'weight': '305', 'compRating': '0.9743', 'compStars': 4, 'nationalRank': '65', 'positionRank': '6', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2004', 'playerName': 'Cornelius Ingram', 'highSchool': 'Hawthorne', 'city': 'Hawthorne', 'state': 'FL', 'position': 'ATH', 'height': 77.0, 'weight': '215', 'compRating': '0.9729', 'compStars': 4, 'nationalRank': '71', 'positionRank': '2', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2004', 'playerName': 'McIntosh Nicolas', 'highSchool': 'Immokalee', 'city': 'Immokalee', 'state': 'FL', 'position': 'CB', 'height': 75.0, 'weight': '180', 'compRating': '0.9663', 'compStars': 4, 'nationalRank': '90', 'positionRank': '7', 'stateRank': '17'}, {'school': 'florida', 'year': '2004', 'playerName': 'Mike McIntosh', 'highSchool': 'First Coast', 'city': 'Jacksonville', 'state': 'FL', 'position': 'WR', 'height': 74.0, 'weight': '180', 'compRating': '0.9222', 'compStars': 4, 'nationalRank': '137', 'positionRank': '22', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2004', 'playerName': 'Derrick McPhearson', 'highSchool': 'DeMatha Catholic', 'city': 'Hyattsville', 'state': 'MD', 'position': 'WR', 'height': 71.0, 'weight': '180', 'compRating': '0.9157', 'compStars': 4, 'nationalRank': '145', 'positionRank': '24', 'stateRank': '3'}, {'school': 'florida', 'year': '2004', 'playerName': 'Michael Brown', 'highSchool': 'Westlake', 'city': 'Atlanta', 'state': 'GA', 'position': 'DT', 'height': 77.0, 'weight': '270', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '182', 'positionRank': '19', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2004', 'playerName': 'Javier Estopinan', 'highSchool': 'South Miami Senior', 'city': 'Miami', 'state': 'FL', 'position': 'ILB', 'height': 75.0, 'weight': '230', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '184', 'positionRank': '15', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2004', 'playerName': 'Dawayne Grace', 'highSchool': 'Ed White', 'city': 'Jacksonville', 'state': 'FL', 'position': 'CB', 'height': 73.0, 'weight': '172', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '213', 'positionRank': '13', 'stateRank': '28', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2004', 'playerName': 'Markus Manson', 'highSchool': 'Hillcrest', 'city': 'Tuscaloosa', 'state': 'AL', 'position': 'RB', 'height': 72.0, 'weight': '190', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '214', 'positionRank': '14', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2004', 'playerName': 'Mike Mangold', 'highSchool': 'Merritt Island', 'city': 'Merritt Island', 'state': 'FL', 'position': 'SDE', 'height': 75.0, 'weight': '250', 'compRating': '0.8980', 'compStars': 4, 'nationalRank': '221', 'positionRank': '13', 'stateRank': '30', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2004', 'playerName': 'Jason Watkins', 'highSchool': 'Lake Gibson', 'city': 'Lakeland', 'state': 'FL', 'position': 'OT', 'height': 81.0, 'weight': '300', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '229', 'positionRank': '18', 'stateRank': '32', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2004', 'playerName': 'Brandon Daniel', 'highSchool': 'Blanche Ely', 'city': 'Pompano Beach', 'state': 'FL', 'position': 'SDE', 'height': 76.0, 'weight': '250', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '251', 'positionRank': '15', 'stateRank': '38', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2004', 'playerName': 'Jeremy Mincey', 'highSchool': 'Butler C.C.', 'city': 'El Dorado', 'state': 'KS', 'position': 'SDE', 'height': 75.0, 'weight': '255', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '32', 'positionRank': '3', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2004', 'playerName': 'Tate Casey', 'highSchool': 'Longview', 'city': 'Longview', 'state': 'TX', 'position': 'TE', 'height': 79.0, 'weight': '225', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '318', 'positionRank': '12', 'stateRank': '50', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2004', 'playerName': 'Dane Guthrie', 'highSchool': 'Killian', 'city': 'Miami', 'state': 'FL', 'position': 'TE', 'height': 75.0, 'weight': '240', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '349', 'positionRank': '15', 'stateRank': '43', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2004', 'playerName': 'Phil Trautwein', 'highSchool': 'Eastern', 'city': 'Voorhees', 'state': 'NJ', 'position': 'OT', 'height': 79.0, 'weight': '310', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '354', 'positionRank': '24', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2004', 'playerName': 'Tony Joiner', 'highSchool': 'Haines City Senior', 'city': 'Haines City', 'state': 'FL', 'position': 'S', 'height': 74.0, 'weight': '190', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '433', 'positionRank': '24', 'stateRank': '50', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2004', 'playerName': 'Jim Tartt', 'highSchool': 'Wakulla', 'city': 'Crawfordville', 'state': 'FL', 'position': 'OG', 'height': 76.0, 'weight': '310', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '521', 'positionRank': '36', 'stateRank': '61', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2004', 'playerName': 'Markell Thompson', 'highSchool': 'Southwest Mississippi C.C.', 'city': 'Summit', 'state': 'MS', 'position': 'SDE', 'height': 79.0, 'weight': '260', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '123', 'positionRank': '11', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2004', 'playerName': 'Eric Rutledge', 'highSchool': 'P.K. Yonge', 'city': 'Gainesville', 'state': 'FL', 'position': 'RB', 'height': 73.0, 'weight': '230', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '109', 'stateRank': '197', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2010', 'playerName': 'Jake Matthews', 'highSchool': 'Elkins', 'city': 'Missouri City', 'state': 'TX', 'position': 'OT', 'height': 77.0, 'weight': '285', 'compRating': '0.9810', 'compStars': 4, 'nationalRank': '38', 'positionRank': '5', 'stateRank': '6', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '43', '247positionRank': '5', '247stateRank': '6'}, {'school': 'texas-am', 'year': '2010', 'playerName': 'Luke Joeckel', 'highSchool': 'Arlington', 'city': 'Arlington', 'state': 'TX', 'position': 'OT', 'height': 78.0, 'weight': '280', 'compRating': '0.9712', 'compStars': 4, 'nationalRank': '56', 'positionRank': '7', 'stateRank': '8', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '38', '247positionRank': '3', '247stateRank': '5'}, {'school': 'texas-am', 'year': '2010', 'playerName': 'Cedric Ogbuehi', 'highSchool': 'Allen', 'city': 'Allen', 'state': 'TX', 'position': 'OT', 'height': 77.0, 'weight': '270', 'compRating': '0.9412', 'compStars': 4, 'nationalRank': '124', 'positionRank': '16', 'stateRank': '17', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '72', '247positionRank': '12', '247stateRank': '10'}, {'school': 'texas-am', 'year': '2010', 'playerName': 'Toney Hurd Jr.', 'highSchool': 'Fort Bend Marshall', 'city': 'Missouri City', 'state': 'TX', 'position': 'CB', 'height': 69.0, 'weight': '184', 'compRating': '0.9182', 'compStars': 4, 'nationalRank': '199', 'positionRank': '14', 'stateRank': '30', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2010', 'playerName': 'Shep Klinke', 'highSchool': 'Katy', 'city': 'Katy', 'state': 'TX', 'position': 'OG', 'height': 79.0, 'weight': '290', 'compRating': '0.9177', 'compStars': 4, 'nationalRank': '201', 'positionRank': '9', 'stateRank': '30', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '172', '247positionRank': '5', '247stateRank': '30'}, {'school': 'texas-am', 'year': '2010', 'playerName': 'Ivan Robinson', 'highSchool': 'South Beauregard', 'city': 'Longville', 'state': 'LA', 'position': 'DT', 'height': 76.0, 'weight': '252', 'compRating': '0.9049', 'compStars': 4, 'nationalRank': '256', 'positionRank': '19', 'stateRank': '7', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '190', '247positionRank': '14', '247stateRank': '6'}, {'school': 'texas-am', 'year': '2010', 'playerName': 'D.J. Jones', 'highSchool': 'Denison', 'city': 'Denison', 'state': 'TX', 'position': 'RB', 'height': 71.0, 'weight': '183', 'compRating': '0.8906', 'compStars': 4, 'nationalRank': '341', 'positionRank': '21', 'stateRank': '52', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2010', 'playerName': 'Ben Malena', 'highSchool': 'Cedar Hill', 'city': 'Cedar Hill', 'state': 'TX', 'position': 'RB', 'height': 70.0, 'weight': '200', 'compRating': '0.8875', 'compStars': 3, 'nationalRank': '371', 'positionRank': '28', 'stateRank': '56', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2010', 'playerName': 'Jameill Showers', 'highSchool': 'Shoemaker', 'city': 'Killeen', 'state': 'TX', 'position': 'DUAL', 'height': 73.0, 'weight': '200', 'compRating': '0.8764', 'compStars': 3, 'nationalRank': '463', 'positionRank': '15', 'stateRank': '69', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2010', 'playerName': 'Damontre Moore', 'highSchool': 'Rowlett', 'city': 'Rowlett', 'state': 'TX', 'position': 'WDE', 'height': 78.0, 'weight': '225', 'compRating': '0.8764', 'compStars': 3, 'nationalRank': '476', 'positionRank': '29', 'stateRank': '72', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2010', 'playerName': 'Nate Askew', 'highSchool': 'Madison', 'city': 'San Antonio', 'state': 'TX', 'position': 'WR', 'height': 76.0, 'weight': '213', 'compRating': '0.8759', 'compStars': 3, 'nationalRank': '490', 'positionRank': '68', 'stateRank': '74', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2010', 'playerName': 'Domonique Patterson', 'highSchool': 'Skyline', 'city': 'Dallas', 'state': 'TX', 'position': 'OLB', 'height': 72.0, 'weight': '210', 'compRating': '0.8733', 'compStars': 3, 'nationalRank': '527', 'positionRank': '31', 'stateRank': '82', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2010', 'playerName': 'Matt Joeckel', 'highSchool': 'Arlington', 'city': 'Arlington', 'state': 'TX', 'position': 'DUAL', 'height': 76.0, 'weight': '220', 'compRating': '0.8701', 'compStars': 3, 'nationalRank': '552', 'positionRank': '20', 'stateRank': '88', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2010', 'playerName': 'Nehemiah Hicks', 'highSchool': 'Hutto', 'city': 'Hutto', 'state': 'TX', 'position': 'ATH', 'height': 76.0, 'weight': '235', 'compRating': '0.8684', 'compStars': 3, 'nationalRank': '599', 'positionRank': '41', 'stateRank': '98', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2010', 'playerName': 'Malcome Kennedy', 'highSchool': 'Cayuga', 'city': 'Centerville', 'state': 'TX', 'position': 'WR', 'height': 72.0, 'weight': '195', 'compRating': '0.8653', 'compStars': 3, 'nationalRank': '663', 'positionRank': '89', 'stateRank': '108', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2010', 'playerName': 'Brandon Jackson', 'highSchool': 'Evangel Christian Academy', 'city': 'Shreveport', 'state': 'LA', 'position': 'DT', 'height': 76.0, 'weight': '252', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '929', 'positionRank': '76', 'stateRank': '26', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2010', 'playerName': 'Garrett Gramling', 'highSchool': 'Ryan', 'city': 'Denton', 'state': 'TX', 'position': 'OT', 'height': 78.0, 'weight': '325', 'compRating': '0.8542', 'compStars': 3, 'nationalRank': '977', 'positionRank': '71', 'stateRank': '155', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2010', 'playerName': 'LeKendrick Williams', 'highSchool': 'Sharpstown', 'city': 'Houston', 'state': 'TX', 'position': 'WR', 'height': 69.0, 'weight': '175', 'compRating': '0.8484', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '144', 'stateRank': '186', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2010', 'playerName': 'Clay Honeycutt', 'highSchool': 'Dickinson', 'city': 'Dickinson', 'state': 'TX', 'position': 'DUAL', 'height': 74.0, 'weight': '185', 'compRating': '0.8479', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '42', 'stateRank': '188', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2010', 'playerName': 'Jonathan Mathis', 'highSchool': 'Blinn College', 'city': 'Brenham', 'state': 'TX', 'position': 'DT', 'height': 75.0, 'weight': '292', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '67', 'positionRank': '13', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2010', 'playerName': 'Gavin Stansbury', 'highSchool': 'Franklin', 'city': 'Franklin', 'state': 'LA', 'position': 'WDE', 'height': 75.0, 'weight': '235', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '76', 'stateRank': '41', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2010', 'playerName': 'Tramone Mickens', 'highSchool': 'Lincoln', 'city': 'Dallas', 'state': 'TX', 'position': 'CB', 'height': 70.0, 'weight': '170', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '162', 'stateRank': '282', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2010', 'playerName': 'Jarvis Harrison', 'highSchool': 'Navasota', 'city': 'Navasota', 'state': 'TX', 'position': 'OG', 'height': 76.0, 'weight': '330', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '139', 'stateRank': '335', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2010', 'playerName': 'Ross Gilliam', 'highSchool': 'Owensboro', 'city': 'Owensboro', 'state': 'KY', 'position': 'K', 'height': 78.0, 'weight': '195', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2010', 'playerName': 'Mister Jones', 'highSchool': 'Littleton', 'city': 'Littleton', 'state': 'CO', 'position': 'RB', 'height': 74.0, 'weight': '205', 'compRating': '0.8906', 'compStars': 4, 'nationalRank': '342', 'positionRank': '22', 'stateRank': '3'}, {'school': 'florida', 'year': '2005', 'playerName': 'Ryan Stamper', 'highSchool': 'First Coast', 'city': 'Jacksonville', 'state': 'FL', 'position': 'ILB', 'height': 74.0, 'weight': '215', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '161', 'positionRank': '8', 'stateRank': '22', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2005', 'playerName': 'Nyan Boateng', 'highSchool': 'Abraham Lincoln', 'city': 'Brooklyn', 'state': 'NY', 'position': 'WR', 'height': 74.0, 'weight': '186', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '172', 'positionRank': '18', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2005', 'playerName': 'Jon Demps', 'highSchool': 'Booker T. Washington', 'city': 'Pensacola', 'state': 'FL', 'position': 'ILB', 'height': 76.0, 'weight': '225', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '175', 'positionRank': '9', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2005', 'playerName': 'David Nelson', 'highSchool': 'Rider', 'city': 'Wichita Falls', 'state': 'TX', 'position': 'WR', 'height': 77.0, 'weight': '195', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '193', 'positionRank': '23', 'stateRank': '23'}, {'school': 'florida', 'year': '2005', 'playerName': 'Dorian Munroe', 'highSchool': 'Coral Reef', 'city': 'Miami', 'state': 'FL', 'position': 'S', 'height': 72.0, 'weight': '180', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '195', 'positionRank': '11', 'stateRank': '26', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2005', 'playerName': 'Eddie Haupt', 'highSchool': 'Merritt Island', 'city': 'Merritt Island', 'state': 'FL', 'position': 'OG', 'height': 76.0, 'weight': '290', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '235', 'positionRank': '12', 'stateRank': '35', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2005', 'playerName': 'Louis Murphy', 'highSchool': 'Lakewood', 'city': 'Saint Petersburg', 'state': 'FL', 'position': 'WR', 'height': 75.0, 'weight': '176', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '237', 'positionRank': '26', 'stateRank': '36', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2005', 'playerName': 'Eric Sledge', 'highSchool': 'Apopka', 'city': 'Apopka', 'state': 'FL', 'position': 'ATH', 'height': 75.0, 'weight': '180', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '263', 'positionRank': '13', 'stateRank': '39', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2005', 'playerName': 'Brian Ellis', 'highSchool': 'Mainland', 'city': 'Daytona Beach', 'state': 'FL', 'position': 'TE', 'height': 76.0, 'weight': '235', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '273', 'positionRank': '13', 'stateRank': '40', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2005', 'playerName': 'Darryl Gresham Jr.', 'highSchool': 'William Fleming', 'city': 'Roanoke', 'state': 'VA', 'position': 'ILB', 'height': 75.0, 'weight': '227', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '278', 'positionRank': '14', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2005', 'playerName': 'Ronnie Wilson', 'highSchool': 'Blanche Ely', 'city': 'Pompano Beach', 'state': 'FL', 'position': 'OG', 'height': 76.0, 'weight': '331', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '288', 'positionRank': '18', 'stateRank': '42', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2005', 'playerName': 'Simon Codrington', 'highSchool': 'South Miami Senior', 'city': 'Miami', 'state': 'FL', 'position': 'OT', 'height': 79.0, 'weight': '270', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '298', 'positionRank': '25', 'stateRank': '43', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2005', 'playerName': 'Kestahn Moore', 'highSchool': 'Mansfield Summit', 'city': 'Arlington', 'state': 'TX', 'position': 'RB', 'height': 71.0, 'weight': '196', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '299', 'positionRank': '23', 'stateRank': '42', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2005', 'playerName': 'Kalvin Baker', 'highSchool': 'Pacelli', 'city': 'Columbus', 'state': 'GA', 'position': 'OLB', 'height': 73.0, 'weight': '230', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '452', 'positionRank': '40', 'stateRank': '29', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2005', 'playerName': 'Jonathan Phillips', 'highSchool': 'Wellington', 'city': 'West Palm Beach', 'state': 'FL', 'position': 'K', 'height': 73.0, 'weight': '200', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '841', 'positionRank': '6', 'stateRank': '96', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2005', 'playerName': 'Avery Atkins', 'highSchool': 'Mainland', 'city': 'Daytona Beach', 'state': 'FL', 'position': 'CB', 'height': 71.0, 'weight': '185', 'compRating': '0.9747', 'compStars': 4, 'nationalRank': '68', 'positionRank': '8', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2005', 'playerName': 'Josh Portis', 'highSchool': 'Taft', 'city': 'Woodland Hills', 'state': 'CA', 'position': 'DUAL', 'height': 75.0, 'weight': '200', 'compRating': '0.9501', 'compStars': 4, 'nationalRank': '98', 'positionRank': '3', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2014', 'playerName': 'Leonard Fournette', 'highSchool': 'St. Augustine', 'city': 'New Orleans', 'state': 'LA', 'position': 'RB', 'height': 73.0, 'weight': '226', 'compRating': '0.9996', 'compStars': 5, 'nationalRank': '1', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 101 ', '247Stars': 5, '247nationalRank': '2', '247positionRank': '1', '247stateRank': '1'}, {'school': 'lsu', 'year': '2014', 'playerName': 'Malachi Dupre', 'highSchool': 'John Curtis', 'city': 'New Orleans', 'state': 'LA', 'position': 'WR', 'height': 74.5, 'weight': '187', 'compRating': '0.9918', 'compStars': 5, 'nationalRank': '17', 'positionRank': '2', 'stateRank': '4', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '30', '247positionRank': '3', '247stateRank': '5'}, {'school': 'lsu', 'year': '2014', 'playerName': 'Clifton Garrett', 'highSchool': 'Plainfield South', 'city': 'Plainfield', 'state': 'IL', 'position': 'OLB', 'height': 74.0, 'weight': '228', 'compRating': '0.9863', 'compStars': 5, 'nationalRank': '29', 'positionRank': '2', 'stateRank': '1'}, {'school': 'lsu', 'year': '2014', 'playerName': 'Jamal Adams', 'highSchool': 'Hebron', 'city': 'Carrollton', 'state': 'TX', 'position': 'S', 'height': 72.0, 'weight': '199', 'compRating': '0.9850', 'compStars': 5, 'nationalRank': '32', 'positionRank': '2', 'stateRank': '5', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '92', '247positionRank': '7', '247stateRank': '10'}, {'school': 'lsu', 'year': '2014', 'playerName': 'Ed Paris', 'highSchool': 'Mansfield Timberview', 'city': 'Arlington', 'state': 'TX', 'position': 'S', 'height': 73.0, 'weight': '190', 'compRating': '0.9795', 'compStars': 4, 'nationalRank': '41', 'positionRank': '3', 'stateRank': '6', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '63', '247positionRank': '3', '247stateRank': '7'}, {'school': 'lsu', 'year': '2014', 'playerName': 'Brandon Harris', 'highSchool': 'Parkway', 'city': 'Bossier City', 'state': 'LA', 'position': 'DUAL', 'height': 74.5, 'weight': '193', 'compRating': '0.9651', 'compStars': 4, 'nationalRank': '75', 'positionRank': '3', 'stateRank': '7', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '97', '247positionRank': '3', '247stateRank': '9'}, {'school': 'lsu', 'year': '2014', 'playerName': 'Trey Quinn', 'highSchool': 'Barbe', 'city': 'Lake Charles', 'state': 'LA', 'position': 'WR', 'height': 73.0, 'weight': '200', 'compRating': '0.9631', 'compStars': 4, 'nationalRank': '83', 'positionRank': '11', 'stateRank': '8', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '90', '247positionRank': '14', '247stateRank': '8'}, {'school': 'lsu', 'year': '2014', 'playerName': 'Garrett Brumfield', 'highSchool': 'University Lab', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'OG', 'height': 75.5, 'weight': '272', 'compRating': '0.9526', 'compStars': 4, 'nationalRank': '103', 'positionRank': '6', 'stateRank': '10', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '52', '247positionRank': '3', '247stateRank': '6'}, {'school': 'lsu', 'year': '2014', 'playerName': 'Davon Godchaux', 'highSchool': 'Plaquemine', 'city': 'Plaquemine', 'state': 'LA', 'position': 'SDE', 'height': 76.0, 'weight': '265', 'compRating': '0.9364', 'compStars': 4, 'nationalRank': '146', 'positionRank': '9', 'stateRank': '11', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '173', '247positionRank': '10', '247stateRank': '11'}, {'school': 'lsu', 'year': '2014', 'playerName': 'Deondre Clark', 'highSchool': 'Douglass', 'city': 'Oklahoma City', 'state': 'OK', 'position': 'SDE', 'height': 74.5, 'weight': '238', 'compRating': '0.9347', 'compStars': 4, 'nationalRank': '152', 'positionRank': '11', 'stateRank': '3', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '182', '247positionRank': '11', '247stateRank': '4'}, {'school': 'lsu', 'year': '2014', 'playerName': 'Jacory Washington', 'highSchool': 'Westlake', 'city': 'Westlake', 'state': 'LA', 'position': 'TE', 'height': 77.0, 'weight': '220', 'compRating': '0.9253', 'compStars': 4, 'nationalRank': '184', 'positionRank': '4', 'stateRank': '12', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '12', '247stateRank': '21'}, {'school': 'lsu', 'year': '2014', 'playerName': 'Devin Voorhies', 'highSchool': 'Wilkinson County', 'city': 'Woodville', 'state': 'MS', 'position': 'S', 'height': 74.0, 'weight': '185', 'compRating': '0.9178', 'compStars': 4, 'nationalRank': '211', 'positionRank': '15', 'stateRank': '5', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '217', '247positionRank': '14', '247stateRank': '6'}, {'school': 'lsu', 'year': '2014', 'playerName': 'Will Clapp', 'highSchool': 'Brother Martin', 'city': 'New Orleans', 'state': 'LA', 'position': 'OG', 'height': 76.5, 'weight': '275', 'compRating': '0.9054', 'compStars': 4, 'nationalRank': '247', 'positionRank': '15', 'stateRank': '15', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '210', '247positionRank': '11', '247stateRank': '13'}, {'school': 'lsu', 'year': '2014', 'playerName': 'Darrel Williams', 'highSchool': 'John Ehret', 'city': 'Marrero', 'state': 'LA', 'position': 'ATH', 'height': 72.0, 'weight': '227', 'compRating': '0.9027', 'compStars': 4, 'nationalRank': '254', 'positionRank': '20', 'stateRank': '16', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '23', '247stateRank': '15'}, {'school': 'lsu', 'year': '2014', 'playerName': 'Jevonte Domond', 'highSchool': 'Glendale C.C.', 'city': 'Glendale', 'state': 'AZ', 'position': 'OT', 'height': 78.0, 'weight': '305', 'compRating': '0.8967', 'compStars': 4, 'nationalRank': '21', 'positionRank': '7', 'stateRank': '3', '247Rating': ' 89 ', '247Stars': 3, '247nationalRank': '58', '247positionRank': '12', '247stateRank': '6'}, {'school': 'lsu', 'year': '2014', 'playerName': 'Tony Upchurch', 'highSchool': 'Dawson', 'city': 'Pearland', 'state': 'TX', 'position': 'WR', 'height': 74.0, 'weight': '228', 'compRating': '0.8931', 'compStars': 4, 'nationalRank': '304', 'positionRank': '44', 'stateRank': '36', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '57', '247stateRank': '41'}, {'school': 'lsu', 'year': '2014', 'playerName': 'Sione Teuhema', 'highSchool': 'Keller', 'city': 'Keller', 'state': 'TX', 'position': 'WDE', 'height': 75.25, 'weight': '217', 'compRating': '0.8847', 'compStars': 3, 'nationalRank': '365', 'positionRank': '19', 'stateRank': '46', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '26', '247stateRank': '64'}, {'school': 'lsu', 'year': '2014', 'playerName': 'John Battle', 'highSchool': 'Hallandale', 'city': 'Hallandale', 'state': 'FL', 'position': 'S', 'height': 74.0, 'weight': '180', 'compRating': '0.8800', 'compStars': 3, 'nationalRank': '406', 'positionRank': '31', 'stateRank': '53', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '18', '247stateRank': '35'}, {'school': 'lsu', 'year': '2014', 'playerName': 'D.J. Chark', 'highSchool': 'Alexandria', 'city': 'Alexandria', 'state': 'LA', 'position': 'WR', 'height': 72.5, 'weight': '176', 'compRating': '0.8752', 'compStars': 3, 'nationalRank': '435', 'positionRank': '59', 'stateRank': '20', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '70', '247stateRank': '25'}, {'school': 'lsu', 'year': '2014', 'playerName': 'Trey Lealaimatafao', 'highSchool': 'Warren', 'city': 'San Antonio', 'state': 'TX', 'position': 'DT', 'height': 72.0, 'weight': '301', 'compRating': '0.8737', 'compStars': 3, 'nationalRank': '446', 'positionRank': '34', 'stateRank': '55'}, {'school': 'lsu', 'year': '2014', 'playerName': 'Donnie Alexander', 'highSchool': 'Edna Karr', 'city': 'New Orleans', 'state': 'LA', 'position': 'OLB', 'height': 73.0, 'weight': '205', 'compRating': '0.8735', 'compStars': 3, 'nationalRank': '451', 'positionRank': '36', 'stateRank': '21', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '51', '247stateRank': '28'}, {'school': 'lsu', 'year': '2014', 'playerName': 'Russell Gage', 'highSchool': 'Redemptorist', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'ATH', 'height': 72.0, 'weight': '175', 'compRating': '0.8455', 'compStars': 3, 'nationalRank': '898', 'positionRank': '74', 'stateRank': '32', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '55', '247stateRank': '29'}, {'school': 'lsu', 'year': '2014', 'playerName': 'Cameron Gamble', 'highSchool': 'Flower Mound', 'city': 'Flower Mound', 'state': 'TX', 'position': 'K', 'height': 71.0, 'weight': '185', 'compRating': '0.8125', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '14', 'stateRank': '218', '247Rating': ' 75 ', '247Stars': 2, '247positionRank': '17', '247stateRank': '390'}, {'school': 'lsu', 'year': '2014', 'playerName': 'Brandon Bergeron', 'highSchool': 'Highland C.C.', 'city': 'Highland', 'state': 'KS', 'position': 'PRO', 'height': 74.0, 'weight': '200', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '222', 'positionRank': '5', 'stateRank': '28', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2014', 'playerName': 'Colin Jeter', 'highSchool': 'Kilgore J.C.', 'city': 'Kilgore', 'state': 'TX', 'position': 'TE', 'height': 77.0, 'weight': '240', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2014', 'playerName': 'Travonte Valentine', 'highSchool': 'Champagnat Catholic - Hialeah', 'city': 'Hialeah', 'state': 'FL', 'position': 'DT', 'height': 75.0, 'weight': '338', 'compRating': '0.9699', 'compStars': 4, 'nationalRank': '62', 'positionRank': '3', 'stateRank': '9'}, {'school': 'south-carolina', 'year': '2004', 'playerName': 'Dorian Capers', 'highSchool': 'Battery Creek', 'city': 'Beaufort', 'state': 'SC', 'position': 'DT', 'height': 78.0, 'weight': '275', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '163', 'positionRank': '18', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2004', 'playerName': 'C.J. Barber', 'highSchool': 'Northwestern', 'city': 'Rock Hill', 'state': 'SC', 'position': 'S', 'height': 74.0, 'weight': '215', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '201', 'positionRank': '11', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2004', 'playerName': 'Johnathan Joseph', 'highSchool': 'Coffeyville C.C.', 'city': 'Coffeyville', 'state': 'KS', 'position': 'CB', 'height': 72.0, 'weight': '190', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '39', 'positionRank': '7', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2004', 'playerName': 'Antonio Heffner', 'highSchool': 'Melrose', 'city': 'Memphis', 'state': 'TN', 'position': 'PRO', 'height': 75.0, 'weight': '180', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '344', 'positionRank': '18', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2004', 'playerName': 'Matt Raysor', 'highSchool': 'Bamberg-Ehrhardt', 'city': 'Bamberg', 'state': 'SC', 'position': 'DT', 'height': 77.0, 'weight': '275', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '353', 'positionRank': '31', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2004', 'playerName': 'Josh Winchell', 'highSchool': 'Southaven', 'city': 'Southaven', 'state': 'MS', 'position': 'OG', 'height': 77.0, 'weight': '310', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '371', 'positionRank': '24', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2004', 'playerName': 'Kendrick Lynch', 'highSchool': 'Dorman', 'city': 'Roebuck', 'state': 'SC', 'position': 'ATH', 'height': 69.0, 'weight': '175', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '429', 'positionRank': '32', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2004', 'playerName': 'Sidney Rice', 'highSchool': 'Gaffney', 'city': 'Gaffney', 'state': 'SC', 'position': 'WR', 'height': 76.0, 'weight': '185', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '505', 'positionRank': '60', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2004', 'playerName': 'Albert Ashcraft', 'highSchool': 'Monroe', 'city': 'Monroe', 'state': 'NC', 'position': 'RB', 'height': 75.0, 'weight': '195', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '586', 'positionRank': '39', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2004', 'playerName': 'Jeremy Burgess', 'highSchool': 'Loris Hi', 'city': 'Loris', 'state': 'SC', 'position': 'OG', 'height': 77.0, 'weight': '265', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '614', 'positionRank': '48', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2004', 'playerName': 'James Thompson', 'highSchool': 'Sumter', 'city': 'Sumter', 'state': 'SC', 'position': 'OT', 'height': 77.0, 'weight': '310', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '635', 'positionRank': '42', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2004', 'playerName': 'Kevin Mainord', 'highSchool': 'Grundy County', 'city': 'Coalmont', 'state': 'TN', 'position': 'SDE', 'height': 76.0, 'weight': '265', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '810', 'positionRank': '48', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2004', 'playerName': 'Dusty Lindsey', 'highSchool': 'WP Davidson', 'city': 'Mobile', 'state': 'AL', 'position': 'WDE', 'height': 76.0, 'weight': '222', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': '827', 'positionRank': '28', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2004', 'playerName': 'Tremel Kline', 'highSchool': 'Battery Creek', 'city': 'Beaufort', 'state': 'SC', 'position': 'WR', 'height': 75.0, 'weight': '185', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': '857', 'positionRank': '99', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2004', 'playerName': 'Jamon Meredith', 'highSchool': 'Hillcrest Sr Hi', 'city': 'Simpsonville', 'state': 'SC', 'position': 'SDE', 'height': 78.0, 'weight': '255', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': '931', 'positionRank': '55', 'stateRank': '25', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2004', 'playerName': 'Stoney Woodson', 'highSchool': 'Middleton', 'city': 'Tampa', 'state': 'FL', 'position': 'CB', 'height': 71.0, 'weight': '175', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '82', 'stateRank': '105', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2004', 'playerName': 'Trent Usher', 'highSchool': 'Central', 'city': 'Pageland', 'state': 'SC', 'position': 'ATH', 'height': 73.0, 'weight': '190', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '75', 'stateRank': '27', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2004', 'playerName': 'Ko Simpson', 'highSchool': 'Rock Hill', 'city': 'Rock Hill', 'state': 'SC', 'position': 'S', 'height': 74.0, 'weight': '180', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '75', 'stateRank': '28', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2004', 'playerName': 'Jordin Lindsey', 'highSchool': 'WP Davidson', 'city': 'Mobile', 'state': 'AL', 'position': 'WDE', 'height': 76.0, 'weight': '225', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '42', 'stateRank': '34', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2004', 'playerName': 'Gurminder Thind', 'highSchool': 'Mississauga Secondary', 'city': 'Canada', 'state': 'CANA', 'position': 'OG', 'height': 77.0, 'weight': '280', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '101', 'stateRank': '142', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2004', 'playerName': 'Grayson Mullins', 'highSchool': 'Dutch Fork', 'city': 'Irmo', 'state': 'SC', 'position': 'K', 'height': 72.0, 'weight': '175', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '22', 'stateRank': '29', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2004', 'playerName': 'Evan Spanogians', 'highSchool': 'Lakota West', 'city': 'West Chester', 'state': 'OH', 'position': 'OG', 'height': 77.0, 'weight': '285', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '106', 'stateRank': '59', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2004', 'playerName': 'Brandon Samuels', 'highSchool': 'Caroline', 'city': 'Milford', 'state': 'VA', 'position': 'ILB', 'height': 75.0, 'weight': '232', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '70', 'stateRank': '26', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2004', 'playerName': 'John Paul Gillis', 'highSchool': 'Wade Hampton Hi', 'city': 'Greenville', 'state': 'SC', 'position': 'OT', 'height': 78.0, 'weight': '285', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '95', 'stateRank': '30', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2004', 'playerName': 'Antonio Lamar', 'highSchool': 'Brookwood', 'city': 'Snellville', 'state': 'GA', 'position': 'RB', 'height': 74.0, 'weight': '240', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '111', 'stateRank': '106', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2004', 'playerName': 'Chris Hampton', 'highSchool': 'Melrose', 'city': 'Memphis', 'state': 'TN', 'position': 'S', 'height': 73.0, 'weight': '175', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '151', 'stateRank': '35', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2004', 'playerName': 'Alonzo Middleton', 'highSchool': 'Orangeburg-Wilkinson', 'city': 'Orangeburg', 'state': 'SC', 'position': 'ILB', 'height': 74.0, 'weight': '230', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '116', 'stateRank': '37', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2004', 'playerName': 'Ben Iannacchione', 'highSchool': 'Baldwin', 'city': 'Pittsburgh', 'state': 'PA', 'position': 'OG', 'height': 76.0, 'weight': '283', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '205', 'stateRank': '78', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2004', 'playerName': 'Marque Hall', 'highSchool': 'Forest Hills', 'city': 'Marshville', 'state': 'NC', 'position': 'DT', 'height': 77.0, 'weight': '305', 'compRating': '0.9721', 'compStars': 4, 'nationalRank': '74', 'positionRank': '9', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2018', 'playerName': 'Matt Corral', 'highSchool': 'Long Beach Poly', 'city': 'Long Beach', 'state': 'CA', 'position': 'PRO', 'height': 74.0, 'weight': '202', 'compRating': '0.9690', 'compStars': 4, 'nationalRank': '63', 'positionRank': '4', 'stateRank': '9', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '90', '247positionRank': '5', '247stateRank': '10'}, {'school': 'ole-miss', 'year': '2018', 'playerName': 'Elijah Moore', 'highSchool': 'St. Thomas Aquinas', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'WR', 'height': 71.0, 'weight': '181', 'compRating': '0.9205', 'compStars': 4, 'nationalRank': '203', 'positionRank': '38', 'stateRank': '34', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '61', '247stateRank': '51'}, {'school': 'ole-miss', 'year': '2018', 'playerName': 'Miles Battle', 'highSchool': 'Cy Creek', 'city': 'Houston', 'state': 'TX', 'position': 'WR', 'height': 76.0, 'weight': '188', 'compRating': '0.8958', 'compStars': 4, 'nationalRank': '330', 'positionRank': '56', 'stateRank': '42', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '51', '247stateRank': '37'}, {'school': 'ole-miss', 'year': '2018', 'playerName': 'Jalen Cunningham', 'highSchool': 'St. Clair County', 'city': 'Odenville', 'state': 'AL', 'position': 'DT', 'height': 78.0, 'weight': '345', 'compRating': '0.8850', 'compStars': 3, 'nationalRank': '432', 'positionRank': '30', 'stateRank': '14', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '30', '247stateRank': '14'}, {'school': 'ole-miss', 'year': '2018', 'playerName': "Kevontae' Ruggs", 'highSchool': 'Robert E. Lee', 'city': 'Montgomery', 'state': 'AL', 'position': 'OLB', 'height': 76.0, 'weight': '210', 'compRating': '0.8817', 'compStars': 3, 'nationalRank': '457', 'positionRank': '30', 'stateRank': '15'}, {'school': 'ole-miss', 'year': '2018', 'playerName': 'Demarcus Gregory', 'highSchool': 'Byrnes', 'city': 'Duncan', 'state': 'SC', 'position': 'WR', 'height': 75.0, 'weight': '204', 'compRating': '0.8791', 'compStars': 3, 'nationalRank': '500', 'positionRank': '83', 'stateRank': '7', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '153', '247stateRank': '18'}, {'school': 'ole-miss', 'year': '2018', 'playerName': 'Scottie Phillips', 'highSchool': 'Jones College', 'city': 'Ellisville', 'state': 'MS', 'position': 'RB', 'height': 69.0, 'weight': '205', 'compRating': '0.8719', 'compStars': 3, 'nationalRank': '48', 'positionRank': '2', 'stateRank': '13', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '63', '247positionRank': '3', '247stateRank': '16'}, {'school': 'ole-miss', 'year': '2018', 'playerName': 'Vernon Dasher', 'highSchool': 'Coffeyville C.C.', 'city': 'Coffeyville', 'state': 'KS', 'position': 'OLB', 'height': 75.0, 'weight': '215', 'compRating': '0.8689', 'compStars': 3, 'nationalRank': '56', 'positionRank': '2', 'stateRank': '11', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '71', '247positionRank': '6', '247stateRank': '12'}, {'school': 'ole-miss', 'year': '2018', 'playerName': 'Jacquez Jones', 'highSchool': 'Hillcrest', 'city': 'Tuscaloosa', 'state': 'AL', 'position': 'OLB', 'height': 72.5, 'weight': '225', 'compRating': '0.8643', 'compStars': 3, 'nationalRank': '732', 'positionRank': '45', 'stateRank': '24', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '63', '247stateRank': '32'}, {'school': 'ole-miss', 'year': '2018', 'playerName': 'Hal Northern', 'highSchool': 'Northwest Mississippi C.C.', 'city': 'Senatobia', 'state': 'MS', 'position': 'DT', 'height': 75.0, 'weight': '293', 'compRating': '0.8641', 'compStars': 3, 'nationalRank': '63', 'positionRank': '16', 'stateRank': '15', '247Rating': ' 89 ', '247Stars': 3, '247nationalRank': '23', '247positionRank': '7', '247stateRank': '8'}, {'school': 'ole-miss', 'year': '2018', 'playerName': "Ka'Darian Hill", 'highSchool': 'Eufaula', 'city': 'Eufaula', 'state': 'AL', 'position': 'DT', 'height': 73.0, 'weight': '270', 'compRating': '0.8601', 'compStars': 3, 'nationalRank': '832', 'positionRank': '58', 'stateRank': '29', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '71', '247stateRank': '39'}, {'school': 'ole-miss', 'year': '2018', 'playerName': 'Cameron White', 'highSchool': 'Madison Central', 'city': 'Madison', 'state': 'MS', 'position': 'S', 'height': 73.0, 'weight': '185', 'compRating': '0.8593', 'compStars': 3, 'nationalRank': '848', 'positionRank': '60', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2018', 'playerName': 'Hamilton Hall', 'highSchool': 'Chamblee Charter', 'city': 'Atlanta', 'state': 'GA', 'position': 'OT', 'height': 77.0, 'weight': '315', 'compRating': '0.8505', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '100', 'stateRank': '105', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '128', '247stateRank': '131'}, {'school': 'ole-miss', 'year': '2018', 'playerName': 'JaKorey Hawkins', 'highSchool': 'Robert E. Lee', 'city': 'Montgomery', 'state': 'AL', 'position': 'CB', 'height': 71.0, 'weight': '187', 'compRating': '0.8490', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '97', 'stateRank': '36', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '60', '247stateRank': '24'}, {'school': 'ole-miss', 'year': '2018', 'playerName': 'Tariqious Tisdale', 'highSchool': 'Northwest Mississippi C.C.', 'city': 'Senatobia', 'state': 'MS', 'position': 'SDE', 'height': 77.0, 'weight': '280', 'compRating': '0.8467', 'compStars': 3, 'nationalRank': '108', 'positionRank': '6', 'stateRank': '23', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '57', '247positionRank': '4', '247stateRank': '15'}, {'school': 'ole-miss', 'year': '2018', 'playerName': 'Quentin Bivens', 'highSchool': 'Wayne County', 'city': 'Waynesboro', 'state': 'MS', 'position': 'DT', 'height': 75.0, 'weight': '295', 'compRating': '0.8439', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '83', 'stateRank': '21', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '106', '247stateRank': '23'}, {'school': 'ole-miss', 'year': '2018', 'playerName': 'Keidron Smith', 'highSchool': 'Oxbridge Academy', 'city': 'West Palm Beach', 'state': 'FL', 'position': 'CB', 'height': 74.0, 'weight': '180', 'compRating': '0.8426', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '110', 'stateRank': '195', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '164', '247stateRank': '264'}, {'school': 'ole-miss', 'year': '2018', 'playerName': 'Jonathan Hess', 'highSchool': 'Vestavia Hills', 'city': 'Birmingham', 'state': 'AL', 'position': 'OLB', 'height': 77.0, 'weight': '223', 'compRating': '0.8423', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '90', 'stateRank': '44', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '65', '247stateRank': '37'}, {'school': 'ole-miss', 'year': '2018', 'playerName': 'Luke Knox', 'highSchool': 'Brentwood Academy', 'city': 'Brentwood', 'state': 'TN', 'position': 'OLB', 'height': 75.0, 'weight': '220', 'compRating': '0.8165', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '130', 'stateRank': '51', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '148', '247stateRank': '55'}, {'school': 'ole-miss', 'year': '2018', 'playerName': 'Tylan Knight', 'highSchool': 'Pearl', 'city': 'Pearl', 'state': 'MS', 'position': 'CB', 'height': 67.0, 'weight': '173', 'compRating': '0.7853', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '243', 'stateRank': '53', '247Rating': ' 76 ', '247Stars': 2, '247positionRank': '297', '247stateRank': '70'}, {'school': 'ole-miss', 'year': '2018', 'playerName': 'Ford Werness', 'highSchool': 'Millbrook', 'city': 'Raleigh', 'state': 'NC', 'position': 'PRO', 'height': 73.0, 'weight': '180', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2018', 'playerName': 'James Williams', 'highSchool': 'Callaway', 'city': 'Jackson', 'state': 'MS', 'position': 'SDE', 'height': 77.0, 'weight': '285', 'compRating': '0.8817', 'compStars': 3, 'nationalRank': '462', 'positionRank': '20', 'stateRank': '8'}, {'school': 'tennessee', 'year': '2010', 'playerName': "Da'Rick Rogers", 'highSchool': 'Calhoun', 'city': 'Calhoun', 'state': 'GA', 'position': 'WR', 'height': 75.0, 'weight': '215', 'compRating': '0.9927', 'compStars': 5, 'nationalRank': '15', 'positionRank': '3', 'stateRank': '1', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '30', '247positionRank': '5', '247stateRank': '5'}, {'school': 'tennessee', 'year': '2010', 'playerName': "Ja'Wuan James", 'highSchool': 'North Gwinnett', 'city': 'Suwanee', 'state': 'GA', 'position': 'OT', 'height': 79.0, 'weight': '315', 'compRating': '0.9849', 'compStars': 5, 'nationalRank': '28', 'positionRank': '2', 'stateRank': '3', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '12', '247positionRank': '2', '247stateRank': '1'}, {'school': 'tennessee', 'year': '2010', 'playerName': 'Justin Hunter', 'highSchool': 'Ocean Lakes', 'city': 'Virginia Beach', 'state': 'VA', 'position': 'WR', 'height': 76.0, 'weight': '183', 'compRating': '0.9829', 'compStars': 4, 'nationalRank': '33', 'positionRank': '5', 'stateRank': '2', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '23', '247positionRank': '4', '247stateRank': '1'}, {'school': 'tennessee', 'year': '2010', 'playerName': 'Corey Miller', 'highSchool': 'Byrnes', 'city': 'Duncan', 'state': 'SC', 'position': 'WDE', 'height': 75.0, 'weight': '255', 'compRating': '0.9701', 'compStars': 4, 'nationalRank': '59', 'positionRank': '3', 'stateRank': '3', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '87', '247positionRank': '2', '247stateRank': '3'}, {'school': 'tennessee', 'year': '2010', 'playerName': 'Tyler Bray', 'highSchool': 'Kingsburg', 'city': 'Kingsburg', 'state': 'CA', 'position': 'PRO', 'height': 78.0, 'weight': '210', 'compRating': '0.9520', 'compStars': 4, 'nationalRank': '99', 'positionRank': '4', 'stateRank': '15', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '96', '247positionRank': '5', '247stateRank': '16'}, {'school': 'tennessee', 'year': '2010', 'playerName': 'Jacques Smith', 'highSchool': 'Ooltewah', 'city': 'Ooltewah', 'state': 'TN', 'position': 'WDE', 'height': 74.0, 'weight': '248', 'compRating': '0.9439', 'compStars': 4, 'nationalRank': '120', 'positionRank': '5', 'stateRank': '1', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '125', '247positionRank': '5', '247stateRank': '2'}, {'school': 'tennessee', 'year': '2010', 'playerName': 'James Stone', 'highSchool': 'Maplewood', 'city': 'Nashville', 'state': 'TN', 'position': 'OG', 'height': 76.0, 'weight': '295', 'compRating': '0.9299', 'compStars': 4, 'nationalRank': '157', 'positionRank': '2', 'stateRank': '2', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '177', '247positionRank': '6', '247stateRank': '4'}, {'school': 'tennessee', 'year': '2010', 'playerName': 'Matt Milton', 'highSchool': 'Mascoutah', 'city': 'Mascoutah', 'state': 'IL', 'position': 'WR', 'height': 78.0, 'weight': '200', 'compRating': '0.9267', 'compStars': 4, 'nationalRank': '169', 'positionRank': '22', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2010', 'playerName': 'Rajion Neal', 'highSchool': 'Sandy Creek', 'city': 'Tyrone', 'state': 'GA', 'position': 'RB', 'height': 71.0, 'weight': '210', 'compRating': '0.9225', 'compStars': 4, 'nationalRank': '181', 'positionRank': '14', 'stateRank': '18', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '134', '247positionRank': '13', '247stateRank': '12'}, {'school': 'tennessee', 'year': '2010', 'playerName': 'Eddrick Loften', 'highSchool': 'Nimitz', 'city': 'Irving', 'state': 'TX', 'position': 'S', 'height': 72.0, 'weight': '200', 'compRating': '0.9061', 'compStars': 4, 'nationalRank': '250', 'positionRank': '22', 'stateRank': '37'}, {'school': 'tennessee', 'year': '2010', 'playerName': 'Ted Meline', 'highSchool': 'North Miami', 'city': 'Miami', 'state': 'FL', 'position': 'WR', 'height': 75.0, 'weight': '170', 'compRating': '0.8938', 'compStars': 4, 'nationalRank': '318', 'positionRank': '43', 'stateRank': '44'}, {'school': 'tennessee', 'year': '2010', 'playerName': 'Marques Pair', 'highSchool': 'Sumter', 'city': 'Sumter', 'state': 'SC', 'position': 'OT', 'height': 78.0, 'weight': '275', 'compRating': '0.8670', 'compStars': 3, 'nationalRank': '620', 'positionRank': '43', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2010', 'playerName': 'Zach Fulton', 'highSchool': 'Homewood-Flossmoor', 'city': 'Flossmoor', 'state': 'IL', 'position': 'OG', 'height': 77.0, 'weight': '315', 'compRating': '0.8639', 'compStars': 3, 'nationalRank': '712', 'positionRank': '32', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2010', 'playerName': 'Channing Fugate', 'highSchool': 'Breathitt County', 'city': 'Jackson', 'state': 'KY', 'position': 'ATH', 'height': 74.0, 'weight': '225', 'compRating': '0.8622', 'compStars': 3, 'nationalRank': '735', 'positionRank': '50', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2010', 'playerName': 'Dave Clark', 'highSchool': 'Independence C.C.', 'city': 'Independence', 'state': 'KS', 'position': 'S', 'height': 74.0, 'weight': '190', 'compRating': '0.8611', 'compStars': 3, 'nationalRank': '36', 'positionRank': '4', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2010', 'playerName': 'John Propst', 'highSchool': 'Hoover', 'city': 'Hoover', 'state': 'AL', 'position': 'ILB', 'height': 73.0, 'weight': '220', 'compRating': '0.8559', 'compStars': 3, 'nationalRank': '876', 'positionRank': '39', 'stateRank': '28', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2010', 'playerName': 'Marcques Dixon', 'highSchool': 'Southwest DeKalb', 'city': 'Decatur', 'state': 'GA', 'position': 'ATH', 'height': 70.0, 'weight': '182', 'compRating': '0.8495', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '77', 'stateRank': '85', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2010', 'playerName': 'Matt Darr', 'highSchool': 'Frontier', 'city': 'Bakersfield', 'state': 'CA', 'position': 'P', 'height': 73.0, 'weight': '221', 'compRating': '0.8479', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '1', 'stateRank': '134', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2010', 'playerName': 'Michael Palardy', 'highSchool': 'St. Thomas Aquinas', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'K', 'height': 72.0, 'weight': '170', 'compRating': '0.8448', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '10', 'stateRank': '181', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2010', 'playerName': 'Mychal Rivera', 'highSchool': 'College of the Canyons', 'city': 'Valencia', 'state': 'CA', 'position': 'TE', 'height': 76.0, 'weight': '250', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '71', 'positionRank': '3', 'stateRank': '27', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2010', 'playerName': 'Matt Simms', 'highSchool': 'El Camino College', 'city': 'Torrance', 'state': 'CA', 'position': 'PRO', 'height': 75.0, 'weight': '210', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '80', 'positionRank': '1', 'stateRank': '30', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2010', 'playerName': 'Gregory Clark', 'highSchool': 'Northside', 'city': 'Warner Robins', 'state': 'GA', 'position': 'DT', 'height': 75.0, 'weight': '300', 'compRating': '0.8306', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '103', 'stateRank': '118', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2010', 'playerName': 'Nash Nance', 'highSchool': 'Calhoun', 'city': 'Calhoun', 'state': 'GA', 'position': 'DUAL', 'height': 75.0, 'weight': '208', 'compRating': '0.8274', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '56', 'stateRank': '123', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2010', 'playerName': 'Martaze Jackson', 'highSchool': 'Demopolis', 'city': 'Demopolis', 'state': 'AL', 'position': 'OLB', 'height': 74.0, 'weight': '225', 'compRating': '0.8229', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '120', 'stateRank': '52', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2010', 'playerName': 'Raiques Crump', 'highSchool': 'Minor', 'city': 'Adamsville', 'state': 'AL', 'position': 'OLB', 'height': 74.0, 'weight': '220', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '147', 'stateRank': '70', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2010', 'playerName': 'Dontavis Sapp', 'highSchool': 'Valdosta', 'city': 'Valdosta', 'state': 'GA', 'position': 'S', 'height': 75.0, 'weight': '205', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '151', 'stateRank': '153', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2010', 'playerName': 'Darin Gooch', 'highSchool': 'Butte College', 'city': 'Oroville', 'state': 'CA', 'position': 'OC', 'height': 74.0, 'weight': '270', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2010', 'playerName': 'John Brown', 'highSchool': 'Northeast Mississippi C.C.', 'city': 'Booneville', 'state': 'MS', 'position': 'DT', 'height': 74.0, 'weight': '285', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '12', 'positionRank': '1', 'stateRank': '4'}, {'school': 'georgia', 'year': '2016', 'playerName': 'Jacob Eason', 'highSchool': 'Lake Stevens', 'city': 'Lake Stevens', 'state': 'WA', 'position': 'PRO', 'height': 77.5, 'weight': '208', 'compRating': '0.9975', 'compStars': 5, 'nationalRank': '5', 'positionRank': '2', 'stateRank': '1', '247Rating': ' 99 ', '247Stars': 5, '247nationalRank': '4', '247positionRank': '2', '247stateRank': '1'}, {'school': 'georgia', 'year': '2016', 'playerName': 'Mecole Hardman', 'highSchool': 'Elbert County', 'city': 'Elberton', 'state': 'GA', 'position': 'ATH', 'height': 70.0, 'weight': '169', 'compRating': '0.9910', 'compStars': 5, 'nationalRank': '12', 'positionRank': '1', 'stateRank': '2', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '27', '247positionRank': '1', '247stateRank': '4'}, {'school': 'georgia', 'year': '2016', 'playerName': 'Isaac Nauta', 'highSchool': 'IMG Academy', 'city': 'Bradenton', 'state': 'FL', 'position': 'TE', 'height': 75.25, 'weight': '244', 'compRating': '0.9904', 'compStars': 5, 'nationalRank': '14', 'positionRank': '1', 'stateRank': '3', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '40', '247positionRank': '1', '247stateRank': '4'}, {'school': 'georgia', 'year': '2016', 'playerName': 'Julian Rochester', 'highSchool': 'McEachern', 'city': 'Powder Springs', 'state': 'GA', 'position': 'DT', 'height': 77.0, 'weight': '321', 'compRating': '0.9651', 'compStars': 4, 'nationalRank': '70', 'positionRank': '10', 'stateRank': '8', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '81', '247positionRank': '12', '247stateRank': '11'}, {'school': 'georgia', 'year': '2016', 'playerName': 'Ben Cleveland', 'highSchool': 'Stephens County', 'city': 'Toccoa', 'state': 'GA', 'position': 'OT', 'height': 78.0, 'weight': '319', 'compRating': '0.9565', 'compStars': 4, 'nationalRank': '90', 'positionRank': '10', 'stateRank': '12', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '15', '247positionRank': '4', '247stateRank': '2'}, {'school': 'georgia', 'year': '2016', 'playerName': 'Chauncey Manac', 'highSchool': 'Clinch County', 'city': 'Homerville', 'state': 'GA', 'position': 'WDE', 'height': 75.0, 'weight': '250', 'compRating': '0.9458', 'compStars': 4, 'nationalRank': '116', 'positionRank': '10', 'stateRank': '14', '247Rating': ' 82 ', '247Stars': 3, '247nationalRank': '157', '247positionRank': '12', '247stateRank': '25'}, {'school': 'georgia', 'year': '2016', 'playerName': 'Michail Carter', 'highSchool': 'Jackson', 'city': 'Jackson', 'state': 'GA', 'position': 'DT', 'height': 76.0, 'weight': '302', 'compRating': '0.9439', 'compStars': 4, 'nationalRank': '122', 'positionRank': '16', 'stateRank': '15', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '27', '247stateRank': '24'}, {'school': 'georgia', 'year': '2016', 'playerName': 'Charlie Woerner', 'highSchool': 'Rabun County', 'city': 'Tiger', 'state': 'GA', 'position': 'WR', 'height': 77.0, 'weight': '230', 'compRating': '0.9386', 'compStars': 4, 'nationalRank': '138', 'positionRank': '25', 'stateRank': '16', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '238', '247positionRank': '42', '247stateRank': '20'}, {'school': 'georgia', 'year': '2016', 'playerName': 'Elijah Holyfield', 'highSchool': 'Woodward Academy', 'city': 'Atlanta', 'state': 'GA', 'position': 'RB', 'height': 70.0, 'weight': '204', 'compRating': '0.9297', 'compStars': 4, 'nationalRank': '162', 'positionRank': '6', 'stateRank': '18', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '9', '247stateRank': '25'}, {'school': 'georgia', 'year': '2016', 'playerName': 'Jaleel Laguins', 'highSchool': 'Oconee County', 'city': 'Watkinsville', 'state': 'GA', 'position': 'ILB', 'height': 74.0, 'weight': '209', 'compRating': '0.9143', 'compStars': 4, 'nationalRank': '227', 'positionRank': '10', 'stateRank': '21', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '170', '247positionRank': '9', '247stateRank': '16'}, {'school': 'georgia', 'year': '2016', 'playerName': 'Riley Ridley', 'highSchool': 'Deerfield Beach', 'city': 'Deerfield Beach', 'state': 'FL', 'position': 'WR', 'height': 73.5, 'weight': '198', 'compRating': '0.9089', 'compStars': 4, 'nationalRank': '248', 'positionRank': '47', 'stateRank': '35', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '60', '247stateRank': '44'}, {'school': 'georgia', 'year': '2016', 'playerName': 'Tyler Clark', 'highSchool': 'Americus Sumter County South', 'city': 'Americus', 'state': 'GA', 'position': 'DT', 'height': 75.0, 'weight': '290', 'compRating': '0.9066', 'compStars': 4, 'nationalRank': '264', 'positionRank': '27', 'stateRank': '25', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '244', '247positionRank': '24', '247stateRank': '21'}, {'school': 'georgia', 'year': '2016', 'playerName': 'Javon Wims', 'highSchool': 'Hinds C.C.', 'city': 'Raymond', 'state': 'MS', 'position': 'WR', 'height': 76.0, 'weight': '215', 'compRating': '0.9025', 'compStars': 4, 'nationalRank': '11', 'positionRank': '4', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2016', 'playerName': 'Chad Clay', 'highSchool': 'Peachtree Ridge', 'city': 'Suwanee', 'state': 'GA', 'position': 'CB', 'height': 72.0, 'weight': '180', 'compRating': '0.8827', 'compStars': 3, 'nationalRank': '378', 'positionRank': '35', 'stateRank': '32', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2016', 'playerName': 'Tyler Simmons', 'highSchool': 'McEachern', 'city': 'Powder Springs', 'state': 'GA', 'position': 'WR', 'height': 71.0, 'weight': '194', 'compRating': '0.8822', 'compStars': 3, 'nationalRank': '383', 'positionRank': '65', 'stateRank': '34', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '89', '247stateRank': '50'}, {'school': 'georgia', 'year': '2016', 'playerName': 'David Marshall', 'highSchool': 'Upson-Lee', 'city': 'Thomaston', 'state': 'GA', 'position': 'SDE', 'height': 74.5, 'weight': '272', 'compRating': '0.8762', 'compStars': 3, 'nationalRank': '433', 'positionRank': '19', 'stateRank': '39', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '22', '247stateRank': '41'}, {'school': 'georgia', 'year': '2016', 'playerName': 'Chris Barnes', 'highSchool': 'Lee County', 'city': 'Leesburg', 'state': 'GA', 'position': 'OT', 'height': 75.0, 'weight': '270', 'compRating': '0.8696', 'compStars': 3, 'nationalRank': '502', 'positionRank': '47', 'stateRank': '48', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '41', '247stateRank': '43'}, {'school': 'georgia', 'year': '2016', 'playerName': 'Tyrique McGhee', 'highSchool': 'Peach County', 'city': 'Fort Valley', 'state': 'GA', 'position': 'CB', 'height': 71.0, 'weight': '177', 'compRating': '0.8594', 'compStars': 3, 'nationalRank': '635', 'positionRank': '57', 'stateRank': '54', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '46', '247stateRank': '45'}, {'school': 'georgia', 'year': '2016', 'playerName': 'Brian Herrien', 'highSchool': 'New Manchester', 'city': 'Douglasville', 'state': 'GA', 'position': 'RB', 'height': 72.0, 'weight': '200', 'compRating': '0.8489', 'compStars': 3, 'nationalRank': '860', 'positionRank': '54', 'stateRank': '80', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '31', '247stateRank': '48'}, {'school': 'georgia', 'year': '2016', 'playerName': 'Solomon Kindley', 'highSchool': 'Raines', 'city': 'Jacksonville', 'state': 'FL', 'position': 'OT', 'height': 77.0, 'weight': '330', 'compRating': '0.8408', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '89', 'stateRank': '146', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '153', '247stateRank': '240'}, {'school': 'georgia', 'year': '2016', 'playerName': 'Marshall Long', 'highSchool': 'South Rowan', 'city': 'China Grove', 'state': 'NC', 'position': 'P', 'height': 73.5, 'weight': '214', 'compRating': '0.8217', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '9', 'stateRank': '59', '247Rating': ' 77 ', '247Stars': 2, '247positionRank': '11', '247stateRank': '84'}, {'school': 'auburn', 'year': '2017', 'playerName': 'Calvin Ashley', 'highSchool': "St. John's", 'city': 'Washington', 'state': 'DC', 'position': 'OT', 'height': 78.0, 'weight': '310', 'compRating': '0.9870', 'compStars': 5, 'nationalRank': '26', 'positionRank': '6', 'stateRank': '1', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '25', '247positionRank': '6', '247stateRank': '1'}, {'school': 'auburn', 'year': '2017', 'playerName': 'Jarrett Stidham', 'highSchool': 'McLennan C.C.', 'city': 'Waco', 'state': 'TX', 'position': 'DUAL', 'height': 75.0, 'weight': '210', 'compRating': '0.9642', 'compStars': 4, 'nationalRank': '1', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '13', '247positionRank': '1', '247stateRank': '2'}, {'school': 'auburn', 'year': '2017', 'playerName': 'T.D. Moultry', 'highSchool': 'Jackson-Olin', 'city': 'Birmingham', 'state': 'AL', 'position': 'ILB', 'height': 74.0, 'weight': '225', 'compRating': '0.9538', 'compStars': 4, 'nationalRank': '98', 'positionRank': '3', 'stateRank': '3', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '18', '247positionRank': '1', '247stateRank': '2'}, {'school': 'auburn', 'year': '2017', 'playerName': 'Nick Brahms', 'highSchool': 'Navarre', 'city': 'Navarre', 'state': 'FL', 'position': 'OG', 'height': 76.0, 'weight': '285', 'compRating': '0.9318', 'compStars': 4, 'nationalRank': '160', 'positionRank': '10', 'stateRank': '27', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '97', '247positionRank': '5', '247stateRank': '16'}, {'school': 'auburn', 'year': '2017', 'playerName': 'Devan Barrett', 'highSchool': 'Tampa Catholic', 'city': 'Tampa', 'state': 'FL', 'position': 'RB', 'height': 72.0, 'weight': '190', 'compRating': '0.9294', 'compStars': 4, 'nationalRank': '168', 'positionRank': '11', 'stateRank': '28', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '212', '247positionRank': '14', '247stateRank': '28'}, {'school': 'auburn', 'year': '2017', 'playerName': 'Austin Troxell', 'highSchool': 'Madison Academy', 'city': 'Madison', 'state': 'AL', 'position': 'OT', 'height': 79.0, 'weight': '335', 'compRating': '0.9253', 'compStars': 4, 'nationalRank': '178', 'positionRank': '18', 'stateRank': '8', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '129', '247positionRank': '17', '247stateRank': '5'}, {'school': 'auburn', 'year': '2017', 'playerName': 'Big Kat Bryant', 'highSchool': 'Crisp County', 'city': 'Cordele', 'state': 'GA', 'position': 'WDE', 'height': 76.0, 'weight': '226', 'compRating': '0.9238', 'compStars': 4, 'nationalRank': '189', 'positionRank': '14', 'stateRank': '18', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '20', '247stateRank': '24'}, {'school': 'auburn', 'year': '2017', 'playerName': 'Malcolm Askew', 'highSchool': 'McAdory', 'city': 'McCalla', 'state': 'AL', 'position': 'ATH', 'height': 70.5, 'weight': '183', 'compRating': '0.9165', 'compStars': 4, 'nationalRank': '214', 'positionRank': '8', 'stateRank': '10', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '36', '247stateRank': '26'}, {'school': 'auburn', 'year': '2017', 'playerName': 'Noah Igbinoghene', 'highSchool': 'Hewitt-Trussville', 'city': 'Trussville', 'state': 'AL', 'position': 'WR', 'height': 72.0, 'weight': '190', 'compRating': '0.8969', 'compStars': 4, 'nationalRank': '290', 'positionRank': '39', 'stateRank': '13', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '35', '247stateRank': '12'}, {'school': 'auburn', 'year': '2017', 'playerName': 'K.J. Britt', 'highSchool': 'Oxford', 'city': 'Oxford', 'state': 'AL', 'position': 'ILB', 'height': 72.0, 'weight': '232', 'compRating': '0.8951', 'compStars': 4, 'nationalRank': '299', 'positionRank': '15', 'stateRank': '14', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '239', '247positionRank': '9', '247stateRank': '11'}, {'school': 'auburn', 'year': '2017', 'playerName': 'Sal Cannella', 'highSchool': 'Scottsdale C.C.', 'city': 'Scottsdale', 'state': 'AZ', 'position': 'TE', 'height': 78.0, 'weight': '230', 'compRating': '0.8898', 'compStars': 3, 'nationalRank': '17', 'positionRank': '2', 'stateRank': '2', '247Rating': ' 90 ', '247Stars': 4, '247nationalRank': '15', '247positionRank': '2', '247stateRank': '3'}, {'school': 'auburn', 'year': '2017', 'playerName': 'Malik Willis', 'highSchool': 'Roswell', 'city': 'Roswell', 'state': 'GA', 'position': 'ATH', 'height': 74.0, 'weight': '188', 'compRating': '0.8857', 'compStars': 3, 'nationalRank': '368', 'positionRank': '21', 'stateRank': '35', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '23', '247stateRank': '32'}, {'school': 'auburn', 'year': '2017', 'playerName': 'Chandler Wooten', 'highSchool': 'North Cobb', 'city': 'Kennesaw', 'state': 'GA', 'position': 'OLB', 'height': 74.5, 'weight': '227', 'compRating': '0.8835', 'compStars': 3, 'nationalRank': '386', 'positionRank': '21', 'stateRank': '38', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '18', '247stateRank': '30'}, {'school': 'auburn', 'year': '2017', 'playerName': 'Tyrone Truesdell', 'highSchool': 'Laney', 'city': 'Augusta', 'state': 'GA', 'position': 'DT', 'height': 75.0, 'weight': '325', 'compRating': '0.8721', 'compStars': 3, 'nationalRank': '458', 'positionRank': '37', 'stateRank': '48', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '30', '247stateRank': '36'}, {'school': 'auburn', 'year': '2017', 'playerName': 'JaTarvious Whitlow', 'highSchool': 'Lafayette', 'city': 'Lafayette', 'state': 'AL', 'position': 'ATH', 'height': 72.0, 'weight': '205', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '528', 'positionRank': '36', 'stateRank': '26', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '20', '247stateRank': '14'}, {'school': 'auburn', 'year': '2017', 'playerName': 'Alec Jackson', 'highSchool': 'Jefferson Davis', 'city': 'Montgomery', 'state': 'AL', 'position': 'DT', 'height': 77.0, 'weight': '270', 'compRating': '0.8595', 'compStars': 3, 'nationalRank': '632', 'positionRank': '50', 'stateRank': '32', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '25', '247stateRank': '15'}, {'school': 'auburn', 'year': '2017', 'playerName': 'Jordyn Peters', 'highSchool': 'Muscle Shoals', 'city': 'Muscle Shoals', 'state': 'AL', 'position': 'S', 'height': 74.0, 'weight': '185', 'compRating': '0.8544', 'compStars': 3, 'nationalRank': '727', 'positionRank': '54', 'stateRank': '36', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '48', '247stateRank': '32'}, {'school': 'auburn', 'year': '2017', 'playerName': 'Traivon Leonard', 'highSchool': 'Oxbridge Academy', 'city': 'West Palm Beach', 'state': 'FL', 'position': 'CB', 'height': 72.0, 'weight': '188', 'compRating': '0.8398', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '122', 'stateRank': '161', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '114', '247stateRank': '141'}, {'school': 'auburn', 'year': '2017', 'playerName': 'Anders Carlson', 'highSchool': 'The Classical Academy', 'city': 'Pike Ntl Forest', 'state': 'CO', 'position': 'K', 'height': 75.0, 'weight': '185', 'compRating': '0.8353', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '1', 'stateRank': '9', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '4', '247stateRank': '10'}, {'school': 'auburn', 'year': '2017', 'playerName': 'John Samuel Shenker', 'highSchool': 'Colquitt County', 'city': 'Moultrie', 'state': 'GA', 'position': 'TE', 'height': 75.0, 'weight': '245', 'compRating': '0.8240', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '73', 'stateRank': '160', '247Rating': ' 78 ', '247Stars': 2, '247positionRank': '109', '247stateRank': '252'}, {'school': 'auburn', 'year': '2017', 'playerName': 'Bill Taylor', 'highSchool': 'American Christian', 'city': 'Tuscaloosa', 'state': 'AL', 'position': 'LS', 'height': 76.0, 'weight': '235', 'compRating': '0.8064', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '2', 'stateRank': '63', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '2', '247stateRank': '78'}, {'school': 'auburn', 'year': '2017', 'playerName': 'Alaric Williams', 'highSchool': 'Southside', 'city': 'Gadsden', 'state': 'AL', 'position': 'ATH', 'height': 72.0, 'weight': '195', 'compRating': '0.9145', 'compStars': 4, 'nationalRank': '218', 'positionRank': '9', 'stateRank': '11'}, {'school': 'south-carolina', 'year': '2012', 'playerName': 'Shaq Roland', 'highSchool': 'Lexington', 'city': 'Lexington', 'state': 'SC', 'position': 'ATH', 'height': 74.0, 'weight': '204', 'compRating': '0.9808', 'compStars': 4, 'nationalRank': '41', 'positionRank': '5', 'stateRank': '1', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '52', '247positionRank': '5', '247stateRank': '1'}, {'school': 'south-carolina', 'year': '2012', 'playerName': 'Mike Davis', 'highSchool': 'Stephenson', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'RB', 'height': 71.0, 'weight': '195', 'compRating': '0.9772', 'compStars': 4, 'nationalRank': '47', 'positionRank': '5', 'stateRank': '3', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '45', '247positionRank': '5', '247stateRank': '3'}, {'school': 'south-carolina', 'year': '2012', 'playerName': 'Brock Stadnik', 'highSchool': 'Western Guilford', 'city': 'Greensboro', 'state': 'NC', 'position': 'OT', 'height': 77.0, 'weight': '285', 'compRating': '0.9363', 'compStars': 4, 'nationalRank': '160', 'positionRank': '18', 'stateRank': '7', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '143', '247positionRank': '15', '247stateRank': '7'}, {'school': 'south-carolina', 'year': '2012', 'playerName': 'Kwinton Smith', 'highSchool': 'Dillon', 'city': 'Dillon', 'state': 'SC', 'position': 'WR', 'height': 76.0, 'weight': '200', 'compRating': '0.9234', 'compStars': 4, 'nationalRank': '209', 'positionRank': '27', 'stateRank': '3', '247Rating': ' 92 ', '247Stars': 4, '247positionRank': '38', '247stateRank': '4'}, {'school': 'south-carolina', 'year': '2012', 'playerName': 'Jerell Adams', 'highSchool': 'Fork Union Military Academy', 'city': 'Fork Union', 'state': 'VA', 'position': 'TE', 'height': 76.0, 'weight': '225', 'compRating': '0.9067', 'compStars': 4, 'nationalRank': '3', 'positionRank': '1', 'stateRank': '2', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '210', '247positionRank': '11', '247stateRank': '5'}, {'school': 'south-carolina', 'year': '2012', 'playerName': 'Darius English', 'highSchool': 'McEachern', 'city': 'Powder Springs', 'state': 'GA', 'position': 'WDE', 'height': 78.0, 'weight': '215', 'compRating': '0.9023', 'compStars': 4, 'nationalRank': '303', 'positionRank': '18', 'stateRank': '24', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '18', '247stateRank': '22'}, {'school': 'south-carolina', 'year': '2012', 'playerName': 'Chaz Elder', 'highSchool': 'Banneker', 'city': 'Atlanta', 'state': 'GA', 'position': 'S', 'height': 73.0, 'weight': '185', 'compRating': '0.9004', 'compStars': 4, 'nationalRank': '313', 'positionRank': '20', 'stateRank': '27', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '227', '247positionRank': '13', '247stateRank': '19'}, {'school': 'south-carolina', 'year': '2012', 'playerName': 'Kaiwan Lewis', 'highSchool': 'St. Joseph', 'city': 'Hammonton', 'state': 'NJ', 'position': 'ILB', 'height': 74.0, 'weight': '230', 'compRating': '0.8946', 'compStars': 4, 'nationalRank': '346', 'positionRank': '17', 'stateRank': '8', '247Rating': ' 92 ', '247Stars': 4, '247positionRank': '12', '247stateRank': '9'}, {'school': 'south-carolina', 'year': '2012', 'playerName': 'Jody Fuller', 'highSchool': 'Sun Valley', 'city': 'Monroe', 'state': 'NC', 'position': 'WR', 'height': 72.0, 'weight': '200', 'compRating': '0.8929', 'compStars': 4, 'nationalRank': '360', 'positionRank': '46', 'stateRank': '12', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '191', '247positionRank': '24', '247stateRank': '9'}, {'school': 'south-carolina', 'year': '2012', 'playerName': 'Jordan Diggs', 'highSchool': 'Island Coast', 'city': 'Cape Coral', 'state': 'FL', 'position': 'S', 'height': 74.0, 'weight': '190', 'compRating': '0.8861', 'compStars': 3, 'nationalRank': '407', 'positionRank': '26', 'stateRank': '53', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '17', '247stateRank': '43'}, {'school': 'south-carolina', 'year': '2012', 'playerName': 'Kelvin Rainey', 'highSchool': 'Yulee', 'city': 'Yulee', 'state': 'FL', 'position': 'ATH', 'height': 75.0, 'weight': '210', 'compRating': '0.8843', 'compStars': 3, 'nationalRank': '424', 'positionRank': '30', 'stateRank': '55'}, {'school': 'south-carolina', 'year': '2012', 'playerName': 'Cody Waldrop', 'highSchool': 'Armwood', 'city': 'Seffner', 'state': 'FL', 'position': 'OC', 'height': 75.0, 'weight': '315', 'compRating': '0.8825', 'compStars': 3, 'nationalRank': '452', 'positionRank': '6', 'stateRank': '59', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '3', '247stateRank': '55'}, {'school': 'south-carolina', 'year': '2012', 'playerName': 'Brendan Nosovitch', 'highSchool': 'Central Catholic', 'city': 'Allentown', 'state': 'PA', 'position': 'DUAL', 'height': 74.0, 'weight': '200', 'compRating': '0.8763', 'compStars': 3, 'nationalRank': '539', 'positionRank': '11', 'stateRank': '17', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '8', '247stateRank': '15'}, {'school': 'south-carolina', 'year': '2012', 'playerName': 'Kyle Fleetwood', 'highSchool': 'Stephenson', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'S', 'height': 72.0, 'weight': '200', 'compRating': '0.8717', 'compStars': 3, 'nationalRank': '598', 'positionRank': '37', 'stateRank': '45', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '44', '247stateRank': '51'}, {'school': 'south-carolina', 'year': '2012', 'playerName': 'Kendric Salley', 'highSchool': 'Williston Elko', 'city': 'Williston', 'state': 'SC', 'position': 'RB', 'height': 70.0, 'weight': '210', 'compRating': '0.8648', 'compStars': 3, 'nationalRank': '693', 'positionRank': '42', 'stateRank': '17', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '59', '247stateRank': '19'}, {'school': 'south-carolina', 'year': '2012', 'playerName': 'T.J. Holloman', 'highSchool': 'St. Pius X', 'city': 'Atlanta', 'state': 'GA', 'position': 'ILB', 'height': 74.0, 'weight': '206', 'compRating': '0.8647', 'compStars': 3, 'nationalRank': '696', 'positionRank': '28', 'stateRank': '56', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '31', '247stateRank': '68'}, {'school': 'south-carolina', 'year': '2012', 'playerName': 'Rico McWilliams', 'highSchool': 'Lovejoy', 'city': 'Hampton', 'state': 'GA', 'position': 'CB', 'height': 72.0, 'weight': '170', 'compRating': '0.8549', 'compStars': 3, 'nationalRank': '804', 'positionRank': '57', 'stateRank': '67', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '63', '247stateRank': '72'}, {'school': 'south-carolina', 'year': '2012', 'playerName': 'Chris Moody', 'highSchool': 'Henry County', 'city': 'McDonough', 'state': 'GA', 'position': 'ATH', 'height': 73.0, 'weight': '190', 'compRating': '0.8525', 'compStars': 3, 'nationalRank': '835', 'positionRank': '60', 'stateRank': '69', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '71', '247stateRank': '65'}, {'school': 'south-carolina', 'year': '2012', 'playerName': 'T.J. Gurley', 'highSchool': 'Cairo', 'city': 'Cairo', 'state': 'GA', 'position': 'CB', 'height': 70.0, 'weight': '185', 'compRating': '0.8519', 'compStars': 3, 'nationalRank': '849', 'positionRank': '59', 'stateRank': '71', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '55', '247stateRank': '52'}, {'school': 'south-carolina', 'year': '2012', 'playerName': 'Clayton Stadnik', 'highSchool': 'Western Guilford', 'city': 'Greensboro', 'state': 'NC', 'position': 'OC', 'height': 74.5, 'weight': '255', 'compRating': '0.8459', 'compStars': 3, 'nationalRank': '930', 'positionRank': '17', 'stateRank': '30', '247Rating': ' 77 ', '247Stars': 2, '247positionRank': '27', '247stateRank': '48'}, {'school': 'south-carolina', 'year': '2012', 'playerName': 'Nick St. Germain', 'highSchool': 'McEachern', 'city': 'Powder Springs', 'state': 'GA', 'position': 'K', 'height': 70.0, 'weight': '165', 'compRating': '0.8312', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '6', 'stateRank': '98', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '4', '247stateRank': '106'}, {'school': 'south-carolina', 'year': '2012', 'playerName': 'Mason Zandi', 'highSchool': 'Chapin', 'city': 'Chapin', 'state': 'SC', 'position': 'OT', 'height': 80.0, 'weight': '265', 'compRating': '0.8160', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '128', 'stateRank': '29', '247Rating': ' 77 ', '247Stars': 2, '247positionRank': '154', '247stateRank': '34'}, {'school': 'south-carolina', 'year': '2012', 'playerName': 'Perry Orth', 'highSchool': 'Ponte Vedra', 'city': 'Ponte Vedra Beach', 'state': 'FL', 'position': 'PRO', 'height': 73.0, 'weight': '190', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2012', 'playerName': 'Devin Potter', 'highSchool': 'South Caldwell', 'city': 'Hudson', 'state': 'NC', 'position': 'RB', 'height': 70.0, 'weight': '200', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2012', 'playerName': 'Sean Odom', 'highSchool': 'Orangeburg Preparatory School', 'city': 'Orangeburg', 'state': 'SC', 'position': 'WR', 'height': 72.0, 'weight': '190', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2012', 'playerName': 'Shannon James', 'highSchool': 'South Florence', 'city': 'Florence', 'state': 'SC', 'position': 'CB', 'height': 67.0, 'weight': '160', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA'}, {'school': 'south-carolina', 'year': '2012', 'playerName': 'Matrick Belton', 'highSchool': 'Keenan', 'city': 'Columbia', 'state': 'SC', 'position': 'ATH', 'height': 74.0, 'weight': '200', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2012', 'playerName': 'Joe Harris', 'highSchool': 'Lithonia', 'city': 'Lithonia', 'state': 'GA', 'position': 'OG', 'height': 75.0, 'weight': '292', 'compRating': '0.9166', 'compStars': 4, 'nationalRank': '241', 'positionRank': '11', 'stateRank': '20'}, {'school': 'south-carolina', 'year': '2012', 'playerName': 'Jhaustin Thomas', 'highSchool': 'Columbia', 'city': 'Decatur', 'state': 'GA', 'position': 'SDE', 'height': 78.0, 'weight': '245', 'compRating': '0.8715', 'compStars': 3, 'nationalRank': '601', 'positionRank': '32', 'stateRank': '46', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2012', 'playerName': 'Carlos Hood', 'highSchool': 'Stephenson', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'DT', 'height': 75.0, 'weight': '265', 'compRating': '0.8509', 'compStars': 3, 'nationalRank': '862', 'positionRank': '59', 'stateRank': '74'}, {'school': 'lsu', 'year': '2002', 'playerName': 'Cameron Vaughn', 'highSchool': 'Archbishop Shaw', 'city': 'Marrero', 'state': 'LA', 'position': 'ILB', 'height': 75.0, 'weight': '220', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '153', 'positionRank': '6', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2002', 'playerName': 'Skyler Green', 'highSchool': 'L.W. Higgins', 'city': 'Marrero', 'state': 'LA', 'position': 'APB', 'height': 69.0, 'weight': '192', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '201', 'positionRank': '4', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2002', 'playerName': 'Garett Wibel', 'highSchool': 'Archbishop Rummel', 'city': 'Metairie', 'state': 'LA', 'position': 'OG', 'height': 75.0, 'weight': '315', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '207', 'positionRank': '8', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2002', 'playerName': 'Terrell McGill', 'highSchool': 'Norland', 'city': 'Miami', 'state': 'FL', 'position': 'OT', 'height': 76.0, 'weight': '280', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '244', 'positionRank': '22', 'stateRank': '36', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2002', 'playerName': 'Blair Irvin', 'highSchool': 'Patterson', 'city': 'Patterson', 'state': 'LA', 'position': 'ATH', 'height': 72.0, 'weight': '170', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '254', 'positionRank': '18', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2002', 'playerName': 'Alonzo Manuel', 'highSchool': 'Jennings', 'city': 'Jennings', 'state': 'LA', 'position': 'SDE', 'height': 75.0, 'weight': '240', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '269', 'positionRank': '14', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2002', 'playerName': 'Jason Spadoni', 'highSchool': 'John Curtis', 'city': 'New Orleans', 'state': 'LA', 'position': 'S', 'height': 73.0, 'weight': '205', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '316', 'positionRank': '16', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2002', 'playerName': 'Doug Planchard', 'highSchool': 'Catholic', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'OG', 'height': 75.0, 'weight': '275', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '336', 'positionRank': '22', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2002', 'playerName': 'Lawrence Williams', 'highSchool': 'Lutcher', 'city': 'Lutcher', 'state': 'LA', 'position': 'ILB', 'height': 76.0, 'weight': '230', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '491', 'positionRank': '26', 'stateRank': '27', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2002', 'playerName': 'Jeff Cook', 'highSchool': 'Notre Dame', 'city': 'Crowley', 'state': 'LA', 'position': 'S', 'height': 75.0, 'weight': '190', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '523', 'positionRank': '32', 'stateRank': '28', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2002', 'playerName': 'Dominique Owens', 'highSchool': 'Kempner', 'city': 'Sugar Land', 'state': 'TX', 'position': 'APB', 'height': 70.0, 'weight': '185', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '552', 'positionRank': '20', 'stateRank': '90', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2002', 'playerName': 'Brian Johnson', 'highSchool': 'Amos P. Godby', 'city': 'Tallahassee', 'state': 'FL', 'position': 'OT', 'height': 77.0, 'weight': '300', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '568', 'positionRank': '47', 'stateRank': '69', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2002', 'playerName': 'Vernon Russell', 'highSchool': 'John Curtis', 'city': 'New Orleans', 'state': 'LA', 'position': 'CB', 'height': 73.0, 'weight': '185', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '571', 'positionRank': '39', 'stateRank': '31', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2002', 'playerName': 'Paris Hodges', 'highSchool': 'Vanden', 'city': 'Fairfield', 'state': 'CA', 'position': 'OT', 'height': 79.0, 'weight': '330', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '576', 'positionRank': '48', 'stateRank': '65', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2002', 'playerName': 'Keron Gordon', 'highSchool': 'Plant', 'city': 'Tampa', 'state': 'FL', 'position': 'S', 'height': 73.0, 'weight': '185', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '637', 'positionRank': '40', 'stateRank': '71', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2002', 'playerName': 'Chris Vincent', 'highSchool': 'Valley Forge Military Academy', 'city': 'None', 'state': 'None', 'position': 'ATH', 'height': 74.0, 'weight': '210', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '772', 'positionRank': '44', 'stateRank': '27', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2002', 'playerName': 'Ryan Willis', 'highSchool': 'Holy Cross', 'city': 'New Orleans', 'state': 'LA', 'position': 'WDE', 'height': 76.0, 'weight': '250', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '822', 'positionRank': '40', 'stateRank': '34', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2002', 'playerName': 'Troy Hankton', 'highSchool': 'Walter L. Cohen', 'city': 'New Orleans', 'state': 'LA', 'position': 'WR', 'height': 70.0, 'weight': '180', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '852', 'positionRank': '77', 'stateRank': '38', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2002', 'playerName': 'Junior Joseph', 'highSchool': 'O Perry Walker', 'city': 'New Orleans', 'state': 'LA', 'position': 'WR', 'height': 73.0, 'weight': '175', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '891', 'positionRank': '85', 'stateRank': '41', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2002', 'playerName': 'Willie Demps', 'highSchool': 'Booker T. Washington', 'city': 'Pensacola', 'state': 'FL', 'position': 'ILB', 'height': 74.0, 'weight': '230', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '89', 'stateRank': '153', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2002', 'playerName': 'Lester Ricard', 'highSchool': 'Amite', 'city': 'Amite', 'state': 'LA', 'position': 'DUAL', 'height': 76.0, 'weight': '195', 'compRating': '0.9367', 'compStars': 4, 'nationalRank': '101', 'positionRank': '6', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2002', 'playerName': 'Kyle Williams', 'highSchool': 'Ruston', 'city': 'Ruston', 'state': 'LA', 'position': 'DT', 'height': 75.0, 'weight': '290', 'compRating': '0.9303', 'compStars': 4, 'nationalRank': '120', 'positionRank': '13', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2002', 'playerName': 'Nate Livings', 'highSchool': 'Washington-Marion', 'city': 'Lake Charles', 'state': 'LA', 'position': 'OT', 'height': 77.0, 'weight': '315', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '387', 'positionRank': '33', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2006', 'playerName': 'Jacques McClendon', 'highSchool': 'Baylor School', 'city': 'Chattanooga', 'state': 'TN', 'position': 'OG', 'height': 75.0, 'weight': '295', 'compRating': '0.9550', 'compStars': 4, 'nationalRank': '88', 'positionRank': '7', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2006', 'playerName': 'Walter Fisher', 'highSchool': 'Coffeyville C.C.', 'city': 'Coffeyville', 'state': 'KS', 'position': 'SDE', 'height': 74.0, 'weight': '265', 'compRating': '0.9333', 'compStars': 4, 'nationalRank': '4', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2006', 'playerName': 'Quintin Hancock', 'highSchool': 'St. Augustine', 'city': 'Saint Augustine', 'state': 'FL', 'position': 'WR', 'height': 75.0, 'weight': '182', 'compRating': '0.8826', 'compStars': 3, 'nationalRank': '271', 'positionRank': '35', 'stateRank': '42', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2006', 'playerName': 'Blake Garretson', 'highSchool': 'Morristown East', 'city': 'Morristown', 'state': 'TN', 'position': 'DT', 'height': 75.0, 'weight': '277', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '317', 'positionRank': '29', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2006', 'playerName': 'Lee Smith', 'highSchool': 'Powell', 'city': 'Powell', 'state': 'TN', 'position': 'TE', 'height': 78.0, 'weight': '245', 'compRating': '0.8764', 'compStars': 3, 'nationalRank': '335', 'positionRank': '19', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2006', 'playerName': 'Nick Stephens', 'highSchool': 'Flower Mound', 'city': 'Flower Mound', 'state': 'TX', 'position': 'PRO', 'height': 75.0, 'weight': '195', 'compRating': '0.8733', 'compStars': 3, 'nationalRank': '356', 'positionRank': '14', 'stateRank': '49', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2006', 'playerName': 'Ramone Johnson', 'highSchool': 'Morgan Park', 'city': 'Chicago', 'state': 'IL', 'position': 'OG', 'height': 76.0, 'weight': '305', 'compRating': '0.8719', 'compStars': 3, 'nationalRank': '359', 'positionRank': '21', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2006', 'playerName': 'Chase Nelson', 'highSchool': 'Union', 'city': 'Tulsa', 'state': 'OK', 'position': 'SDE', 'height': 76.0, 'weight': '255', 'compRating': '0.8715', 'compStars': 3, 'nationalRank': '366', 'positionRank': '26', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2006', 'playerName': 'Dustin Lindsey', 'highSchool': 'Alcoa', 'city': 'Alcoa', 'state': 'TN', 'position': 'RB', 'height': 73.0, 'weight': '215', 'compRating': '0.8684', 'compStars': 3, 'nationalRank': '383', 'positionRank': '35', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2006', 'playerName': 'Justin Garrett', 'highSchool': 'Pasadena City College', 'city': 'Pasadena', 'state': 'CA', 'position': 'S', 'height': 74.0, 'weight': '195', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '28', 'positionRank': '3', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2006', 'playerName': 'Luke Stocker', 'highSchool': 'Madison Southern', 'city': 'Berea', 'state': 'KY', 'position': 'TE', 'height': 78.0, 'weight': '220', 'compRating': '0.8653', 'compStars': 3, 'nationalRank': '409', 'positionRank': '22', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2006', 'playerName': 'Darius Myers', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'OG', 'height': 76.0, 'weight': '320', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '17', 'positionRank': '1', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2006', 'playerName': 'Cody Pope', 'highSchool': 'Cathedral Catholic', 'city': 'San Diego', 'state': 'CA', 'position': 'OT', 'height': 77.0, 'weight': '268', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '765', 'positionRank': '50', 'stateRank': '82', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2006', 'playerName': 'Gerald Williams', 'highSchool': 'Boyd Anderson', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'ILB', 'height': 76.0, 'weight': '226', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '766', 'positionRank': '49', 'stateRank': '100', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2006', 'playerName': 'Stephaun Raines', 'highSchool': 'Dalton', 'city': 'Dalton', 'state': 'GA', 'position': 'WR', 'height': 72.0, 'weight': '172', 'compRating': '0.8319', 'compStars': 3, 'nationalRank': '877', 'positionRank': '97', 'stateRank': '49', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2006', 'playerName': 'Dorian Davis', 'highSchool': 'Iowa City', 'city': 'Iowa City', 'state': 'IA', 'position': 'OLB', 'height': 73.0, 'weight': '195', 'compRating': '0.8149', 'compStars': 3, 'nationalRank': '978', 'positionRank': '64', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2006', 'playerName': 'Daniel Lincoln', 'highSchool': 'Forest', 'city': 'Ocala', 'state': 'FL', 'position': 'K', 'height': 72.0, 'weight': '210', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2006', 'playerName': 'Chad Cunningham', 'highSchool': 'Dawson County', 'city': 'Dawsonville', 'state': 'GA', 'position': 'P', 'height': 74.0, 'weight': '205', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2006', 'playerName': 'Jarrod Shaw', 'highSchool': 'Northside', 'city': 'Lafayette', 'state': 'LA', 'position': 'OG', 'height': 76.0, 'weight': '331', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2006', 'playerName': 'Victor Thomas', 'highSchool': 'Olive Branch', 'city': 'Olive Branch', 'state': 'MS', 'position': 'OC', 'height': 75.0, 'weight': '293', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2006', 'playerName': 'LaMarcus Thompson', 'highSchool': 'Redan', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'OLB', 'height': 73.0, 'weight': '228', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2006', 'playerName': 'Brent Vinson', 'highSchool': 'Phoebus', 'city': 'Hampton', 'state': 'VA', 'position': 'ATH', 'height': 74.0, 'weight': '180', 'compRating': '0.8594', 'compStars': 3, 'nationalRank': '460', 'positionRank': '34', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2013', 'playerName': 'Vernon Hargreaves III', 'highSchool': 'Wharton', 'city': 'Tampa', 'state': 'FL', 'position': 'CB', 'height': 71.0, 'weight': '185', 'compRating': '0.9980', 'compStars': 5, 'nationalRank': '3', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 100 ', '247Stars': 5, '247nationalRank': '4', '247positionRank': '1', '247stateRank': '2'}, {'school': 'florida', 'year': '2013', 'playerName': 'Kelvin Taylor', 'highSchool': 'Glades Day School', 'city': 'Belle Glade', 'state': 'FL', 'position': 'RB', 'height': 70.0, 'weight': '216', 'compRating': '0.9897', 'compStars': 5, 'nationalRank': '21', 'positionRank': '2', 'stateRank': '5', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '19', '247positionRank': '2', '247stateRank': '6'}, {'school': 'florida', 'year': '2013', 'playerName': 'Alex Anzalone', 'highSchool': 'Wyomissing', 'city': 'Reading', 'state': 'PA', 'position': 'OLB', 'height': 75.0, 'weight': '232', 'compRating': '0.9750', 'compStars': 4, 'nationalRank': '51', 'positionRank': '4', 'stateRank': '4', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '32', '247positionRank': '4', '247stateRank': '3'}, {'school': 'florida', 'year': '2013', 'playerName': 'Daniel McMillian', 'highSchool': 'First Coast', 'city': 'Jacksonville', 'state': 'FL', 'position': 'OLB', 'height': 74.0, 'weight': '220', 'compRating': '0.9734', 'compStars': 4, 'nationalRank': '59', 'positionRank': '6', 'stateRank': '13', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '44', '247positionRank': '5', '247stateRank': '11'}, {'school': 'florida', 'year': '2013', 'playerName': 'Demarcus Robinson', 'highSchool': 'Peach County', 'city': 'Fort Valley', 'state': 'GA', 'position': 'WR', 'height': 73.5, 'weight': '196', 'compRating': '0.9648', 'compStars': 4, 'nationalRank': '78', 'positionRank': '10', 'stateRank': '8', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '148', '247positionRank': '16', '247stateRank': '13'}, {'school': 'florida', 'year': '2013', 'playerName': 'Marcell Harris', 'highSchool': 'Dr. Phillips', 'city': 'Orlando', 'state': 'FL', 'position': 'S', 'height': 73.0, 'weight': '209', 'compRating': '0.9647', 'compStars': 4, 'nationalRank': '79', 'positionRank': '11', 'stateRank': '15', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '63', '247positionRank': '10', '247stateRank': '15'}, {'school': 'florida', 'year': '2013', 'playerName': 'Ahmad Fulwood', 'highSchool': 'Bishop Kenny', 'city': 'Jacksonville', 'state': 'FL', 'position': 'WR', 'height': 76.0, 'weight': '200', 'compRating': '0.9512', 'compStars': 4, 'nationalRank': '105', 'positionRank': '12', 'stateRank': '17', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '158', '247positionRank': '20', '247stateRank': '22'}, {'school': 'florida', 'year': '2013', 'playerName': 'Keanu Neal', 'highSchool': 'South Sumter', 'city': 'Bushnell', 'state': 'FL', 'position': 'S', 'height': 73.0, 'weight': '200', 'compRating': '0.9486', 'compStars': 4, 'nationalRank': '110', 'positionRank': '13', 'stateRank': '19', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '193', '247positionRank': '18', '247stateRank': '27'}, {'school': 'florida', 'year': '2013', 'playerName': 'Caleb Brantley', 'highSchool': 'Crescent City', 'city': 'Crescent City', 'state': 'FL', 'position': 'DT', 'height': 75.0, 'weight': '308', 'compRating': '0.9478', 'compStars': 4, 'nationalRank': '113', 'positionRank': '9', 'stateRank': '21', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '176', '247positionRank': '14', '247stateRank': '25'}, {'school': 'florida', 'year': '2013', 'playerName': 'Matt Rolin', 'highSchool': 'Briar Woods', 'city': 'Ashburn', 'state': 'VA', 'position': 'OLB', 'height': 76.0, 'weight': '210', 'compRating': '0.9334', 'compStars': 4, 'nationalRank': '149', 'positionRank': '13', 'stateRank': '6', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '161', '247positionRank': '12', '247stateRank': '10'}, {'school': 'florida', 'year': '2013', 'playerName': 'Alvin Bailey', 'highSchool': 'Armwood', 'city': 'Seffner', 'state': 'FL', 'position': 'WR', 'height': 70.5, 'weight': '175', 'compRating': '0.9236', 'compStars': 4, 'nationalRank': '180', 'positionRank': '22', 'stateRank': '26', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '222', '247positionRank': '29', '247stateRank': '32'}, {'school': 'florida', 'year': '2013', 'playerName': 'Nick Washington', 'highSchool': 'Trinity Christian Academy', 'city': 'Jacksonville', 'state': 'FL', 'position': 'S', 'height': 72.0, 'weight': '182', 'compRating': '0.9208', 'compStars': 4, 'nationalRank': '196', 'positionRank': '17', 'stateRank': '28', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '29', '247stateRank': '47'}, {'school': 'florida', 'year': '2013', 'playerName': 'Jay-nard Bostwick', 'highSchool': 'St. Lucie West Centennial', 'city': 'Port Saint Lucie', 'state': 'FL', 'position': 'SDE', 'height': 76.0, 'weight': '280', 'compRating': '0.9103', 'compStars': 4, 'nationalRank': '238', 'positionRank': '14', 'stateRank': '35', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '16', '247stateRank': '45'}, {'school': 'florida', 'year': '2013', 'playerName': 'Jordan Sherit', 'highSchool': 'Hillsborough', 'city': 'Tampa', 'state': 'FL', 'position': 'WDE', 'height': 76.0, 'weight': '240', 'compRating': '0.9061', 'compStars': 4, 'nationalRank': '248', 'positionRank': '8', 'stateRank': '38', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '215', '247positionRank': '9', '247stateRank': '30'}, {'school': 'florida', 'year': '2013', 'playerName': 'Adam Lane', 'highSchool': 'Winter Haven', 'city': 'Winter Haven', 'state': 'FL', 'position': 'RB', 'height': 68.0, 'weight': '214', 'compRating': '0.9025', 'compStars': 4, 'nationalRank': '272', 'positionRank': '20', 'stateRank': '41', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '29', '247stateRank': '55'}, {'school': 'florida', 'year': '2013', 'playerName': 'Darious Cummings', 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'DT', 'height': 74.0, 'weight': '301', 'compRating': '0.8994', 'compStars': 4, 'nationalRank': '13', 'positionRank': '5', 'stateRank': '5', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '23', '247positionRank': '4', '247stateRank': '6'}, {'school': 'florida', 'year': '2013', 'playerName': 'Trenton Brown', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'OT', 'height': 80.0, 'weight': '350', 'compRating': '0.8877', 'compStars': 3, 'nationalRank': '22', 'positionRank': '2', 'stateRank': '1', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '19', '247positionRank': '3', '247stateRank': '2'}, {'school': 'florida', 'year': '2013', 'playerName': 'Joey Ivie', 'highSchool': 'Pasco', 'city': 'Dade City', 'state': 'FL', 'position': 'SDE', 'height': 76.0, 'weight': '265', 'compRating': '0.8814', 'compStars': 3, 'nationalRank': '371', 'positionRank': '20', 'stateRank': '54', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '19', '247stateRank': '52'}, {'school': 'florida', 'year': '2013', 'playerName': 'Antonio Riles', 'highSchool': 'Archer', 'city': 'Lawrenceville', 'state': 'GA', 'position': 'SDE', 'height': 76.0, 'weight': '265', 'compRating': '0.8753', 'compStars': 3, 'nationalRank': '424', 'positionRank': '25', 'stateRank': '36', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '25', '247stateRank': '40'}, {'school': 'florida', 'year': '2013', 'playerName': 'Roderick Johnson', 'highSchool': 'American Heritage B/D', 'city': 'Delray Beach', 'state': 'FL', 'position': 'OG', 'height': 77.0, 'weight': '315', 'compRating': '0.8753', 'compStars': 3, 'nationalRank': '425', 'positionRank': '23', 'stateRank': '64', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '21', '247stateRank': '60'}, {'school': 'florida', 'year': '2013', 'playerName': 'Marqui Hawkins', 'highSchool': 'Carver', 'city': 'Columbus', 'state': 'GA', 'position': 'WR', 'height': 73.0, 'weight': '194', 'compRating': '0.8739', 'compStars': 3, 'nationalRank': '435', 'positionRank': '62', 'stateRank': '38', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '131', '247stateRank': '77'}, {'school': 'florida', 'year': '2013', 'playerName': 'Cameron Dillard', 'highSchool': 'Canton', 'city': 'Canton', 'state': 'MI', 'position': 'OG', 'height': 75.0, 'weight': '290', 'compRating': '0.8712', 'compStars': 3, 'nationalRank': '465', 'positionRank': '26', 'stateRank': '10', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '26', '247stateRank': '9'}, {'school': 'florida', 'year': '2013', 'playerName': 'Jarrad Davis', 'highSchool': 'Camden County', 'city': 'Kingsland', 'state': 'GA', 'position': 'OLB', 'height': 74.0, 'weight': '210', 'compRating': '0.8681', 'compStars': 3, 'nationalRank': '496', 'positionRank': '39', 'stateRank': '45', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '40', '247stateRank': '44'}, {'school': 'florida', 'year': '2013', 'playerName': 'Chris Thompson', 'highSchool': 'Gainesville', 'city': 'Gainesville', 'state': 'FL', 'position': 'WR', 'height': 71.5, 'weight': '165', 'compRating': '0.8544', 'compStars': 3, 'nationalRank': '726', 'positionRank': '97', 'stateRank': '109', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '104', '247stateRank': '120'}, {'school': 'florida', 'year': '2013', 'playerName': 'Max Staver', 'highSchool': 'Brentwood Academy', 'city': 'Brentwood', 'state': 'TN', 'position': 'PRO', 'height': 77.0, 'weight': '238', 'compRating': '0.8501', 'compStars': 3, 'nationalRank': '813', 'positionRank': '34', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2013', 'playerName': 'Octavius Jackson', 'highSchool': 'Colquitt County', 'city': 'Moultrie', 'state': 'GA', 'position': 'OG', 'height': 76.0, 'weight': '280', 'compRating': '0.8469', 'compStars': 3, 'nationalRank': '863', 'positionRank': '48', 'stateRank': '81', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '51', '247stateRank': '83'}, {'school': 'florida', 'year': '2013', 'playerName': 'Trevon Young', 'highSchool': 'Braden River', 'city': 'Bradenton', 'state': 'FL', 'position': 'OT', 'height': 76.5, 'weight': '275', 'compRating': '0.8223', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '107', 'stateRank': '193', '247Rating': ' 77 ', '247Stars': 2, '247positionRank': '157', '247stateRank': '326'}, {'school': 'florida', 'year': '2013', 'playerName': 'Johnny Townsend', 'highSchool': 'Boone', 'city': 'Orlando', 'state': 'FL', 'position': 'P', 'height': 74.0, 'weight': '200', 'compRating': '0.8156', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '2', 'stateRank': '207', '247Rating': ' 75 ', '247Stars': 2, '247positionRank': '6', '247stateRank': '354'}, {'school': 'texas-am', 'year': '2006', 'playerName': 'Michael Goodson', 'highSchool': 'Klein Collins', 'city': 'Spring', 'state': 'TX', 'position': 'RB', 'height': 72.0, 'weight': '205', 'compRating': '0.9285', 'compStars': 4, 'nationalRank': '146', 'positionRank': '21', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2006', 'playerName': 'Jerrod Johnson', 'highSchool': 'Humble', 'city': 'Humble', 'state': 'TX', 'position': 'ATH', 'height': 78.0, 'weight': '219', 'compRating': '0.8795', 'compStars': 3, 'nationalRank': '296', 'positionRank': '20', 'stateRank': '39', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2006', 'playerName': 'Lucas Patterson', 'highSchool': 'Henrietta', 'city': 'Henrietta', 'state': 'TX', 'position': 'OT', 'height': 77.0, 'weight': '290', 'compRating': '0.8764', 'compStars': 3, 'nationalRank': '339', 'positionRank': '26', 'stateRank': '44', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2006', 'playerName': 'Jordan Pugh', 'highSchool': 'Plano West', 'city': 'Plano', 'state': 'TX', 'position': 'CB', 'height': 71.0, 'weight': '177', 'compRating': '0.8750', 'compStars': 3, 'nationalRank': '342', 'positionRank': '28', 'stateRank': '45', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2006', 'playerName': 'E.J. Shankle', 'highSchool': 'Lufkin', 'city': 'Lufkin', 'state': 'TX', 'position': 'APB', 'height': 70.0, 'weight': '180', 'compRating': '0.8715', 'compStars': 3, 'nationalRank': '363', 'positionRank': '4', 'stateRank': '50', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2006', 'playerName': 'Latreal Cooper', 'highSchool': 'Cuero', 'city': 'Cuero', 'state': 'TX', 'position': 'RB', 'height': 74.0, 'weight': '200', 'compRating': '0.8684', 'compStars': 3, 'nationalRank': '382', 'positionRank': '34', 'stateRank': '56', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2006', 'playerName': 'Leslie Ray', 'highSchool': 'Greenwood', 'city': 'Midland', 'state': 'TX', 'position': 'DT', 'height': 74.0, 'weight': '260', 'compRating': '0.8684', 'compStars': 3, 'nationalRank': '384', 'positionRank': '34', 'stateRank': '57', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2006', 'playerName': 'Misi Tupe', 'highSchool': 'Dixie', 'city': 'Saint George', 'state': 'UT', 'position': 'ILB', 'height': 73.0, 'weight': '235', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '402', 'positionRank': '20', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2006', 'playerName': 'Cody Williams', 'highSchool': 'Longview', 'city': 'Longview', 'state': 'TX', 'position': 'SDE', 'height': 76.0, 'weight': '235', 'compRating': '0.8608', 'compStars': 3, 'nationalRank': '448', 'positionRank': '30', 'stateRank': '72', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2006', 'playerName': 'Kenny Brown', 'highSchool': 'Putnam City', 'city': 'Oklahoma City', 'state': 'OK', 'position': 'WR', 'height': 75.0, 'weight': '197', 'compRating': '0.8573', 'compStars': 3, 'nationalRank': '481', 'positionRank': '62', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2006', 'playerName': 'DeMaurier Thompson', 'highSchool': 'W.T. White', 'city': 'Dallas', 'state': 'TX', 'position': 'S', 'height': 73.0, 'weight': '176', 'compRating': '0.8573', 'compStars': 3, 'nationalRank': '482', 'positionRank': '35', 'stateRank': '78', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2006', 'playerName': 'Cornell Tarrant', 'highSchool': 'W W Samuell', 'city': 'Dallas', 'state': 'TX', 'position': 'RB', 'height': 71.0, 'weight': '185', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '516', 'positionRank': '43', 'stateRank': '84', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2006', 'playerName': 'Matt Szymanski', 'highSchool': 'A&M Consolidated', 'city': 'College Station', 'state': 'TX', 'position': 'K', 'height': 73.0, 'weight': '189', 'compRating': '0.8542', 'compStars': 3, 'nationalRank': '546', 'positionRank': '3', 'stateRank': '89', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2006', 'playerName': 'Terrence Mccoy', 'highSchool': 'Lee', 'city': 'Midland', 'state': 'TX', 'position': 'WR', 'height': 75.0, 'weight': '198', 'compRating': '0.8465', 'compStars': 3, 'nationalRank': '615', 'positionRank': '73', 'stateRank': '105', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2006', 'playerName': 'Jonathan Batson', 'highSchool': 'Cisco College', 'city': 'Cisco', 'state': 'TX', 'position': 'S', 'height': 74.0, 'weight': '190', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '92', 'positionRank': '11', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2006', 'playerName': 'Jarius Neal', 'highSchool': 'East Central C.C.', 'city': 'Decatur', 'state': 'MS', 'position': 'S', 'height': 75.0, 'weight': '218', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '94', 'positionRank': '13', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2006', 'playerName': 'Torey Degrate', 'highSchool': 'Trinity Valley C.C.', 'city': 'Athens', 'state': 'TX', 'position': 'WR', 'height': 72.0, 'weight': '180', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '97', 'positionRank': '10', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2006', 'playerName': 'Pierre Fleurinor', 'highSchool': 'Wharton', 'city': 'Wharton', 'state': 'TX', 'position': 'OLB', 'height': 72.0, 'weight': '210', 'compRating': '0.8309', 'compStars': 3, 'nationalRank': '879', 'positionRank': '55', 'stateRank': '149', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2006', 'playerName': 'Christian Calfisch', 'highSchool': 'James Madison', 'city': 'San Antonio', 'state': 'TX', 'position': 'ATH', 'height': 74.0, 'weight': '178', 'compRating': '0.8188', 'compStars': 3, 'nationalRank': '956', 'positionRank': '77', 'stateRank': '162', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2006', 'playerName': 'Cody Beyer', 'highSchool': 'Smithson Valley', 'city': 'Spring Branch', 'state': 'TX', 'position': 'WR', 'height': 73.0, 'weight': '175', 'compRating': '0.8181', 'compStars': 3, 'nationalRank': '958', 'positionRank': '105', 'stateRank': '163', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2006', 'playerName': 'Will Harris', 'highSchool': 'Solano C.C.', 'city': 'Fairfield', 'state': 'CA', 'position': 'S', 'height': 74.0, 'weight': '210', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': '172', 'positionRank': '20', 'stateRank': '86', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2006', 'playerName': 'Mark Dodge', 'highSchool': 'Feather River College', 'city': 'Plumas Ntl Forest', 'state': 'CA', 'position': 'OLB', 'height': 75.0, 'weight': '225', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2006', 'playerName': 'Mike Goodson', 'highSchool': 'Klein Collins', 'city': 'Spring', 'state': 'TX', 'position': 'RB', 'height': 71.0, 'weight': '190', 'compRating': '0.9887', 'compStars': 5, 'nationalRank': '25', 'positionRank': '6', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2006', 'playerName': 'Anthony Lewis', 'highSchool': 'Haltom', 'city': 'Fort Worth', 'state': 'TX', 'position': 'OLB', 'height': 74.0, 'weight': '220', 'compRating': '0.9208', 'compStars': 4, 'nationalRank': '171', 'positionRank': '9', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2002', 'playerName': 'Kamaal Ahmad', 'highSchool': 'Northeastern Oklahoma A&M', 'city': 'Miami', 'state': 'OK', 'position': 'ILB', 'height': 74.0, 'weight': '230', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2002', 'playerName': 'Mike Aitcheson', 'highSchool': 'Killian', 'city': 'Miami', 'state': 'FL', 'position': 'DT', 'height': 76.0, 'weight': '270', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2002', 'playerName': 'Chris Bernard', 'highSchool': 'Saddleback College', 'city': 'Mission Viejo', 'state': 'CA', 'position': 'WR', 'height': 73.0, 'weight': '190', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2002', 'playerName': 'Joe Brady', 'highSchool': 'Beechwood', 'city': 'Ft Mitchell', 'state': 'KY', 'position': 'DT', 'height': 75.0, 'weight': '290', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2002', 'playerName': 'Randy Driver', 'highSchool': 'Glasgow', 'city': 'Glasgow', 'state': 'KY', 'position': 'S', 'height': 73.0, 'weight': '205', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2002', 'playerName': 'Arliss Beach', 'highSchool': 'Boyd County', 'city': 'Ashland', 'state': 'KY', 'position': 'RB', 'height': 72.0, 'weight': '185', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2002', 'playerName': 'Monquantae Gibson', 'highSchool': 'Moore Traditional School', 'city': 'Louisville', 'state': 'KY', 'position': 'RB', 'height': 73.0, 'weight': '195', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2002', 'playerName': 'Glenn Holt', 'highSchool': 'Miami Central', 'city': 'Miami', 'state': 'FL', 'position': 'WR', 'height': 74.0, 'weight': '175', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2002', 'playerName': 'Hayden Lane', 'highSchool': 'Brookwood', 'city': 'Snellville', 'state': 'GA', 'position': 'OT', 'height': 78.0, 'weight': '265', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2002', 'playerName': 'Jared McGowan', 'highSchool': 'Horn Lake', 'city': 'Horn Lake', 'state': 'MS', 'position': 'OG', 'height': 76.0, 'weight': '280', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2002', 'playerName': 'Lamar Mills', 'highSchool': 'Archbishop Rummel', 'city': 'Metairie', 'state': 'LA', 'position': 'DT', 'height': 74.0, 'weight': '275', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2002', 'playerName': 'Kareem Reid', 'highSchool': 'Coral Springs', 'city': 'Pompano Beach', 'state': 'FL', 'position': 'WDE', 'height': 77.0, 'weight': '235', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2002', 'playerName': 'Yancey Reynolds', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'OG', 'height': 77.0, 'weight': '330', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2002', 'playerName': 'Travis Slaydon', 'highSchool': 'Harlingen - South', 'city': 'Harlingen', 'state': 'TX', 'position': 'OT', 'height': 76.0, 'weight': '275', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2002', 'playerName': 'Bo Smith', 'highSchool': 'Owensboro', 'city': 'Owensboro', 'state': 'KY', 'position': 'ATH', 'height': 72.0, 'weight': '160', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2010', 'playerName': 'Nick Demien', 'highSchool': 'Timberland', 'city': 'Wentzville', 'state': 'MO', 'position': 'OT', 'height': 78.0, 'weight': '295', 'compRating': '0.9436', 'compStars': 4, 'nationalRank': '121', 'positionRank': '14', 'stateRank': '1', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '149', '247positionRank': '17', '247stateRank': '1'}, {'school': 'missouri', 'year': '2010', 'playerName': 'Marcus Lucas', 'highSchool': 'Liberty', 'city': 'Liberty', 'state': 'MO', 'position': 'WR', 'height': 77.0, 'weight': '195', 'compRating': '0.9215', 'compStars': 4, 'nationalRank': '187', 'positionRank': '24', 'stateRank': '2', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '213', '247positionRank': '24', '247stateRank': '2'}, {'school': 'missouri', 'year': '2010', 'playerName': 'Kony Ealy', 'highSchool': 'New Madrid', 'city': 'New Madrid', 'state': 'MO', 'position': 'WDE', 'height': 77.0, 'weight': '230', 'compRating': '0.9156', 'compStars': 4, 'nationalRank': '211', 'positionRank': '14', 'stateRank': '3', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '243', '247positionRank': '14', '247stateRank': '4'}, {'school': 'missouri', 'year': '2010', 'playerName': 'James Franklin', 'highSchool': 'Lake Dallas', 'city': 'Lake Dallas', 'state': 'TX', 'position': 'DUAL', 'height': 74.0, 'weight': '218', 'compRating': '0.9065', 'compStars': 4, 'nationalRank': '246', 'positionRank': '5', 'stateRank': '35', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2010', 'playerName': 'Tristen Holt', 'highSchool': 'Gilmer', 'city': 'Gilmer', 'state': 'TX', 'position': 'CB', 'height': 72.0, 'weight': '185', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '280', 'positionRank': '20', 'stateRank': '45'}, {'school': 'missouri', 'year': '2010', 'playerName': 'Jimmie Hunt', 'highSchool': 'Cahokia', 'city': 'East Saint Louis', 'state': 'IL', 'position': 'WR', 'height': 73.0, 'weight': '195', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '281', 'positionRank': '37', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2010', 'playerName': 'Tyler Gabbert', 'highSchool': 'Parkway South', 'city': 'Ballwin', 'state': 'MO', 'position': 'PRO', 'height': 72.0, 'weight': '190', 'compRating': '0.8899', 'compStars': 3, 'nationalRank': '348', 'positionRank': '17', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2010', 'playerName': 'Lucas Vincent', 'highSchool': 'Olathe North', 'city': 'Olathe', 'state': 'KS', 'position': 'DT', 'height': 75.0, 'weight': '267', 'compRating': '0.8885', 'compStars': 3, 'nationalRank': '357', 'positionRank': '31', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2010', 'playerName': 'Mitch Morse', 'highSchool': "St. Michael's Catholic", 'city': 'Austin', 'state': 'TX', 'position': 'OT', 'height': 78.0, 'weight': '282', 'compRating': '0.8826', 'compStars': 3, 'nationalRank': '404', 'positionRank': '32', 'stateRank': '63', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2010', 'playerName': 'Bud Sasser', 'highSchool': 'Ryan', 'city': 'Denton', 'state': 'TX', 'position': 'WR', 'height': 75.0, 'weight': '200', 'compRating': '0.8764', 'compStars': 3, 'nationalRank': '466', 'positionRank': '61', 'stateRank': '70', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2010', 'playerName': 'E.J. Gaines', 'highSchool': 'Fort Osage', 'city': 'Independence', 'state': 'MO', 'position': 'CB', 'height': 70.0, 'weight': '170', 'compRating': '0.8701', 'compStars': 3, 'nationalRank': '557', 'positionRank': '39', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2010', 'playerName': 'Marcus Murphy', 'highSchool': 'DeSoto', 'city': 'DeSoto', 'state': 'TX', 'position': 'RB', 'height': 69.0, 'weight': '170', 'compRating': '0.8701', 'compStars': 3, 'nationalRank': '564', 'positionRank': '48', 'stateRank': '94', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2010', 'playerName': 'Matt Hoch', 'highSchool': 'Harlan Community', 'city': 'Harlan', 'state': 'IA', 'position': 'SDE', 'height': 77.0, 'weight': '230', 'compRating': '0.8701', 'compStars': 3, 'nationalRank': '575', 'positionRank': '29', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2010', 'playerName': 'Xavier Smith', 'highSchool': 'North', 'city': 'Edmond', 'state': 'OK', 'position': 'CB', 'height': 71.0, 'weight': '180', 'compRating': '0.8670', 'compStars': 3, 'nationalRank': '619', 'positionRank': '48', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2010', 'playerName': 'Daniel Easterly', 'highSchool': 'Cass Technical', 'city': 'Detroit', 'state': 'MI', 'position': 'ATH', 'height': 76.0, 'weight': '178', 'compRating': '0.8653', 'compStars': 3, 'nationalRank': '646', 'positionRank': '44', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2010', 'playerName': 'Anthony Gatti', 'highSchool': 'North', 'city': 'Saint Louis', 'state': 'MO', 'position': 'OT', 'height': 78.0, 'weight': '280', 'compRating': '0.8639', 'compStars': 3, 'nationalRank': '706', 'positionRank': '50', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2010', 'playerName': 'Jared Parham', 'highSchool': 'Coppell', 'city': 'Coppell', 'state': 'TX', 'position': 'ILB', 'height': 74.0, 'weight': '220', 'compRating': '0.8622', 'compStars': 3, 'nationalRank': '772', 'positionRank': '31', 'stateRank': '126', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2010', 'playerName': 'Eric Waters', 'highSchool': 'Mansfield Summit', 'city': 'Arlington', 'state': 'TX', 'position': 'TE', 'height': 76.0, 'weight': '215', 'compRating': '0.8590', 'compStars': 3, 'nationalRank': '846', 'positionRank': '34', 'stateRank': '135', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2010', 'playerName': 'Braylon Webb', 'highSchool': 'Gilmer', 'city': 'Gilmer', 'state': 'TX', 'position': 'S', 'height': 74.0, 'weight': '180', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '933', 'positionRank': '68', 'stateRank': '148', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2010', 'playerName': 'Darvin Ruise', 'highSchool': 'Baker County Senior', 'city': 'Glen Saint Mary', 'state': 'FL', 'position': 'ATH', 'height': 74.0, 'weight': '218', 'compRating': '0.8528', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '69', 'stateRank': '152', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2010', 'playerName': 'Henry Josey', 'highSchool': 'Angleton', 'city': 'Angleton', 'state': 'TX', 'position': 'ATH', 'height': 70.0, 'weight': '180', 'compRating': '0.8514', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '70', 'stateRank': '164', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2010', 'playerName': 'Greg White', 'highSchool': 'Dequeen', 'city': 'De Queen', 'state': 'AR', 'position': 'ATH', 'height': 74.0, 'weight': '215', 'compRating': '0.8510', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '71', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2010', 'playerName': 'Kenronte Walker', 'highSchool': 'City College of San Francisco', 'city': 'San Francisco', 'state': 'CA', 'position': 'CB', 'height': 73.0, 'weight': '205', 'compRating': '0.8222', 'compStars': 3, 'nationalRank': '93', 'positionRank': '8', 'stateRank': '34'}, {'school': 'missouri', 'year': '2010', 'playerName': 'Tyler Gabbart', 'highSchool': 'West', 'city': 'Ballwin', 'state': 'MO', 'position': 'PRO', 'height': 72.0, 'weight': '190', 'compRating': '0.8899', 'compStars': 3, 'nationalRank': '349', 'positionRank': '18', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2010', 'playerName': 'Jimmy Hunt Jr.', 'highSchool': 'Cahokia', 'city': 'East Saint Louis', 'state': 'IL', 'position': 'WR', 'height': 73.0, 'weight': '195', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '635', 'positionRank': '84', 'stateRank': '12'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Darius Winston', 'highSchool': 'Helena-West Helena Central', 'city': 'West Helena', 'state': 'AR', 'position': 'CB', 'height': 72.0, 'weight': '191', 'compRating': '0.9878', 'compStars': 5, 'nationalRank': '24', 'positionRank': '3', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Ronnie Wingo Jr.', 'highSchool': 'St. Louis University', 'city': 'Saint Louis', 'state': 'MO', 'position': 'RB', 'height': 75.0, 'weight': '231', 'compRating': '0.9315', 'compStars': 4, 'nationalRank': '143', 'positionRank': '15', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Knile Davis', 'highSchool': 'Fort Bend Marshall', 'city': 'Missouri City', 'state': 'TX', 'position': 'RB', 'height': 72.0, 'weight': '230', 'compRating': '0.9127', 'compStars': 4, 'nationalRank': '207', 'positionRank': '23', 'stateRank': '26', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Anthony Oden', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'OT', 'height': 80.0, 'weight': '320', 'compRating': '0.9111', 'compStars': 4, 'nationalRank': '6', 'positionRank': '2', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Anthony Leon', 'highSchool': 'College of the Sequoias', 'city': 'Visalia', 'state': 'CA', 'position': 'S', 'height': 75.0, 'weight': '230', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '21', 'positionRank': '2', 'stateRank': '10'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Colby Berna', 'highSchool': 'Fayetteville', 'city': 'Fayetteville', 'state': 'AR', 'position': 'OG', 'height': 77.0, 'weight': '293', 'compRating': '0.8964', 'compStars': 4, 'nationalRank': '277', 'positionRank': '14', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'DeQuinta Jones', 'highSchool': 'Bastrop', 'city': 'Bastrop', 'state': 'LA', 'position': 'DT', 'height': 77.0, 'weight': '307', 'compRating': '0.8844', 'compStars': 3, 'nationalRank': '375', 'positionRank': '34', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Austin Moss', 'highSchool': 'Rockwall-Heath', 'city': 'Rockwall', 'state': 'TX', 'position': 'ILB', 'height': 74.0, 'weight': '210', 'compRating': '0.8844', 'compStars': 3, 'nationalRank': '378', 'positionRank': '20', 'stateRank': '49', '247Rating': ' 84 ', '247Stars': 3, '247nationalRank': '88', '247positionRank': '7', '247stateRank': '11'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'David Gordon', 'highSchool': 'East Central', 'city': 'Tulsa', 'state': 'OK', 'position': 'CB', 'height': 71.0, 'weight': '170', 'compRating': '0.8826', 'compStars': 3, 'nationalRank': '401', 'positionRank': '42', 'stateRank': '8'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Rudell Crim', 'highSchool': 'Butler C.C.', 'city': 'El Dorado', 'state': 'KS', 'position': 'CB', 'height': 72.0, 'weight': '190', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '29', 'positionRank': '3', 'stateRank': '7'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Cobi Hamilton', 'highSchool': 'Texas High', 'city': 'Texarkana', 'state': 'TX', 'position': 'WR', 'height': 75.0, 'weight': '209', 'compRating': '0.8764', 'compStars': 3, 'nationalRank': '463', 'positionRank': '61', 'stateRank': '65', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Alvin Bailey', 'highSchool': 'Broken Arrow', 'city': 'Broken Arrow', 'state': 'OK', 'position': 'OG', 'height': 77.0, 'weight': '323', 'compRating': '0.8701', 'compStars': 3, 'nationalRank': '561', 'positionRank': '35', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Brandon Mitchell', 'highSchool': 'Amite', 'city': 'Amite', 'state': 'LA', 'position': 'DUAL', 'height': 76.0, 'weight': '220', 'compRating': '0.8701', 'compStars': 3, 'nationalRank': '566', 'positionRank': '15', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Lance Ray', 'highSchool': 'Gadsden County', 'city': 'Havana', 'state': 'FL', 'position': 'WR', 'height': 74.0, 'weight': '185', 'compRating': '0.8684', 'compStars': 3, 'nationalRank': '584', 'positionRank': '76', 'stateRank': '84', '247Rating': ' 80 ', '247Stars': 3, '247nationalRank': '113', '247positionRank': '12', '247stateRank': '21'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Turell Williams', 'highSchool': 'Helena-West Helena Central', 'city': 'West Helena', 'state': 'AR', 'position': 'RB', 'height': 74.0, 'weight': '215', 'compRating': '0.8622', 'compStars': 3, 'nationalRank': '683', 'positionRank': '59', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Austin Tate', 'highSchool': 'Harrison', 'city': 'Harrison', 'state': 'AR', 'position': 'TE', 'height': 78.0, 'weight': '253', 'compRating': '0.8590', 'compStars': 3, 'nationalRank': '762', 'positionRank': '31', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Travis Swanson', 'highSchool': 'Kingwood', 'city': 'Humble', 'state': 'TX', 'position': 'OC', 'height': 77.0, 'weight': '305', 'compRating': '0.8590', 'compStars': 3, 'nationalRank': '764', 'positionRank': '8', 'stateRank': '106', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Robert Thomas', 'highSchool': 'Coffeyville C.C.', 'city': 'Coffeyville', 'state': 'KS', 'position': 'DT', 'height': 73.0, 'weight': '310', 'compRating': '0.8578', 'compStars': 3, 'nationalRank': '45', 'positionRank': '10', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Ross Rasner', 'highSchool': 'Reicher Catholic', 'city': 'Waco', 'state': 'TX', 'position': 'OLB', 'height': 72.0, 'weight': '209', 'compRating': '0.8559', 'compStars': 3, 'nationalRank': '784', 'positionRank': '64', 'stateRank': '112', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Terrell Williams', 'highSchool': 'Union', 'city': 'Tulsa', 'state': 'OK', 'position': 'OLB', 'height': 75.0, 'weight': '232', 'compRating': '0.8559', 'compStars': 3, 'nationalRank': '792', 'positionRank': '66', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Colton Miles-Nash', 'highSchool': 'Sulphur Springs', 'city': 'Sulphur Springs', 'state': 'TX', 'position': 'SDE', 'height': 78.0, 'weight': '261', 'compRating': '0.8559', 'compStars': 3, 'nationalRank': '803', 'positionRank': '38', 'stateRank': '118', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Neal Barlow', 'highSchool': 'Pulaski Academy', 'city': 'Little Rock', 'state': 'AR', 'position': 'WR', 'height': 78.0, 'weight': '190', 'compRating': '0.8559', 'compStars': 3, 'nationalRank': '804', 'positionRank': '98', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Kevin Lowery', 'highSchool': 'Gainesville', 'city': 'Gainesville', 'state': 'FL', 'position': 'DT', 'height': 75.0, 'weight': '286', 'compRating': '0.8542', 'compStars': 3, 'nationalRank': '855', 'positionRank': '61', 'stateRank': '119'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Robert Thomas', 'highSchool': 'Muskogee', 'city': 'Muskogee', 'state': 'OK', 'position': 'DT', 'height': 73.0, 'weight': '310', 'compRating': '0.8528', 'compStars': 3, 'nationalRank': '871', 'positionRank': '62', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Jerry Mitchell', 'highSchool': 'Mandeville', 'city': 'Mandeville', 'state': 'LA', 'position': 'CB', 'height': 73.0, 'weight': '214', 'compRating': '0.8510', 'compStars': 3, 'nationalRank': '905', 'positionRank': '70', 'stateRank': '31', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Shauntez Bruce', 'highSchool': 'Lincoln', 'city': 'Tallahassee', 'state': 'FL', 'position': 'OT', 'height': 77.0, 'weight': '300', 'compRating': '0.8479', 'compStars': 3, 'nationalRank': '984', 'positionRank': '70', 'stateRank': '138'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Andru Stewart', 'highSchool': 'College of the Sequoias', 'city': 'Visalia', 'state': 'CA', 'position': 'CB', 'height': 71.0, 'weight': '190', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '88', 'positionRank': '12', 'stateRank': '38', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Ryan Calender', 'highSchool': 'Caddo Mills', 'city': 'Caddo Mills', 'state': 'TX', 'position': 'TE', 'height': 79.0, 'weight': '241', 'compRating': '0.8167', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '59', 'stateRank': '220', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Caleb Evans', 'highSchool': 'Palomar College', 'city': 'San Marcos', 'state': 'CA', 'position': 'WDE', 'height': 76.0, 'weight': '255', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '128', 'positionRank': '9', 'stateRank': '52'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Rickey Hughey', 'highSchool': 'Lafayette County', 'city': 'Lewisville', 'state': 'AR', 'position': 'ATH', 'height': 77.0, 'weight': '220', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '105', 'stateRank': '15'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Briton Forester', 'highSchool': 'Palomar College', 'city': 'San Marcos', 'state': 'CA', 'position': 'K', 'height': 70.0, 'weight': '185', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': '217', 'positionRank': '7', 'stateRank': '93'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Dylan Breeding', 'highSchool': 'Hoover', 'city': 'Hoover', 'state': 'AL', 'position': 'P', 'height': 73.0, 'weight': '211', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Will Coleman', 'highSchool': 'DeSoto School', 'city': 'West Helena', 'state': 'AR', 'position': 'SDE', 'height': 74.0, 'weight': '247', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Telvin Griffin', 'highSchool': 'Arkansas', 'city': 'Texarkana', 'state': 'AR', 'position': 'WR', 'height': 71.0, 'weight': '188', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'David Hurd', 'highSchool': 'West Monroe', 'city': 'West Monroe', 'state': 'LA', 'position': 'OT', 'height': 78.0, 'weight': '300', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Brandon Pyle', 'highSchool': 'Hallsville', 'city': 'Hallsville', 'state': 'TX', 'position': 'FB', 'height': 74.0, 'weight': '240', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'William Serrano', 'highSchool': 'Nashville', 'city': 'Nashville', 'state': 'AR', 'position': 'WR', 'height': 72.0, 'weight': '189', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Michael Villegas', 'highSchool': 'Springdale', 'city': 'Springdale', 'state': 'AR', 'position': 'WDE', 'height': 76.0, 'weight': '238', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Ronald Watkins', 'highSchool': 'Colonial Forge', 'city': 'Stafford', 'state': 'VA', 'position': 'RB', 'height': 69.0, 'weight': '190', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Justin Wortman', 'highSchool': 'Cabot', 'city': 'Cabot', 'state': 'AR', 'position': 'WR', 'height': 69.0, 'weight': '170', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Hunter Jarvis', 'highSchool': 'Lovejoy', 'city': 'Lucas', 'state': 'TX', 'position': 'WR', 'height': 68.0, 'weight': '171', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2009', 'playerName': 'Zhamal Thomas', 'highSchool': 'Navarro College', 'city': 'Corsicana', 'state': 'TX', 'position': 'OG', 'height': 76.0, 'weight': '335', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2014', 'playerName': 'Drew Barker', 'highSchool': 'Conner', 'city': 'Hebron', 'state': 'KY', 'position': 'PRO', 'height': 76.0, 'weight': '210', 'compRating': '0.9454', 'compStars': 4, 'nationalRank': '116', 'positionRank': '5', 'stateRank': '1', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '110', '247positionRank': '9', '247stateRank': '2'}, {'school': 'kentucky', 'year': '2014', 'playerName': 'Matt Elam', 'highSchool': 'John Hardin', 'city': 'Elizabethtown', 'state': 'KY', 'position': 'DT', 'height': 77.0, 'weight': '372', 'compRating': '0.9272', 'compStars': 4, 'nationalRank': '174', 'positionRank': '15', 'stateRank': '2', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '21', '247positionRank': '3', '247stateRank': '1'}, {'school': 'kentucky', 'year': '2014', 'playerName': 'Darius West', 'highSchool': 'Lima Central Catholic', 'city': 'Lima', 'state': 'OH', 'position': 'S', 'height': 72.0, 'weight': '195', 'compRating': '0.9109', 'compStars': 4, 'nationalRank': '230', 'positionRank': '17', 'stateRank': '9', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '23', '247stateRank': '13'}, {'school': 'kentucky', 'year': '2014', 'playerName': 'Denzil Ware', 'highSchool': 'Crestview', 'city': 'Crestview', 'state': 'FL', 'position': 'WDE', 'height': 75.0, 'weight': '220', 'compRating': '0.9070', 'compStars': 4, 'nationalRank': '243', 'positionRank': '13', 'stateRank': '34', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '14', '247stateRank': '34'}, {'school': 'kentucky', 'year': '2014', 'playerName': 'Boom Williams', 'highSchool': 'George Walton Academy', 'city': 'Monroe', 'state': 'GA', 'position': 'APB', 'height': 68.0, 'weight': '189', 'compRating': '0.9018', 'compStars': 4, 'nationalRank': '259', 'positionRank': '6', 'stateRank': '18', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '7', '247stateRank': '34'}, {'school': 'kentucky', 'year': '2014', 'playerName': 'Thaddeus Snodgrass', 'highSchool': 'Springfield', 'city': 'Springfield', 'state': 'OH', 'position': 'WR', 'height': 73.0, 'weight': '170', 'compRating': '0.8956', 'compStars': 4, 'nationalRank': '292', 'positionRank': '40', 'stateRank': '13', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '86', '247stateRank': '32'}, {'school': 'kentucky', 'year': '2014', 'playerName': 'Mike Edwards', 'highSchool': 'Winton Woods', 'city': 'Cincinnati', 'state': 'OH', 'position': 'S', 'height': 71.0, 'weight': '180', 'compRating': '0.8887', 'compStars': 3, 'nationalRank': '341', 'positionRank': '24', 'stateRank': '17', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '46', '247stateRank': '25'}, {'school': 'kentucky', 'year': '2014', 'playerName': 'Mikel Horton', 'highSchool': 'Lakota West', 'city': 'West Chester', 'state': 'OH', 'position': 'RB', 'height': 73.0, 'weight': '225', 'compRating': '0.8811', 'compStars': 3, 'nationalRank': '392', 'positionRank': '25', 'stateRank': '21', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '41', '247stateRank': '33'}, {'school': 'kentucky', 'year': '2014', 'playerName': 'Kendall Randolph', 'highSchool': 'Lincoln', 'city': 'Tallahassee', 'state': 'FL', 'position': 'CB', 'height': 71.0, 'weight': '170', 'compRating': '0.8796', 'compStars': 3, 'nationalRank': '407', 'positionRank': '31', 'stateRank': '54', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '43', '247stateRank': '72'}, {'school': 'kentucky', 'year': '2014', 'playerName': 'C.J. Johnson', 'highSchool': 'ASA College', 'city': 'None', 'state': 'None', 'position': 'DT', 'height': 76.0, 'weight': '300', 'compRating': '0.8787', 'compStars': 3, 'nationalRank': '32', 'positionRank': '6', 'stateRank': '3', '247Rating': ' 90 ', '247Stars': 4, '247nationalRank': '27', '247positionRank': '8', '247stateRank': '4'}, {'school': 'kentucky', 'year': '2014', 'playerName': 'Nick Richardson', 'highSchool': 'Westerville Central', 'city': 'Westerville', 'state': 'OH', 'position': 'OT', 'height': 77.0, 'weight': '285', 'compRating': '0.8723', 'compStars': 3, 'nationalRank': '461', 'positionRank': '37', 'stateRank': '25', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '45', '247stateRank': '20'}, {'school': 'kentucky', 'year': '2014', 'playerName': 'Kobie Walker', 'highSchool': 'Good Counsel', 'city': 'Olney', 'state': 'MD', 'position': 'S', 'height': 75.0, 'weight': '200', 'compRating': '0.8690', 'compStars': 3, 'nationalRank': '497', 'positionRank': '40', 'stateRank': '13', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '39', '247stateRank': '12'}, {'school': 'kentucky', 'year': '2014', 'playerName': 'Lloyd Tubman', 'highSchool': 'Seneca Academy', 'city': 'Louisville', 'state': 'KY', 'position': 'WDE', 'height': 77.0, 'weight': '235', 'compRating': '0.8669', 'compStars': 3, 'nationalRank': '517', 'positionRank': '26', 'stateRank': '4', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '225', '247positionRank': '12', '247stateRank': '3'}, {'school': 'kentucky', 'year': '2014', 'playerName': 'Josh Krok', 'highSchool': 'McKinley', 'city': 'Niles', 'state': 'OH', 'position': 'OT', 'height': 80.0, 'weight': '300', 'compRating': '0.8649', 'compStars': 3, 'nationalRank': '541', 'positionRank': '47', 'stateRank': '29', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '55', '247stateRank': '28'}, {'school': 'kentucky', 'year': '2014', 'playerName': 'Blake Bone', 'highSchool': 'Woodruff', 'city': 'Woodruff', 'state': 'SC', 'position': 'WR', 'height': 76.0, 'weight': '175', 'compRating': '0.8645', 'compStars': 3, 'nationalRank': '548', 'positionRank': '73', 'stateRank': '14', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '113', '247stateRank': '25'}, {'school': 'kentucky', 'year': '2014', 'playerName': 'Adrian Middleton', 'highSchool': 'South Warren', 'city': 'Bowling Green', 'state': 'KY', 'position': 'DT', 'height': 75.0, 'weight': '265', 'compRating': '0.8635', 'compStars': 3, 'nationalRank': '556', 'positionRank': '39', 'stateRank': '5', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '35', '247stateRank': '5'}, {'school': 'kentucky', 'year': '2014', 'playerName': 'Darryl Long', 'highSchool': 'Westerville South', 'city': 'Westerville', 'state': 'OH', 'position': 'TE', 'height': 76.0, 'weight': '225', 'compRating': '0.8599', 'compStars': 3, 'nationalRank': '615', 'positionRank': '25', 'stateRank': '35', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '31', '247stateRank': '42'}, {'school': 'kentucky', 'year': '2014', 'playerName': 'Jarrett LaRubbio', 'highSchool': 'Lakota East', 'city': 'Middletown', 'state': 'OH', 'position': 'OG', 'height': 77.0, 'weight': '260', 'compRating': '0.8599', 'compStars': 3, 'nationalRank': '616', 'positionRank': '34', 'stateRank': '36', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '43', '247stateRank': '43'}, {'school': 'kentucky', 'year': '2014', 'playerName': 'Dorian Baker', 'highSchool': 'Cleveland Heights', 'city': 'Cleveland', 'state': 'OH', 'position': 'WR', 'height': 75.0, 'weight': '205', 'compRating': '0.8558', 'compStars': 3, 'nationalRank': '695', 'positionRank': '96', 'stateRank': '42', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '139', '247stateRank': '61'}, {'school': 'kentucky', 'year': '2014', 'playerName': 'T.V. Williams', 'highSchool': 'McKinney', 'city': 'McKinney', 'state': 'TX', 'position': 'WR', 'height': 67.5, 'weight': '148', 'compRating': '0.8554', 'compStars': 3, 'nationalRank': '700', 'positionRank': '97', 'stateRank': '90', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '76', '247stateRank': '63'}, {'school': 'kentucky', 'year': '2014', 'playerName': 'Garrett Johnson', 'highSchool': 'West Orange', 'city': 'Winter Garden', 'state': 'FL', 'position': 'WR', 'height': 69.0, 'weight': '160', 'compRating': '0.8550', 'compStars': 3, 'nationalRank': '708', 'positionRank': '99', 'stateRank': '104', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '121', '247stateRank': '127'}, {'school': 'kentucky', 'year': '2014', 'playerName': 'Nico Firios', 'highSchool': 'Lyman', 'city': 'Longwood', 'state': 'FL', 'position': 'OLB', 'height': 73.5, 'weight': '220', 'compRating': '0.8540', 'compStars': 3, 'nationalRank': '730', 'positionRank': '58', 'stateRank': '105', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '78', '247stateRank': '141'}, {'school': 'kentucky', 'year': '2014', 'playerName': 'Dorian Hendrix', 'highSchool': 'Wayne', 'city': 'Dayton', 'state': 'OH', 'position': 'ILB', 'height': 72.0, 'weight': '230', 'compRating': '0.8515', 'compStars': 3, 'nationalRank': '775', 'positionRank': '32', 'stateRank': '46', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '28', '247stateRank': '30'}, {'school': 'kentucky', 'year': '2014', 'playerName': 'Jared Tucker', 'highSchool': 'Stephenson', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'S', 'height': 71.0, 'weight': '175', 'compRating': '0.8486', 'compStars': 3, 'nationalRank': '835', 'positionRank': '69', 'stateRank': '74', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '96', '247stateRank': '99'}, {'school': 'kentucky', 'year': '2014', 'playerName': 'Ryan Flannigan', 'highSchool': 'Blinn College', 'city': 'Brenham', 'state': 'TX', 'position': 'OLB', 'height': 74.0, 'weight': '230', 'compRating': '0.8378', 'compStars': 3, 'nationalRank': '130', 'positionRank': '7', 'stateRank': '12', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '110', '247positionRank': '6', '247stateRank': '9'}, {'school': 'kentucky', 'year': '2014', 'playerName': 'Tymere Dubose', 'highSchool': 'Youngstown Christian School', 'city': 'Youngstown', 'state': 'OH', 'position': 'DT', 'height': 78.0, 'weight': '260', 'compRating': '0.8321', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '73', 'stateRank': '73', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '101', '247stateRank': '82'}, {'school': 'kentucky', 'year': '2014', 'playerName': 'Bunchy Stallings', 'highSchool': 'Spain Park', 'city': 'Birmingham', 'state': 'AL', 'position': 'OC', 'height': 75.0, 'weight': '305', 'compRating': '0.8025', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '28', 'stateRank': '55', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '15', '247stateRank': '43'}, {'school': 'kentucky', 'year': '2014', 'playerName': 'A.J. Stamps', 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'S', 'height': 72.0, 'weight': '190', 'compRating': '0.8022', 'compStars': 3, 'nationalRank': '215', 'positionRank': '14', 'stateRank': '30', '247Rating': ' 79 ', '247Stars': 2, '247nationalRank': '214', '247positionRank': '14', '247stateRank': '33'}, {'school': 'missouri', 'year': '2006', 'playerName': 'Jeremy Maclin', 'highSchool': 'St. Louis University', 'city': 'Saint Louis', 'state': 'MO', 'position': 'WR', 'height': 72.0, 'weight': '187', 'compRating': '0.8875', 'compStars': 3, 'nationalRank': '238', 'positionRank': '30', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2006', 'playerName': 'Tim Barnes', 'highSchool': 'Northwest', 'city': 'Hughesville', 'state': 'MO', 'position': 'OG', 'height': 75.0, 'weight': '308', 'compRating': '0.8733', 'compStars': 3, 'nationalRank': '355', 'positionRank': '20', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2006', 'playerName': 'Aaron Crawlfield', 'highSchool': 'Hickman', 'city': 'Columbia', 'state': 'MO', 'position': 'S', 'height': 71.0, 'weight': '190', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '509', 'positionRank': '38', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2006', 'playerName': 'Del Howard', 'highSchool': 'South Garland', 'city': 'Garland', 'state': 'TX', 'position': 'CB', 'height': 71.0, 'weight': '175', 'compRating': '0.8510', 'compStars': 3, 'nationalRank': '563', 'positionRank': '43', 'stateRank': '94', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2006', 'playerName': 'Kevin Rutland', 'highSchool': 'Galena Park', 'city': 'Galena Park', 'state': 'TX', 'position': 'CB', 'height': 73.0, 'weight': '185', 'compRating': '0.8479', 'compStars': 3, 'nationalRank': '605', 'positionRank': '45', 'stateRank': '103', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2006', 'playerName': 'J.P. Tillman', 'highSchool': 'Cy-Fair', 'city': 'Cypress', 'state': 'TX', 'position': 'DUAL', 'height': 75.0, 'weight': '223', 'compRating': '0.8354', 'compStars': 3, 'nationalRank': '732', 'positionRank': '18', 'stateRank': '130', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2006', 'playerName': 'John Stull', 'highSchool': 'Rock Bridge', 'city': 'Columbia', 'state': 'MO', 'position': 'SDE', 'height': 76.0, 'weight': '250', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '818', 'positionRank': '47', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2006', 'playerName': 'Bart Coslet', 'highSchool': 'Francis Howell Central', 'city': 'Saint Charles', 'state': 'MO', 'position': 'WDE', 'height': 78.0, 'weight': '225', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '821', 'positionRank': '33', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2006', 'playerName': 'Justin Brown', 'highSchool': 'North Dakota State College of Science', 'city': 'Wahpeton', 'state': 'ND', 'position': 'CB', 'height': 74.0, 'weight': '195', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '50', 'positionRank': '3', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2006', 'playerName': 'Castine Bridges', 'highSchool': 'Diablo Valley College', 'city': 'Pleasant Hill', 'state': 'CA', 'position': 'CB', 'height': 74.0, 'weight': '195', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '56', 'positionRank': '5', 'stateRank': '31'}, {'school': 'missouri', 'year': '2006', 'playerName': 'Tremane Vaughns', 'highSchool': 'Pasadena City College', 'city': 'Pasadena', 'state': 'CA', 'position': 'CB', 'height': 69.0, 'weight': '180', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '79', 'positionRank': '6', 'stateRank': '43'}, {'school': 'missouri', 'year': '2006', 'playerName': 'Dominic Grooms', 'highSchool': 'Middleton', 'city': 'Tampa', 'state': 'FL', 'position': 'DUAL', 'height': 73.0, 'weight': '172', 'compRating': '0.8260', 'compStars': 3, 'nationalRank': '918', 'positionRank': '23', 'stateRank': '115', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2006', 'playerName': 'Jared Perry', 'highSchool': 'La Marque', 'city': 'La Marque', 'state': 'TX', 'position': 'WR', 'height': 72.0, 'weight': '155', 'compRating': '0.8260', 'compStars': 3, 'nationalRank': '920', 'positionRank': '101', 'stateRank': '156', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2006', 'playerName': 'Quran Barge', 'highSchool': 'College of the Sequoias', 'city': 'Visalia', 'state': 'CA', 'position': 'OLB', 'height': 73.0, 'weight': '225', 'compRating': '0.8250', 'compStars': 3, 'nationalRank': '102', 'positionRank': '9', 'stateRank': '54'}, {'school': 'missouri', 'year': '2006', 'playerName': 'Cornelius Brown', 'highSchool': 'Reedley College', 'city': 'Reedley', 'state': 'CA', 'position': 'CB', 'height': 72.0, 'weight': '200', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '105', 'positionRank': '9', 'stateRank': '57'}, {'school': 'missouri', 'year': '2006', 'playerName': 'Paul Simpson', 'highSchool': 'Chabot College', 'city': 'Hayward', 'state': 'CA', 'position': 'WR', 'height': 74.0, 'weight': '185', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '137', 'positionRank': '13', 'stateRank': '66'}, {'school': 'missouri', 'year': '2006', 'playerName': 'Marquis Booker', 'highSchool': 'Ardmore', 'city': 'Ardmore', 'state': 'OK', 'position': 'ILB', 'height': 72.0, 'weight': '235', 'compRating': '0.7955', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '70', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2006', 'playerName': 'Jesse Hernandez', 'highSchool': 'Ardmore', 'city': 'Ardmore', 'state': 'OK', 'position': 'OG', 'height': 75.0, 'weight': '293', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '96', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2006', 'playerName': 'Mike Prince', 'highSchool': 'Southlake Carroll', 'city': 'Southlake', 'state': 'TX', 'position': 'OG', 'height': 76.0, 'weight': '278', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '105', 'stateRank': '224', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2006', 'playerName': 'Tommy Chavis', 'highSchool': 'Kilgore J.C.', 'city': 'Kilgore', 'state': 'TX', 'position': 'DT', 'height': 74.0, 'weight': '285', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': '173', 'positionRank': '23', 'stateRank': '12'}, {'school': 'missouri', 'year': '2006', 'playerName': "La'Roderick Thomas", 'highSchool': 'South Oak Cliff', 'city': 'Dallas', 'state': 'TX', 'position': 'ATH', 'height': 74.0, 'weight': '190', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '103', 'stateRank': '258', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2006', 'playerName': 'Sean Weatherspoon', 'highSchool': 'Jasper', 'city': 'Jasper', 'state': 'TX', 'position': 'OLB', 'height': 73.0, 'weight': '195', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '100', 'stateRank': '276', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2006', 'playerName': 'Brant Scott', 'highSchool': 'A&M Consolidated', 'city': 'College Station', 'state': 'TX', 'position': 'DT', 'height': 74.0, 'weight': '256', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '120', 'stateRank': '288', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2006', 'playerName': 'Denario Alexander', 'highSchool': 'Marlin', 'city': 'Marlin', 'state': 'TX', 'position': 'WR', 'height': 75.0, 'weight': '185', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '198', 'stateRank': '318', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2006', 'playerName': 'Charles Gaines', 'highSchool': 'Lincoln', 'city': 'Lincoln', 'state': 'MO', 'position': 'DT', 'height': 74.0, 'weight': '305', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2009', 'playerName': 'Jelani Jenkins', 'highSchool': 'Good Counsel', 'city': 'Olney', 'state': 'MD', 'position': 'OLB', 'height': 72.0, 'weight': '230', 'compRating': '0.9971', 'compStars': 5, 'nationalRank': '7', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2009', 'playerName': 'Gary Brown', 'highSchool': 'West Gadsden', 'city': 'Greenville', 'state': 'FL', 'position': 'DT', 'height': 75.0, 'weight': '275', 'compRating': '0.9935', 'compStars': 5, 'nationalRank': '10', 'positionRank': '2', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2009', 'playerName': 'Andre Debose', 'highSchool': 'Seminole', 'city': 'Sanford', 'state': 'FL', 'position': 'WR', 'height': 71.0, 'weight': '188', 'compRating': '0.9917', 'compStars': 5, 'nationalRank': '15', 'positionRank': '2', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2009', 'playerName': 'Xavier Nixon', 'highSchool': 'Jack Britt', 'city': 'Fayetteville', 'state': 'NC', 'position': 'OT', 'height': 77.0, 'weight': '295', 'compRating': '0.9892', 'compStars': 5, 'nationalRank': '21', 'positionRank': '2', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2009', 'playerName': 'Jon Bostic', 'highSchool': 'Palm Beach Central', 'city': 'West Palm Beach', 'state': 'FL', 'position': 'ILB', 'height': 73.0, 'weight': '244', 'compRating': '0.9717', 'compStars': 4, 'nationalRank': '58', 'positionRank': '4', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2009', 'playerName': 'Nick Alajajian', 'highSchool': 'Naples', 'city': 'Naples', 'state': 'FL', 'position': 'OG', 'height': 76.0, 'weight': '295', 'compRating': '0.9645', 'compStars': 4, 'nationalRank': '75', 'positionRank': '5', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2009', 'playerName': 'Mike Gillislee', 'highSchool': 'Deland', 'city': 'Deland', 'state': 'FL', 'position': 'RB', 'height': 71.0, 'weight': '205', 'compRating': '0.9314', 'compStars': 4, 'nationalRank': '144', 'positionRank': '16', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2009', 'playerName': 'Jordan Reed', 'highSchool': 'New London', 'city': 'New London', 'state': 'CT', 'position': 'TE', 'height': 75.0, 'weight': '240', 'compRating': '0.9266', 'compStars': 4, 'nationalRank': '155', 'positionRank': '3', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2009', 'playerName': 'Dee Finley', 'highSchool': 'Milford Academy', 'city': 'New Berlin', 'state': 'NY', 'position': 'S', 'height': 73.0, 'weight': '193', 'compRating': '0.9222', 'compStars': 4, 'nationalRank': '3', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2009', 'playerName': 'Edwin Herbert', 'highSchool': 'City College of San Francisco', 'city': 'San Francisco', 'state': 'CA', 'position': 'DT', 'height': 75.0, 'weight': '295', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '17', 'positionRank': '5', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2009', 'playerName': 'Jon Harrison', 'highSchool': 'South Lake', 'city': 'Groveland', 'state': 'FL', 'position': 'OG', 'height': 75.0, 'weight': '300', 'compRating': '0.8917', 'compStars': 4, 'nationalRank': '307', 'positionRank': '16', 'stateRank': '51', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2009', 'playerName': 'Desmond Parks', 'highSchool': 'Greer', 'city': 'Greer', 'state': 'SC', 'position': 'TE', 'height': 77.0, 'weight': '244', 'compRating': '0.8764', 'compStars': 3, 'nationalRank': '474', 'positionRank': '17', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2009', 'playerName': 'Josh Evans', 'highSchool': 'Irvington', 'city': 'Irvington', 'state': 'NJ', 'position': 'S', 'height': 73.0, 'weight': '202', 'compRating': '0.8736', 'compStars': 3, 'nationalRank': '494', 'positionRank': '34', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2009', 'playerName': 'Joshua Evans', 'highSchool': 'Irvington', 'city': 'Irvington', 'state': 'NJ', 'position': 'ATH', 'height': 74.0, 'weight': '185', 'compRating': '0.8736', 'compStars': 3, 'nationalRank': '496', 'positionRank': '22', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2009', 'playerName': 'Kedric Johnson', 'highSchool': 'Palmetto', 'city': 'Palmetto', 'state': 'FL', 'position': 'WDE', 'height': 76.0, 'weight': '230', 'compRating': '0.8733', 'compStars': 3, 'nationalRank': '507', 'positionRank': '22', 'stateRank': '72', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2009', 'playerName': 'Stephen Alli', 'highSchool': 'Brewster Academy', 'city': 'Wolfeboro', 'state': 'NH', 'position': 'WR', 'height': 77.0, 'weight': '220', 'compRating': '0.8733', 'compStars': 3, 'nationalRank': '520', 'positionRank': '68', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2009', 'playerName': 'Kyle Koehne', 'highSchool': 'Cathedral', 'city': 'Indianapolis', 'state': 'IN', 'position': 'OT', 'height': 77.0, 'weight': '300', 'compRating': '0.8622', 'compStars': 3, 'nationalRank': '666', 'positionRank': '48', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2009', 'playerName': 'Jon Halapio', 'highSchool': 'St Petersburg Catholic', 'city': 'Saint Petersburg', 'state': 'FL', 'position': 'OG', 'height': 75.0, 'weight': '315', 'compRating': '0.8497', 'compStars': 3, 'nationalRank': '972', 'positionRank': '71', 'stateRank': '135', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2014', 'playerName': 'Rod Taylor', 'highSchool': 'Callaway', 'city': 'Jackson', 'state': 'MS', 'position': 'OG', 'height': 75.5, 'weight': '305', 'compRating': '0.9767', 'compStars': 4, 'nationalRank': '47', 'positionRank': '2', 'stateRank': '1', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '25', '247positionRank': '1', '247stateRank': '1'}, {'school': 'ole-miss', 'year': '2014', 'playerName': 'C.J. Hampton', 'highSchool': 'Meridian', 'city': 'Meridian', 'state': 'MS', 'position': 'S', 'height': 73.0, 'weight': '195', 'compRating': '0.9557', 'compStars': 4, 'nationalRank': '94', 'positionRank': '8', 'stateRank': '2', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '68', '247positionRank': '4', '247stateRank': '2'}, {'school': 'ole-miss', 'year': '2014', 'playerName': 'Markell Pack', 'highSchool': 'Purvis', 'city': 'Purvis', 'state': 'MS', 'position': 'WR', 'height': 74.0, 'weight': '180', 'compRating': '0.9395', 'compStars': 4, 'nationalRank': '137', 'positionRank': '21', 'stateRank': '3', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '99', '247positionRank': '15', '247stateRank': '3'}, {'school': 'ole-miss', 'year': '2014', 'playerName': 'Garrald McDowell', 'highSchool': 'Covington', 'city': 'Covington', 'state': 'LA', 'position': 'SDE', 'height': 73.0, 'weight': '252', 'compRating': '0.9214', 'compStars': 4, 'nationalRank': '195', 'positionRank': '12', 'stateRank': '14', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '202', '247positionRank': '12', '247stateRank': '12'}, {'school': 'ole-miss', 'year': '2014', 'playerName': 'Breeland Speaks', 'highSchool': 'Callaway', 'city': 'Jackson', 'state': 'MS', 'position': 'DT', 'height': 75.0, 'weight': '270', 'compRating': '0.9194', 'compStars': 4, 'nationalRank': '204', 'positionRank': '18', 'stateRank': '4', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '135', '247positionRank': '11', '247stateRank': '4'}, {'school': 'ole-miss', 'year': '2014', 'playerName': 'Tee Shepard', 'highSchool': 'Holmes C.C.', 'city': 'Goodman', 'state': 'MS', 'position': 'CB', 'height': 73.0, 'weight': '197', 'compRating': '0.8985', 'compStars': 4, 'nationalRank': '18', 'positionRank': '1', 'stateRank': '6', '247Rating': ' 90 ', '247Stars': 4, '247nationalRank': '32', '247positionRank': '1', '247stateRank': '6'}, {'school': 'ole-miss', 'year': '2014', 'playerName': 'Sammie Epps', 'highSchool': 'Greenwood', 'city': 'Greenwood', 'state': 'MS', 'position': 'TE', 'height': 75.0, 'weight': '210', 'compRating': '0.8897', 'compStars': 3, 'nationalRank': '331', 'positionRank': '13', 'stateRank': '9'}, {'school': 'ole-miss', 'year': '2014', 'playerName': 'Ken Webster', 'highSchool': 'Stockbridge', 'city': 'Stockbridge', 'state': 'GA', 'position': 'CB', 'height': 70.5, 'weight': '177', 'compRating': '0.8887', 'compStars': 3, 'nationalRank': '340', 'positionRank': '25', 'stateRank': '28', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '24', '247stateRank': '26'}, {'school': 'ole-miss', 'year': '2014', 'playerName': 'Christian Russell', 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'ILB', 'height': 72.0, 'weight': '240', 'compRating': '0.8838', 'compStars': 3, 'nationalRank': '27', 'positionRank': '2', 'stateRank': '7', '247Rating': ' 87 ', '247Stars': 3, '247nationalRank': '99', '247positionRank': '4', '247stateRank': '19'}, {'school': 'ole-miss', 'year': '2014', 'playerName': 'Marquis Haynes', 'highSchool': 'Fork Union Military Academy', 'city': 'Fork Union', 'state': 'VA', 'position': 'WDE', 'height': 75.0, 'weight': '225', 'compRating': '0.8800', 'compStars': 3, 'nationalRank': '5', 'positionRank': '1', 'stateRank': '5', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '33', '247stateRank': '114'}, {'school': 'ole-miss', 'year': '2014', 'playerName': 'Fahn Cooper', 'highSchool': 'College of DuPage', 'city': 'Glen Ellyn', 'state': 'IL', 'position': 'OT', 'height': 77.0, 'weight': '314', 'compRating': '0.8797', 'compStars': 3, 'nationalRank': '30', 'positionRank': '8', 'stateRank': '1', '247Rating': ' 70 ', '247Stars': 2, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2014', 'playerName': 'Akeem Judd', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'RB', 'height': 71.0, 'weight': '219', 'compRating': '0.8781', 'compStars': 3, 'nationalRank': '33', 'positionRank': '1', 'stateRank': '2', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '17', '247positionRank': '1', '247stateRank': '2'}, {'school': 'ole-miss', 'year': '2014', 'playerName': 'DeMarquis Gates', 'highSchool': 'Lovejoy', 'city': 'Hampton', 'state': 'GA', 'position': 'OLB', 'height': 74.0, 'weight': '212', 'compRating': '0.8742', 'compStars': 3, 'nationalRank': '439', 'positionRank': '35', 'stateRank': '31', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '52', '247stateRank': '58'}, {'school': 'ole-miss', 'year': '2014', 'playerName': 'Jordan Sims', 'highSchool': 'Homewood', 'city': 'Birmingham', 'state': 'AL', 'position': 'OG', 'height': 76.0, 'weight': '345', 'compRating': '0.8737', 'compStars': 3, 'nationalRank': '448', 'positionRank': '24', 'stateRank': '14', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '21', '247stateRank': '15'}, {'school': 'ole-miss', 'year': '2014', 'playerName': 'Dayall Harris', 'highSchool': 'Callaway', 'city': 'Jackson', 'state': 'MS', 'position': 'WR', 'height': 76.0, 'weight': '185', 'compRating': '0.8712', 'compStars': 3, 'nationalRank': '473', 'positionRank': '63', 'stateRank': '11', '247Rating': ' 83 ', '247Stars': 3, '247nationalRank': '163', '247positionRank': '30', '247stateRank': '26'}, {'school': 'ole-miss', 'year': '2014', 'playerName': 'Jeremy Liggins', 'highSchool': 'Northeast Mississippi C.C.', 'city': 'Booneville', 'state': 'MS', 'position': 'ATH', 'height': 75.0, 'weight': '270', 'compRating': '0.8697', 'compStars': 3, 'nationalRank': '45', 'positionRank': '1', 'stateRank': '11', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '64', '247positionRank': '1', '247stateRank': '13'}, {'school': 'ole-miss', 'year': '2014', 'playerName': 'D.K. Buford', 'highSchool': 'Lafayette', 'city': 'Oxford', 'state': 'MS', 'position': 'APB', 'height': 71.0, 'weight': '215', 'compRating': '0.8687', 'compStars': 3, 'nationalRank': '499', 'positionRank': '9', 'stateRank': '12', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '12', '247stateRank': '17'}, {'school': 'ole-miss', 'year': '2014', 'playerName': 'Kendrick Doss', 'highSchool': 'Florence', 'city': 'Florence', 'state': 'AL', 'position': 'DUAL', 'height': 74.0, 'weight': '218', 'compRating': '0.8599', 'compStars': 3, 'nationalRank': '614', 'positionRank': '16', 'stateRank': '17'}, {'school': 'ole-miss', 'year': '2014', 'playerName': 'Tyler Putman', 'highSchool': 'DeSoto Central', 'city': 'Southaven', 'state': 'MS', 'position': 'OT', 'height': 77.0, 'weight': '280', 'compRating': '0.8531', 'compStars': 3, 'nationalRank': '751', 'positionRank': '66', 'stateRank': '20', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '106', '247stateRank': '39'}, {'school': 'ole-miss', 'year': '2014', 'playerName': 'Victor Evans', 'highSchool': 'Skyline', 'city': 'Dallas', 'state': 'TX', 'position': 'WDE', 'height': 74.5, 'weight': '226', 'compRating': '0.8478', 'compStars': 3, 'nationalRank': '847', 'positionRank': '44', 'stateRank': '111', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '46', '247stateRank': '113'}, {'school': 'ole-miss', 'year': '2014', 'playerName': 'Sean Rawlings', 'highSchool': 'Madison-Ridgeland Academy', 'city': 'Madison', 'state': 'MS', 'position': 'OT', 'height': 77.0, 'weight': '285', 'compRating': '0.8426', 'compStars': 3, 'nationalRank': '960', 'positionRank': '88', 'stateRank': '25', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '71', '247stateRank': '23'}, {'school': 'ole-miss', 'year': '2014', 'playerName': 'A.J. Moore', 'highSchool': 'Bassfield', 'city': 'Bassfield', 'state': 'MS', 'position': 'ILB', 'height': 72.0, 'weight': '190', 'compRating': '0.8386', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '43', 'stateRank': '29', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '34', '247stateRank': '24'}, {'school': 'ole-miss', 'year': '2014', 'playerName': 'C.J. Moore', 'highSchool': 'Bassfield', 'city': 'Bassfield', 'state': 'MS', 'position': 'ATH', 'height': 72.0, 'weight': '182', 'compRating': '0.8370', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '90', 'stateRank': '31', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '68', '247stateRank': '25'}, {'school': 'ole-miss', 'year': '2014', 'playerName': 'Gary Wunderlich', 'highSchool': 'Memphis University School', 'city': 'Memphis', 'state': 'TN', 'position': 'K', 'height': 72.0, 'weight': '180', 'compRating': '0.8328', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '2', 'stateRank': '20', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '5', '247stateRank': '31'}, {'school': 'ole-miss', 'year': '2014', 'playerName': 'Talbot Buys', 'highSchool': 'Holmes C.C.', 'city': 'Goodman', 'state': 'MS', 'position': 'OT', 'height': 81.0, 'weight': '300', 'compRating': '0.7900', 'compStars': 2, 'nationalRank': '241', 'positionRank': '29', 'stateRank': '33', '247Rating': ' 79 ', '247Stars': 2, '247nationalRank': '218', '247positionRank': '27', '247stateRank': '34'}, {'school': 'ole-miss', 'year': '2014', 'playerName': 'Alex Weber', 'highSchool': 'Columbia', 'city': 'Lake City', 'state': 'FL', 'position': 'WR', 'height': 72.0, 'weight': '160', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '364', 'stateRank': '391', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2014', 'playerName': 'Chris Williams', 'highSchool': 'Sandy Creek', 'city': 'Tyrone', 'state': 'GA', 'position': 'DT', 'height': 73.0, 'weight': '287', 'compRating': '0.8721', 'compStars': 3, 'nationalRank': '465', 'positionRank': '35', 'stateRank': '37', '247Rating': ' 87 ', '247Stars': 3, '247nationalRank': '53', '247positionRank': '5', '247stateRank': '10'}, {'school': 'south-carolina', 'year': '2008', 'playerName': 'C.C. Whitlock', 'highSchool': 'Chester', 'city': 'Chester', 'state': 'SC', 'position': 'CB', 'height': 70.0, 'weight': '170', 'compRating': '0.9645', 'compStars': 4, 'nationalRank': '76', 'positionRank': '6', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2008', 'playerName': 'Eric Baker', 'highSchool': 'Fork Union Military Academy', 'city': 'Fork Union', 'state': 'VA', 'position': 'RB', 'height': 71.0, 'weight': '190', 'compRating': '0.8970', 'compStars': 4, 'nationalRank': '5', 'positionRank': '2', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2008', 'playerName': 'Shaq Wilson', 'highSchool': 'First Coast', 'city': 'Jacksonville', 'state': 'FL', 'position': 'ILB', 'height': 71.0, 'weight': '229', 'compRating': '0.8826', 'compStars': 3, 'nationalRank': '376', 'positionRank': '16', 'stateRank': '56', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2008', 'playerName': 'Akeem Auguste', 'highSchool': 'Fork Union Military Academy', 'city': 'Fork Union', 'state': 'VA', 'position': 'S', 'height': 70.0, 'weight': '191', 'compRating': '0.8813', 'compStars': 3, 'nationalRank': '10', 'positionRank': '1', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2008', 'playerName': 'Darrell Simmons', 'highSchool': 'Banneker', 'city': 'Atlanta', 'state': 'GA', 'position': 'S', 'height': 73.0, 'weight': '200', 'compRating': '0.8733', 'compStars': 3, 'nationalRank': '475', 'positionRank': '38', 'stateRank': '35', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2008', 'playerName': 'Kenny Davis', 'highSchool': 'Newberry', 'city': 'Newberry', 'state': 'SC', 'position': 'DT', 'height': 75.0, 'weight': '303', 'compRating': '0.8701', 'compStars': 3, 'nationalRank': '512', 'positionRank': '38', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2008', 'playerName': 'Jay Spearman', 'highSchool': 'Greenwood', 'city': 'Greenwood', 'state': 'SC', 'position': 'ATH', 'height': 73.0, 'weight': '190', 'compRating': '0.8622', 'compStars': 3, 'nationalRank': '590', 'positionRank': '34', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2008', 'playerName': 'Reggie Bowens', 'highSchool': 'Garner', 'city': 'Garner', 'state': 'NC', 'position': 'OLB', 'height': 74.0, 'weight': '210', 'compRating': '0.8620', 'compStars': 3, 'nationalRank': '607', 'positionRank': '51', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2008', 'playerName': 'Kenneth Miles', 'highSchool': 'Brookwood', 'city': 'Snellville', 'state': 'GA', 'position': 'RB', 'height': 70.0, 'weight': '200', 'compRating': '0.8600', 'compStars': 3, 'nationalRank': '627', 'positionRank': '55', 'stateRank': '45', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2008', 'playerName': 'T.J. Johnson', 'highSchool': 'Aynor Hi', 'city': 'Aynor', 'state': 'SC', 'position': 'OC', 'height': 76.0, 'weight': '302', 'compRating': '0.8590', 'compStars': 3, 'nationalRank': '635', 'positionRank': '11', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2008', 'playerName': 'D.L. Moore', 'highSchool': 'Bowling Green', 'city': 'Bowling Green', 'state': 'KY', 'position': 'WR', 'height': 76.0, 'weight': '180', 'compRating': '0.8448', 'compStars': 3, 'nationalRank': '816', 'positionRank': '94', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2008', 'playerName': 'Jarrett Burns', 'highSchool': 'Lee', 'city': 'Huntsville', 'state': 'AL', 'position': 'S', 'height': 74.0, 'weight': '170', 'compRating': '0.8448', 'compStars': 3, 'nationalRank': '821', 'positionRank': '68', 'stateRank': '36', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2008', 'playerName': 'Devin Taylor', 'highSchool': 'Beaufort', 'city': 'Ladys Island', 'state': 'SC', 'position': 'WDE', 'height': 79.0, 'weight': '250', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '989', 'positionRank': '28', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2008', 'playerName': 'Reid McCollum', 'highSchool': 'Summerville', 'city': 'Summerville', 'state': 'SC', 'position': 'PRO', 'height': 76.0, 'weight': '200', 'compRating': '0.8323', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '39', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2008', 'playerName': 'Aramis Hillary', 'highSchool': 'Strom Thurmond', 'city': 'Johnston', 'state': 'SC', 'position': 'DUAL', 'height': 74.0, 'weight': '205', 'compRating': '0.8309', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '19', 'stateRank': '25', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2008', 'playerName': 'Elliot Williams', 'highSchool': 'Etowah', 'city': 'Woodstock', 'state': 'GA', 'position': 'OT', 'height': 78.0, 'weight': '275', 'compRating': '0.8292', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '76', 'stateRank': '75', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2008', 'playerName': 'Devin Taylor', 'highSchool': 'Battery Creek', 'city': 'Beaufort', 'state': 'SC', 'position': 'WDE', 'height': 78.0, 'weight': '225', 'compRating': '0.8188', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '36', 'stateRank': '26', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2008', 'playerName': 'Mike Triglia', 'highSchool': 'The Bolles School', 'city': 'Jacksonville', 'state': 'FL', 'position': 'TE', 'height': 76.0, 'weight': '239', 'compRating': '0.7861', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '78', 'stateRank': '187', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2008', 'playerName': 'Kenny Miles', 'highSchool': 'Brookwood', 'city': 'Snellville', 'state': 'GA', 'position': 'RB', 'height': 70.0, 'weight': '192', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2008', 'playerName': 'Reginald Bowens', 'highSchool': 'Garner', 'city': 'Garner', 'state': 'NC', 'position': 'OLB', 'height': 74.0, 'weight': '240', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2008', 'playerName': 'Tori Gurley', 'highSchool': 'New Hampshire Equestrian Academy Charter School', 'city': 'Rochester', 'state': 'NH', 'position': 'WR', 'height': 77.0, 'weight': '230', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2008', 'playerName': 'Ryan Doerr', 'highSchool': 'Katy', 'city': 'Katy', 'state': 'TX', 'position': 'K', 'height': 74.0, 'weight': '190', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2008', 'playerName': 'Jarriel King', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'OT', 'height': 77.0, 'weight': '324', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2008', 'playerName': 'Antonio Allen', 'highSchool': 'Fork Union Military Academy', 'city': 'Fork Union', 'state': 'VA', 'position': 'S', 'height': 74.0, 'weight': '205', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2008', 'playerName': 'Chaz Sutton', 'highSchool': 'Jenkins', 'city': 'Savannah', 'state': 'GA', 'position': 'WDE', 'height': 75.0, 'weight': '230', 'compRating': '0.8955', 'compStars': 4, 'nationalRank': '283', 'positionRank': '8', 'stateRank': '22', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2008', 'playerName': 'Ronald Byrd', 'highSchool': 'Callaway', 'city': 'Hogansville', 'state': 'GA', 'position': 'SDE', 'height': 78.0, 'weight': '257', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA'}, {'school': 'south-carolina', 'year': '2008', 'playerName': 'Elliott Williams', 'highSchool': 'Etowah', 'city': 'Woodstock', 'state': 'GA', 'position': 'OT', 'height': 78.0, 'weight': '285', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA'}, {'school': 'lsu', 'year': '2018', 'playerName': 'Terrace Marshall', 'highSchool': 'Parkway', 'city': 'Bossier City', 'state': 'LA', 'position': 'WR', 'height': 74.5, 'weight': '192', 'compRating': '0.9930', 'compStars': 5, 'nationalRank': '13', 'positionRank': '3', 'stateRank': '1', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '20', '247positionRank': '5', '247stateRank': '2'}, {'school': 'lsu', 'year': '2018', 'playerName': 'Kelvin Joseph', 'highSchool': 'Scotlandville Magnet', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'S', 'height': 73.5, 'weight': '191', 'compRating': '0.9784', 'compStars': 4, 'nationalRank': '42', 'positionRank': '5', 'stateRank': '2', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '83', '247positionRank': '7', '247stateRank': '4'}, {'school': 'lsu', 'year': '2018', 'playerName': "Ja'Marr Chase", 'highSchool': 'Archbishop Rummel', 'city': 'Metairie', 'state': 'LA', 'position': 'WR', 'height': 73.0, 'weight': '195', 'compRating': '0.9589', 'compStars': 4, 'nationalRank': '84', 'positionRank': '15', 'stateRank': '4', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '19', '247positionRank': '4', '247stateRank': '1'}, {'school': 'lsu', 'year': '2018', 'playerName': 'Jarell Cherry', 'highSchool': 'Carter', 'city': 'Dallas', 'state': 'TX', 'position': 'WDE', 'height': 75.0, 'weight': '224', 'compRating': '0.9216', 'compStars': 4, 'nationalRank': '198', 'positionRank': '12', 'stateRank': '24', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '202', '247positionRank': '13', '247stateRank': '24'}, {'school': 'lsu', 'year': '2018', 'playerName': 'Chasen Hines', 'highSchool': 'Marshall', 'city': 'Marshall', 'state': 'TX', 'position': 'DT', 'height': 74.5, 'weight': '335', 'compRating': '0.9105', 'compStars': 4, 'nationalRank': '243', 'positionRank': '21', 'stateRank': '31', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '22', '247stateRank': '33'}, {'school': 'lsu', 'year': '2018', 'playerName': 'Travez Moore', 'highSchool': 'Copiah-Lincoln C.C.', 'city': 'Wesson', 'state': 'MS', 'position': 'WDE', 'height': 78.0, 'weight': '250', 'compRating': '0.9074', 'compStars': 4, 'nationalRank': '5', 'positionRank': '1', 'stateRank': '2', '247Rating': ' 90 ', '247Stars': 4, '247nationalRank': '10', '247positionRank': '1', '247stateRank': '5'}, {'school': 'lsu', 'year': '2018', 'playerName': 'Micah Baskerville', 'highSchool': 'Evangel Christian Academy', 'city': 'Shreveport', 'state': 'LA', 'position': 'ILB', 'height': 74.0, 'weight': '215', 'compRating': '0.9044', 'compStars': 4, 'nationalRank': '277', 'positionRank': '14', 'stateRank': '8', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '155', '247positionRank': '9', '247stateRank': '5'}, {'school': 'lsu', 'year': '2018', 'playerName': 'Davin Cotton', 'highSchool': 'Evangel Christian Academy', 'city': 'Shreveport', 'state': 'LA', 'position': 'DT', 'height': 73.0, 'weight': '262', 'compRating': '0.9027', 'compStars': 4, 'nationalRank': '284', 'positionRank': '23', 'stateRank': '9', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '230', '247positionRank': '21', '247stateRank': '6'}, {'school': 'lsu', 'year': '2018', 'playerName': 'Badara Traore', 'highSchool': 'ASA College', 'city': 'None', 'state': 'None', 'position': 'OT', 'height': 79.0, 'weight': '310', 'compRating': '0.9020', 'compStars': 4, 'nationalRank': '7', 'positionRank': '2', 'stateRank': '1', '247Rating': ' 89 ', '247Stars': 3, '247nationalRank': '20', '247positionRank': '4', '247stateRank': '2'}, {'school': 'lsu', 'year': '2018', 'playerName': 'Dare Rosenthal', 'highSchool': 'Ferriday', 'city': 'Ferriday', 'state': 'LA', 'position': 'DT', 'height': 79.0, 'weight': '327', 'compRating': '0.8992', 'compStars': 4, 'nationalRank': '305', 'positionRank': '24', 'stateRank': '11', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '24', '247stateRank': '7'}, {'school': 'lsu', 'year': '2018', 'playerName': 'Kenan Jones', 'highSchool': 'Berwick', 'city': 'Berwick', 'state': 'LA', 'position': 'WR', 'height': 75.0, 'weight': '205', 'compRating': '0.8958', 'compStars': 4, 'nationalRank': '327', 'positionRank': '55', 'stateRank': '12', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '47', '247stateRank': '8'}, {'school': 'lsu', 'year': '2018', 'playerName': 'Chris Curry', 'highSchool': 'Lehigh Senior', 'city': 'Lehigh Acres', 'state': 'FL', 'position': 'RB', 'height': 71.0, 'weight': '200', 'compRating': '0.8924', 'compStars': 4, 'nationalRank': '355', 'positionRank': '15', 'stateRank': '64', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '241', '247positionRank': '8', '247stateRank': '33'}, {'school': 'lsu', 'year': '2018', 'playerName': 'Damone Clark', 'highSchool': 'Southern University Lab School', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'ILB', 'height': 75.0, 'weight': '218', 'compRating': '0.8923', 'compStars': 4, 'nationalRank': '357', 'positionRank': '20', 'stateRank': '13', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '16', '247stateRank': '9'}, {'school': 'lsu', 'year': '2018', 'playerName': 'Cameron Wire', 'highSchool': 'East Ascension', 'city': 'Gonzales', 'state': 'LA', 'position': 'OT', 'height': 78.0, 'weight': '280', 'compRating': '0.8851', 'compStars': 3, 'nationalRank': '428', 'positionRank': '31', 'stateRank': '14', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '30', '247stateRank': '14'}, {'school': 'lsu', 'year': '2018', 'playerName': 'Cole Smith', 'highSchool': 'Pontotoc', 'city': 'Pontotoc', 'state': 'MS', 'position': 'OC', 'height': 76.0, 'weight': '275', 'compRating': '0.8844', 'compStars': 3, 'nationalRank': '433', 'positionRank': '8', 'stateRank': '6', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '20', '247stateRank': '19'}, {'school': 'lsu', 'year': '2018', 'playerName': 'Jaray Jenkins', 'highSchool': 'Jena', 'city': 'Jena', 'state': 'LA', 'position': 'WR', 'height': 73.0, 'weight': '175', 'compRating': '0.8828', 'compStars': 3, 'nationalRank': '448', 'positionRank': '73', 'stateRank': '16', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '80', '247stateRank': '18'}, {'school': 'lsu', 'year': '2018', 'playerName': 'Nelson Jenkins', 'highSchool': 'Plaquemine', 'city': 'Plaquemine', 'state': 'LA', 'position': 'DT', 'height': 75.0, 'weight': '290', 'compRating': '0.8773', 'compStars': 3, 'nationalRank': '519', 'positionRank': '36', 'stateRank': '20', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '40', '247stateRank': '31'}, {'school': 'lsu', 'year': '2018', 'playerName': 'Dominic Livingston', 'highSchool': 'Aldine Davis', 'city': 'Houston', 'state': 'TX', 'position': 'DT', 'height': 75.0, 'weight': '340', 'compRating': '0.8763', 'compStars': 3, 'nationalRank': '527', 'positionRank': '38', 'stateRank': '74'}, {'school': 'lsu', 'year': '2018', 'playerName': 'Zach Sheffer', 'highSchool': 'Nease', 'city': 'Ponte Vedra Beach', 'state': 'FL', 'position': 'TE', 'height': 75.0, 'weight': '230', 'compRating': '0.8709', 'compStars': 3, 'nationalRank': '632', 'positionRank': '28', 'stateRank': '98', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '36', '247stateRank': '126'}, {'school': 'lsu', 'year': '2018', 'playerName': 'Damien Lewis', 'highSchool': 'Northwest Mississippi C.C.', 'city': 'Senatobia', 'state': 'MS', 'position': 'OG', 'height': 75.0, 'weight': '320', 'compRating': '0.8656', 'compStars': 3, 'nationalRank': '60', 'positionRank': '2', 'stateRank': '14', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '54', '247positionRank': '2', '247stateRank': '13'}, {'school': 'lsu', 'year': '2018', 'playerName': 'Tae Provens', 'highSchool': 'Madison County', 'city': 'Gurley', 'state': 'AL', 'position': 'ATH', 'height': 71.0, 'weight': '187', 'compRating': '0.8625', 'compStars': 3, 'nationalRank': '769', 'positionRank': '63', 'stateRank': '26', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '61', '247stateRank': '25'}, {'school': 'lsu', 'year': '2018', 'playerName': 'Dantrieze Scott', 'highSchool': 'Ferriday', 'city': 'Ferriday', 'state': 'LA', 'position': 'ATH', 'height': 77.0, 'weight': '245', 'compRating': '0.8611', 'compStars': 3, 'nationalRank': '797', 'positionRank': '67', 'stateRank': '32', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '23', '247stateRank': '12'}, {'school': 'ole-miss', 'year': '2002', 'playerName': 'Ronald McClendon', 'highSchool': 'Butler C.C.', 'city': 'El Dorado', 'state': 'KS', 'position': 'APB', 'height': 69.0, 'weight': '185', 'compRating': '0.9667', 'compStars': 4, 'nationalRank': '7', 'positionRank': '1', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2002', 'playerName': 'Ken Bournes', 'highSchool': 'Copiah-Lincoln C.C.', 'city': 'Wesson', 'state': 'MS', 'position': 'ILB', 'height': 73.0, 'weight': '250', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '36', 'positionRank': '8', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2002', 'playerName': 'Chris Herring', 'highSchool': 'South Panola', 'city': 'Batesville', 'state': 'MS', 'position': 'ILB', 'height': 74.0, 'weight': '257', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '208', 'positionRank': '11', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2002', 'playerName': 'Jeremy Ruffin', 'highSchool': 'Meridian', 'city': 'Meridian', 'state': 'MS', 'position': 'OLB', 'height': 74.0, 'weight': '205', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '249', 'positionRank': '16', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2002', 'playerName': 'Jay Kirkland', 'highSchool': 'New Albany', 'city': 'New Albany', 'state': 'MS', 'position': 'OG', 'height': 76.0, 'weight': '300', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '274', 'positionRank': '14', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2002', 'playerName': 'Andrew Wicker', 'highSchool': 'Silliman Institute', 'city': 'Clinton', 'state': 'LA', 'position': 'SDE', 'height': 76.0, 'weight': '260', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '290', 'positionRank': '15', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2002', 'playerName': 'James McCoy', 'highSchool': 'Moss Point', 'city': 'Moss Point', 'state': 'MS', 'position': 'OT', 'height': 76.0, 'weight': '285', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '328', 'positionRank': '28', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2002', 'playerName': 'Jamal Pittman', 'highSchool': 'Columbia', 'city': 'Columbia', 'state': 'MS', 'position': 'RB', 'height': 74.0, 'weight': '225', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '330', 'positionRank': '27', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2002', 'playerName': 'Jayme Mitchell', 'highSchool': 'Forest Hill', 'city': 'Jackson', 'state': 'MS', 'position': 'SDE', 'height': 78.0, 'weight': '270', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '360', 'positionRank': '18', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2002', 'playerName': 'Bryan Brown', 'highSchool': 'Corinth', 'city': 'Corinth', 'state': 'MS', 'position': 'ATH', 'height': 70.0, 'weight': '185', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '396', 'positionRank': '26', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2002', 'playerName': 'Brodrick Cross', 'highSchool': 'Dwyer', 'city': 'Palm Beach Gardens', 'state': 'FL', 'position': 'OLB', 'height': 73.0, 'weight': '234', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '477', 'positionRank': '24', 'stateRank': '63', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2002', 'playerName': 'Tony Sanders', 'highSchool': 'Fairley', 'city': 'Memphis', 'state': 'TN', 'position': 'OG', 'height': 76.0, 'weight': '320', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '537', 'positionRank': '42', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2002', 'playerName': 'Nathaniel Banks', 'highSchool': 'Amite County', 'city': 'Liberty', 'state': 'MS', 'position': 'WR', 'height': 71.0, 'weight': '179', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '575', 'positionRank': '60', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2002', 'playerName': 'Lawrence Lilly', 'highSchool': 'Montevallo', 'city': 'Montevallo', 'state': 'AL', 'position': 'TE', 'height': 76.0, 'weight': '240', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '598', 'positionRank': '34', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2002', 'playerName': 'Larrick Womack', 'highSchool': 'Northwest Mississippi C.C.', 'city': 'Senatobia', 'state': 'MS', 'position': 'DT', 'height': 77.0, 'weight': '255', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '144', 'positionRank': '18', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2002', 'playerName': 'Dedrick Clark', 'highSchool': 'Pontotoc', 'city': 'Pontotoc', 'state': 'MS', 'position': 'OLB', 'height': 77.0, 'weight': '240', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '698', 'positionRank': '42', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2002', 'playerName': 'Ethan Flatt', 'highSchool': 'Lipscomb Academy', 'city': 'Nashville', 'state': 'TN', 'position': 'PRO', 'height': 78.0, 'weight': '187', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '57', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2010', 'playerName': 'Damien Robinson', 'highSchool': 'Olive Branch', 'city': 'Olive Branch', 'state': 'MS', 'position': 'OT', 'height': 78.0, 'weight': '330', 'compRating': '0.9469', 'compStars': 4, 'nationalRank': '113', 'positionRank': '13', 'stateRank': '2', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '179', '247positionRank': '21', '247stateRank': '2'}, {'school': 'mississippi-state', 'year': '2010', 'playerName': 'Kaleb Eulls', 'highSchool': 'Yazoo County', 'city': 'Yazoo City', 'state': 'MS', 'position': 'WDE', 'height': 76.0, 'weight': '255', 'compRating': '0.9034', 'compStars': 4, 'nationalRank': '260', 'positionRank': '17', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2010', 'playerName': 'Michael Carr', 'highSchool': 'West Point', 'city': 'West Point', 'state': 'MS', 'position': 'WR', 'height': 73.0, 'weight': '192', 'compRating': '0.8988', 'compStars': 4, 'nationalRank': '290', 'positionRank': '38', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2010', 'playerName': 'Matthew Wells', 'highSchool': 'Lawrence County', 'city': 'Monticello', 'state': 'MS', 'position': 'ATH', 'height': 72.0, 'weight': '190', 'compRating': '0.8928', 'compStars': 4, 'nationalRank': '325', 'positionRank': '24', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2010', 'playerName': 'Robert Johnson', 'highSchool': 'Oak Grove', 'city': 'Hattiesburg', 'state': 'MS', 'position': 'WR', 'height': 72.0, 'weight': '196', 'compRating': '0.8875', 'compStars': 3, 'nationalRank': '366', 'positionRank': '50', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2010', 'playerName': 'James Carmon', 'highSchool': 'Mississippi Gulf Coast C.C.', 'city': 'Perkinston', 'state': 'MS', 'position': 'DT', 'height': 79.0, 'weight': '370', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '18', 'positionRank': '3', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2010', 'playerName': 'Curtis Virges', 'highSchool': 'West Point', 'city': 'West Point', 'state': 'MS', 'position': 'DT', 'height': 75.0, 'weight': '290', 'compRating': '0.8764', 'compStars': 3, 'nationalRank': '475', 'positionRank': '44', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2010', 'playerName': 'Nick Griffin', 'highSchool': 'Perry Central', 'city': 'New Augusta', 'state': 'MS', 'position': 'RB', 'height': 71.0, 'weight': '193', 'compRating': '0.8701', 'compStars': 3, 'nationalRank': '570', 'positionRank': '49', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2010', 'playerName': 'Ferlando Bohanna', 'highSchool': 'Whitehaven', 'city': 'Memphis', 'state': 'TN', 'position': 'ILB', 'height': 72.0, 'weight': '232', 'compRating': '0.8701', 'compStars': 3, 'nationalRank': '572', 'positionRank': '22', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2010', 'playerName': 'Jay Hughes', 'highSchool': 'Oak Grove', 'city': 'Hattiesburg', 'state': 'MS', 'position': 'ATH', 'height': 71.0, 'weight': '175', 'compRating': '0.8684', 'compStars': 3, 'nationalRank': '591', 'positionRank': '40', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2010', 'playerName': 'Chris Hughes', 'highSchool': 'WP Davidson', 'city': 'Mobile', 'state': 'AL', 'position': 'S', 'height': 72.0, 'weight': '215', 'compRating': '0.8684', 'compStars': 3, 'nationalRank': '592', 'positionRank': '49', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2010', 'playerName': 'Archie Muniz', 'highSchool': 'Cy Creek', 'city': 'Houston', 'state': 'TX', 'position': 'OT', 'height': 77.0, 'weight': '255', 'compRating': '0.8653', 'compStars': 3, 'nationalRank': '653', 'positionRank': '47', 'stateRank': '105', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2010', 'playerName': 'Malcolm Johnson', 'highSchool': 'Northridge', 'city': 'Tuscaloosa', 'state': 'AL', 'position': 'WR', 'height': 73.0, 'weight': '200', 'compRating': '0.8653', 'compStars': 3, 'nationalRank': '691', 'positionRank': '95', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2010', 'playerName': 'Vick Ballard', 'highSchool': 'Mississippi Gulf Coast C.C.', 'city': 'Perkinston', 'state': 'MS', 'position': 'RB', 'height': 71.0, 'weight': '210', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '51', 'positionRank': '1', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2010', 'playerName': 'Jamerson Love', 'highSchool': 'Aberdeen', 'city': 'Aberdeen', 'state': 'MS', 'position': 'CB', 'height': 71.0, 'weight': '175', 'compRating': '0.8528', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '80', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2010', 'playerName': 'Brandon Hill', 'highSchool': 'West Lowndes', 'city': 'Columbus', 'state': 'MS', 'position': 'ATH', 'height': 74.0, 'weight': '208', 'compRating': '0.8493', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '78', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2010', 'playerName': 'Jameon Lewis', 'highSchool': 'Tylertown', 'city': 'Tylertown', 'state': 'MS', 'position': 'WR', 'height': 69.0, 'weight': '175', 'compRating': '0.8448', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '152', 'stateRank': '26', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2010', 'playerName': 'Eric Lawson', 'highSchool': 'Olive Branch', 'city': 'Olive Branch', 'state': 'MS', 'position': 'OT', 'height': 78.0, 'weight': '320', 'compRating': '0.8417', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '88', 'stateRank': '27', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2010', 'playerName': 'Corvell Harrison-Gay', 'highSchool': 'Northeast Jones', 'city': 'Laurel', 'state': 'MS', 'position': 'SDE', 'height': 75.0, 'weight': '220', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '73', 'stateRank': '31', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2010', 'playerName': 'Jeff Howie', 'highSchool': 'Itawamba C.C.', 'city': 'Fulton', 'state': 'MS', 'position': 'OG', 'height': 76.0, 'weight': '330', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '79', 'positionRank': '2', 'stateRank': '18'}, {'school': 'mississippi-state', 'year': '2010', 'playerName': 'Dillon Day', 'highSchool': 'West Monroe', 'city': 'West Monroe', 'state': 'LA', 'position': 'OG', 'height': 76.0, 'weight': '295', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '101', 'stateRank': '54', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2010', 'playerName': 'Blaine Clausell', 'highSchool': 'Baker', 'city': 'Mobile', 'state': 'AL', 'position': 'OT', 'height': 79.0, 'weight': '295', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '129', 'stateRank': '57', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2010', 'playerName': 'Christian Holmes', 'highSchool': 'Puckett Attendance Center', 'city': 'Pulaski', 'state': 'MS', 'position': 'OLB', 'height': 74.0, 'weight': '235', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '135', 'stateRank': '32', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2010', 'playerName': 'Dylan Favre', 'highSchool': 'St Stanislaus', 'city': 'Bay Saint Louis', 'state': 'MS', 'position': 'DUAL', 'height': 70.0, 'weight': '180', 'compRating': '0.7990', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '71', 'stateRank': '34', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2010', 'playerName': 'Jeremy Lee', 'highSchool': 'Hinds County Agricultural Sch', 'city': 'Utica', 'state': 'MS', 'position': 'ATH', 'height': 70.0, 'weight': '170', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '144', 'stateRank': '41'}, {'school': 'mississippi-state', 'year': '2010', 'playerName': 'Paul Crawford', 'highSchool': 'Hebron', 'city': 'Carrollton', 'state': 'TX', 'position': 'WDE', 'height': 80.0, 'weight': '235', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2010', 'playerName': 'Asian Ruff', 'highSchool': 'Itawamba Agricultural', 'city': 'Fulton', 'state': 'MS', 'position': 'S', 'height': 74.0, 'weight': '180', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2010', 'playerName': 'Ben Beckwith', 'highSchool': 'Benton Academy Inc', 'city': 'Benton', 'state': 'MS', 'position': 'OG', 'height': 75.0, 'weight': '305', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2010', 'playerName': 'Jeff Howie', 'highSchool': 'Downingtown West', 'city': 'Downingtown', 'state': 'PA', 'position': 'OG', 'height': 76.0, 'weight': '330', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '84', 'stateRank': '39'}, {'school': 'georgia', 'year': '2020', 'playerName': 'Kelee Ringo', 'highSchool': 'Saguaro', 'city': 'Scottsdale', 'state': 'AZ', 'position': 'CB', 'height': 74.0, 'weight': '205', 'compRating': '0.9976', 'compStars': 5, 'nationalRank': '4', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 99 ', '247Stars': 5, '247nationalRank': '7', '247positionRank': '1', '247stateRank': '1'}, {'school': 'georgia', 'year': '2020', 'playerName': 'Broderick Jones', 'highSchool': 'Lithonia', 'city': 'Lithonia', 'state': 'GA', 'position': 'OT', 'height': 77.0, 'weight': '298', 'compRating': '0.9947', 'compStars': 5, 'nationalRank': '11', 'positionRank': '2', 'stateRank': '3', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '30', '247positionRank': '3', '247stateRank': '4'}, {'school': 'georgia', 'year': '2020', 'playerName': 'Jalen Carter', 'highSchool': 'Apopka', 'city': 'Apopka', 'state': 'FL', 'position': 'DT', 'height': 75.0, 'weight': '301', 'compRating': '0.9913', 'compStars': 5, 'nationalRank': '18', 'positionRank': '4', 'stateRank': '3', '247Rating': ' 99 ', '247Stars': 5, '247nationalRank': '9', '247positionRank': '3', '247stateRank': '2'}, {'school': 'georgia', 'year': '2020', 'playerName': 'Darnell Washington', 'highSchool': 'Desert Pines', 'city': 'Las Vegas', 'state': 'NV', 'position': 'ATH', 'height': 79.5, 'weight': '261', 'compRating': '0.9894', 'compStars': 5, 'nationalRank': '23', 'positionRank': '2', 'stateRank': '1', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '34', '247positionRank': '2', '247stateRank': '1'}, {'school': 'georgia', 'year': '2020', 'playerName': 'MJ Sherman', 'highSchool': "St. John's", 'city': 'Washington', 'state': 'DC', 'position': 'OLB', 'height': 75.0, 'weight': '234', 'compRating': '0.9831', 'compStars': 4, 'nationalRank': '32', 'positionRank': '2', 'stateRank': '2', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '75', '247positionRank': '5', '247stateRank': '3'}, {'school': 'georgia', 'year': '2020', 'playerName': 'Tate Ratledge', 'highSchool': 'Darlington School', 'city': 'Rome', 'state': 'GA', 'position': 'OT', 'height': 78.0, 'weight': '322', 'compRating': '0.9821', 'compStars': 4, 'nationalRank': '37', 'positionRank': '3', 'stateRank': '5', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '63', '247positionRank': '5', '247stateRank': '8'}, {'school': 'georgia', 'year': '2020', 'playerName': 'Kendall Milton', 'highSchool': 'Buchanan', 'city': 'Clovis', 'state': 'CA', 'position': 'RB', 'height': 73.5, 'weight': '215', 'compRating': '0.9739', 'compStars': 4, 'nationalRank': '54', 'positionRank': '7', 'stateRank': '7', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '89', '247positionRank': '9', '247stateRank': '10'}, {'school': 'georgia', 'year': '2020', 'playerName': 'Marcus Rosemy', 'highSchool': 'St. Thomas Aquinas', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'WR', 'height': 74.0, 'weight': '195', 'compRating': '0.9736', 'compStars': 4, 'nationalRank': '55', 'positionRank': '8', 'stateRank': '10', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '92', '247positionRank': '15', '247stateRank': '15'}, {'school': 'georgia', 'year': '2020', 'playerName': 'Arian Smith', 'highSchool': 'Lakeland', 'city': 'Lakeland', 'state': 'FL', 'position': 'WR', 'height': 73.0, 'weight': '170', 'compRating': '0.9723', 'compStars': 4, 'nationalRank': '58', 'positionRank': '9', 'stateRank': '12', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '42', '247positionRank': '7', '247stateRank': '8'}, {'school': 'georgia', 'year': '2020', 'playerName': 'Sedrick Van Pran', 'highSchool': 'Warren Easton', 'city': 'New Orleans', 'state': 'LA', 'position': 'OC', 'height': 76.0, 'weight': '305', 'compRating': '0.9714', 'compStars': 4, 'nationalRank': '60', 'positionRank': '1', 'stateRank': '3', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '77', '247positionRank': '2', '247stateRank': '4'}, {'school': 'georgia', 'year': '2020', 'playerName': 'Jermaine Burton', 'highSchool': 'Calabasas', 'city': 'Calabasas', 'state': 'CA', 'position': 'WR', 'height': 72.5, 'weight': '190', 'compRating': '0.9647', 'compStars': 4, 'nationalRank': '82', 'positionRank': '15', 'stateRank': '9', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '58', '247positionRank': '9', '247stateRank': '8'}, {'school': 'georgia', 'year': '2020', 'playerName': 'Jalen Kimber', 'highSchool': 'Mansfield Timberview', 'city': 'Arlington', 'state': 'TX', 'position': 'CB', 'height': 72.0, 'weight': '170', 'compRating': '0.9535', 'compStars': 4, 'nationalRank': '105', 'positionRank': '9', 'stateRank': '13', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '71', '247positionRank': '7', '247stateRank': '11'}, {'school': 'georgia', 'year': '2020', 'playerName': 'Chad Lindberg', 'highSchool': 'Clear Creek', 'city': 'League City', 'state': 'TX', 'position': 'OT', 'height': 78.5, 'weight': '327', 'compRating': '0.9367', 'compStars': 4, 'nationalRank': '140', 'positionRank': '13', 'stateRank': '23', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '33', '247stateRank': '47'}, {'school': 'georgia', 'year': '2020', 'playerName': 'Major Burns', 'highSchool': 'Madison Prep Academy', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'S', 'height': 74.0, 'weight': '176', 'compRating': '0.9260', 'compStars': 4, 'nationalRank': '181', 'positionRank': '13', 'stateRank': '7', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '241', '247positionRank': '23', '247stateRank': '10'}, {'school': 'georgia', 'year': '2020', 'playerName': 'Nazir Stackhouse', 'highSchool': 'Columbia', 'city': 'Decatur', 'state': 'GA', 'position': 'DT', 'height': 75.5, 'weight': '306', 'compRating': '0.9098', 'compStars': 4, 'nationalRank': '248', 'positionRank': '27', 'stateRank': '25', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '25', '247stateRank': '33'}, {'school': 'georgia', 'year': '2020', 'playerName': 'Carson Beck', 'highSchool': 'Mandarin', 'city': 'Jacksonville', 'state': 'FL', 'position': 'PRO', 'height': 76.5, 'weight': '226', 'compRating': '0.9096', 'compStars': 4, 'nationalRank': '249', 'positionRank': '9', 'stateRank': '39', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '234', '247positionRank': '5', '247stateRank': '33'}, {'school': 'georgia', 'year': '2020', 'playerName': 'Daijun Edwards', 'highSchool': 'Colquitt County', 'city': 'Moultrie', 'state': 'GA', 'position': 'RB', 'height': 70.0, 'weight': '201', 'compRating': '0.9025', 'compStars': 4, 'nationalRank': '278', 'positionRank': '21', 'stateRank': '28', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '33', '247stateRank': '50'}, {'school': 'georgia', 'year': '2020', 'playerName': 'Justin Robinson', 'highSchool': "Eagle's Landing Christian", 'city': 'Mcdonough', 'state': 'GA', 'position': 'WR', 'height': 76.0, 'weight': '200', 'compRating': '0.8998', 'compStars': 4, 'nationalRank': '297', 'positionRank': '48', 'stateRank': '29', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '48', '247stateRank': '27'}, {'school': 'georgia', 'year': '2020', 'playerName': 'Warren Brinson', 'highSchool': 'IMG Academy', 'city': 'Bradenton', 'state': 'FL', 'position': 'DT', 'height': 76.5, 'weight': '290', 'compRating': '0.8978', 'compStars': 4, 'nationalRank': '309', 'positionRank': '31', 'stateRank': '52', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '28', '247stateRank': '48'}, {'school': 'georgia', 'year': '2020', 'playerName': 'Austin Blaske', 'highSchool': 'South Effingham', 'city': 'Guyton', 'state': 'GA', 'position': 'OT', 'height': 77.0, 'weight': '278', 'compRating': '0.8759', 'compStars': 3, 'nationalRank': '528', 'positionRank': '41', 'stateRank': '59', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '32', '247stateRank': '36'}, {'school': 'georgia', 'year': '2020', 'playerName': 'Daran Branch', 'highSchool': 'Amite', 'city': 'Amite', 'state': 'LA', 'position': 'CB', 'height': 74.0, 'weight': '178', 'compRating': '0.8668', 'compStars': 3, 'nationalRank': '673', 'positionRank': '51', 'stateRank': '29', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '49', '247stateRank': '30'}, {'school': 'georgia', 'year': '2020', 'playerName': 'Devin Willock', 'highSchool': 'Paramus Catholic', 'city': 'Paramus', 'state': 'NJ', 'position': 'OT', 'height': 78.0, 'weight': '345', 'compRating': '0.8573', 'compStars': 3, 'nationalRank': '907', 'positionRank': '70', 'stateRank': '22', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '60', '247stateRank': '19'}, {'school': 'georgia', 'year': '2020', 'playerName': 'Ladd McConkey', 'highSchool': 'North Murray', 'city': 'Chatsworth', 'state': 'GA', 'position': 'WR', 'height': 72.0, 'weight': '175', 'compRating': '0.8485', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '168', 'stateRank': '121', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '187', '247stateRank': '126'}, {'school': 'georgia', 'year': '2020', 'playerName': 'Cameron Kinnie', 'highSchool': 'Collins Hill', 'city': 'Suwanee', 'state': 'GA', 'position': 'DT', 'height': 75.0, 'weight': '305', 'compRating': '0.8343', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '117', 'stateRank': '156', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '143', '247stateRank': '180'}, {'school': 'georgia', 'year': '2020', 'playerName': 'Jared Zirkel', 'highSchool': 'Tivy', 'city': 'Kerrville', 'state': 'TX', 'position': 'K', 'height': 75.0, 'weight': '185', 'compRating': '0.8263', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '5', 'stateRank': '270', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '7', '247stateRank': '331'}, {'school': 'vanderbilt', 'year': '2006', 'playerName': 'Jonathan Massey', 'highSchool': 'Gautier', 'city': 'Gautier', 'state': 'MS', 'position': 'TE', 'height': 74.0, 'weight': '241', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '321', 'positionRank': '18', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2006', 'playerName': 'Jared Funk', 'highSchool': 'St. Viator', 'city': 'Arlington Heights', 'state': 'IL', 'position': 'DUAL', 'height': 74.0, 'weight': '177', 'compRating': '0.8448', 'compStars': 3, 'nationalRank': '652', 'positionRank': '15', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2006', 'playerName': 'Turner Wimberly', 'highSchool': 'Hun School', 'city': 'Princeton', 'state': 'NJ', 'position': 'DUAL', 'height': 74.0, 'weight': '195', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '813', 'positionRank': '20', 'stateRank': '22', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2006', 'playerName': 'Alan Strong', 'highSchool': 'Douglass', 'city': 'Atlanta', 'state': 'GA', 'position': 'CB', 'height': 69.0, 'weight': '154', 'compRating': '0.8292', 'compStars': 3, 'nationalRank': '885', 'positionRank': '64', 'stateRank': '50', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2006', 'playerName': 'Adam Smotherman', 'highSchool': 'Smyrna', 'city': 'Smyrna', 'state': 'TN', 'position': 'OG', 'height': 76.0, 'weight': '262', 'compRating': '0.8292', 'compStars': 3, 'nationalRank': '895', 'positionRank': '60', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2006', 'playerName': 'D.J. Moore', 'highSchool': 'Broome', 'city': 'Spartanburg', 'state': 'SC', 'position': 'ATH', 'height': 70.0, 'weight': '175', 'compRating': '0.8260', 'compStars': 3, 'nationalRank': '914', 'positionRank': '75', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2006', 'playerName': 'Teriall Brannon', 'highSchool': 'Broome', 'city': 'Spartanburg', 'state': 'SC', 'position': 'SDE', 'height': 76.0, 'weight': '223', 'compRating': '0.8149', 'compStars': 3, 'nationalRank': '981', 'positionRank': '55', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2006', 'playerName': 'Greg Billinger', 'highSchool': 'Parkview', 'city': 'Lilburn', 'state': 'GA', 'position': 'SDE', 'height': 75.0, 'weight': '250', 'compRating': '0.8115', 'compStars': 3, 'nationalRank': '1000', 'positionRank': '57', 'stateRank': '56', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2006', 'playerName': 'Patrick Benoist', 'highSchool': 'Southlake Carroll', 'city': 'Southlake', 'state': 'TX', 'position': 'OLB', 'height': 72.0, 'weight': '206', 'compRating': '0.8052', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '72', 'stateRank': '197', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2006', 'playerName': 'Gaston Miller', 'highSchool': 'Riverdale', 'city': 'Murfreesboro', 'state': 'TN', 'position': 'APB', 'height': 66.0, 'weight': '153', 'compRating': '0.8021', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '23', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2006', 'playerName': 'Myron Lewis', 'highSchool': 'Pompano Beach', 'city': 'Pompano Beach', 'state': 'FL', 'position': 'WR', 'height': 74.0, 'weight': '190', 'compRating': '0.7990', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '123', 'stateRank': '148', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2006', 'playerName': 'Drew Brenk', 'highSchool': 'Needville', 'city': 'Needville', 'state': 'TX', 'position': 'OG', 'height': 76.0, 'weight': '285', 'compRating': '0.7990', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '91', 'stateRank': '204', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2006', 'playerName': 'Nathan Campbell', 'highSchool': 'Hazen', 'city': 'Hazen', 'state': 'AR', 'position': 'OLB', 'height': 75.0, 'weight': '215', 'compRating': '0.7927', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '75', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2006', 'playerName': 'Justin Green', 'highSchool': 'Charles Henderson Sch', 'city': 'Troy', 'state': 'AL', 'position': 'TE', 'height': 79.0, 'weight': '210', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '77', 'stateRank': '53', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2006', 'playerName': 'Joey Bailey', 'highSchool': 'Hewitt-Trussville', 'city': 'Trussville', 'state': 'AL', 'position': 'OG', 'height': 76.0, 'weight': '240', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '101', 'stateRank': '54', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2006', 'playerName': 'Reilly Lauer', 'highSchool': 'St. Ignatius', 'city': 'Cleveland', 'state': 'OH', 'position': 'SDE', 'height': 79.0, 'weight': '240', 'compRating': '0.7799', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '66', 'stateRank': '68', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2006', 'playerName': 'Matt Quinn', 'highSchool': 'Byrnes', 'city': 'Duncan', 'state': 'SC', 'position': 'WR', 'height': 77.0, 'weight': '200', 'compRating': '0.7767', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '141', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2006', 'playerName': 'Steven Goulet', 'highSchool': 'Dutch Fork', 'city': 'Irmo', 'state': 'SC', 'position': 'WR', 'height': 75.0, 'weight': '185', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '170', 'stateRank': '25', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2006', 'playerName': 'Brett Upson', 'highSchool': 'Spalding', 'city': 'Griffin', 'state': 'GA', 'position': 'K', 'height': 70.0, 'weight': '170', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '22', 'stateRank': '83', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2006', 'playerName': 'Kennard Reeves', 'highSchool': 'Duluth', 'city': 'Duluth', 'state': 'GA', 'position': 'APB', 'height': 72.0, 'weight': '181', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '30', 'stateRank': '85', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2006', 'playerName': 'Brent Trice', 'highSchool': 'Fork Union Military Academy', 'city': 'Fork Union', 'state': 'VA', 'position': 'S', 'height': 76.0, 'weight': '212', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': '37', 'positionRank': '4', 'stateRank': '30', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2006', 'playerName': 'Marquez Hall', 'highSchool': 'Booker T Washington', 'city': 'Tuskegee', 'state': 'AL', 'position': 'CB', 'height': 69.0, 'weight': '153', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '121', 'stateRank': '62', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2006', 'playerName': 'Austin Newton', 'highSchool': 'Union Grove', 'city': 'McDonough', 'state': 'GA', 'position': 'WDE', 'height': 76.0, 'weight': '200', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '74', 'stateRank': '91', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2006', 'playerName': 'Kikko Logan', 'highSchool': 'Elba', 'city': 'Elba', 'state': 'AL', 'position': 'ILB', 'height': 75.0, 'weight': '202', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '94', 'stateRank': '67', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2006', 'playerName': 'Jonathan Massey', 'highSchool': 'Gautier', 'city': 'Gautier', 'state': 'MS', 'position': 'TE', 'height': 74.0, 'weight': '245', 'compRating': '0.9284', 'compStars': 4, 'nationalRank': '147', 'positionRank': '9', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2006', 'playerName': 'Andre Smith', 'highSchool': 'Huffman', 'city': 'Birmingham', 'state': 'AL', 'position': 'OG', 'height': 76.0, 'weight': '325', 'compRating': '0.9994', 'compStars': 5, 'nationalRank': '1', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2006', 'playerName': 'Nikita Stover', 'highSchool': 'Itawamba C.C.', 'city': 'Fulton', 'state': 'MS', 'position': 'WR', 'height': 73.0, 'weight': '200', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2006', 'playerName': 'Mike Ford', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'RB', 'height': 74.0, 'weight': '210', 'compRating': '0.9333', 'compStars': 4, 'nationalRank': '2', 'positionRank': '1', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2006', 'playerName': 'Justin Woodall', 'highSchool': 'Lafayette', 'city': 'Oxford', 'state': 'MS', 'position': 'S', 'height': 75.0, 'weight': '200', 'compRating': '0.9294', 'compStars': 4, 'nationalRank': '141', 'positionRank': '9', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2006', 'playerName': 'Terry Grant', 'highSchool': 'Lumberton', 'city': 'Lumberton', 'state': 'MS', 'position': 'RB', 'height': 70.0, 'weight': '185', 'compRating': '0.9140', 'compStars': 4, 'nationalRank': '179', 'positionRank': '23', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2006', 'playerName': 'Taylor Pharr', 'highSchool': 'Shades Valley', 'city': 'Birmingham', 'state': 'AL', 'position': 'OT', 'height': 78.0, 'weight': '268', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '210', 'positionRank': '16', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2006', 'playerName': 'Mike McCoy', 'highSchool': 'Northwest Rankin', 'city': 'Flowood', 'state': 'MS', 'position': 'WR', 'height': 75.0, 'weight': '200', 'compRating': '0.8875', 'compStars': 3, 'nationalRank': '249', 'positionRank': '32', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2006', 'playerName': 'Earl Alexander', 'highSchool': 'Central', 'city': 'Phenix City', 'state': 'AL', 'position': 'WR', 'height': 76.0, 'weight': '200', 'compRating': '0.8830', 'compStars': 3, 'nationalRank': '270', 'positionRank': '34', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2006', 'playerName': 'David Ross', 'highSchool': 'Homewood', 'city': 'Birmingham', 'state': 'AL', 'position': 'OG', 'height': 75.0, 'weight': '302', 'compRating': '0.8813', 'compStars': 3, 'nationalRank': '285', 'positionRank': '12', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2006', 'playerName': 'Marcus Udell', 'highSchool': 'Amos P. Godby', 'city': 'Tallahassee', 'state': 'FL', 'position': 'CB', 'height': 71.0, 'weight': '178', 'compRating': '0.8813', 'compStars': 3, 'nationalRank': '288', 'positionRank': '24', 'stateRank': '43'}, {'school': 'alabama', 'year': '2006', 'playerName': 'Alex Stadler', 'highSchool': 'Liberty', 'city': 'Bealeton', 'state': 'VA', 'position': 'OT', 'height': 78.0, 'weight': '300', 'compRating': '0.8781', 'compStars': 3, 'nationalRank': '305', 'positionRank': '24', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2006', 'playerName': 'Greg McElroy', 'highSchool': 'Southlake Carroll', 'city': 'Southlake', 'state': 'TX', 'position': 'PRO', 'height': 75.0, 'weight': '225', 'compRating': '0.8733', 'compStars': 3, 'nationalRank': '348', 'positionRank': '13', 'stateRank': '46', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2006', 'playerName': 'Tremayne Coger', 'highSchool': 'Columbia Central', 'city': 'Columbia', 'state': 'TN', 'position': 'CB', 'height': 71.0, 'weight': '180', 'compRating': '0.8670', 'compStars': 3, 'nationalRank': '386', 'positionRank': '31', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2006', 'playerName': 'Andy Davis', 'highSchool': 'Briarwood Christian', 'city': 'Birmingham', 'state': 'AL', 'position': 'S', 'height': 72.0, 'weight': '205', 'compRating': '0.8670', 'compStars': 3, 'nationalRank': '392', 'positionRank': '28', 'stateRank': '16'}, {'school': 'alabama', 'year': '2006', 'playerName': 'LaBronski Hutchins', 'highSchool': 'Benjamin Russell Sch', 'city': 'Alexander City', 'state': 'AL', 'position': 'OLB', 'height': 75.0, 'weight': '177', 'compRating': '0.8590', 'compStars': 3, 'nationalRank': '469', 'positionRank': '26', 'stateRank': '18'}, {'school': 'alabama', 'year': '2006', 'playerName': 'Milton Talbert', 'highSchool': 'Hattiesburg', 'city': 'Hattiesburg', 'state': 'MS', 'position': 'WDE', 'height': 74.0, 'weight': '225', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '503', 'positionRank': '16', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2006', 'playerName': 'Charlie Higgenbotham', 'highSchool': 'Mountain Brook', 'city': 'Birmingham', 'state': 'AL', 'position': 'ILB', 'height': 73.0, 'weight': '225', 'compRating': '0.8510', 'compStars': 3, 'nationalRank': '568', 'positionRank': '34', 'stateRank': '22', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2006', 'playerName': 'Javier Arenas', 'highSchool': 'Robinson', 'city': 'Tampa', 'state': 'FL', 'position': 'ATH', 'height': 70.0, 'weight': '180', 'compRating': '0.8510', 'compStars': 3, 'nationalRank': '582', 'positionRank': '49', 'stateRank': '73', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2006', 'playerName': 'Jake Jones', 'highSchool': 'Mountain Brook', 'city': 'Birmingham', 'state': 'AL', 'position': 'CB', 'height': 73.0, 'weight': '177', 'compRating': '0.8479', 'compStars': 3, 'nationalRank': '614', 'positionRank': '47', 'stateRank': '25', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2006', 'playerName': 'Charlie Kirschman', 'highSchool': 'Nease', 'city': 'Ponte Vedra Beach', 'state': 'FL', 'position': 'ILB', 'height': 75.0, 'weight': '225', 'compRating': '0.8448', 'compStars': 3, 'nationalRank': '649', 'positionRank': '40', 'stateRank': '79'}, {'school': 'alabama', 'year': '2006', 'playerName': 'J.D. Lott', 'highSchool': 'Briarwood Christian', 'city': 'Birmingham', 'state': 'AL', 'position': 'TE', 'height': 75.0, 'weight': '210', 'compRating': '0.8354', 'compStars': 3, 'nationalRank': '723', 'positionRank': '43', 'stateRank': '28'}, {'school': 'alabama', 'year': '2006', 'playerName': 'Brian Motley', 'highSchool': 'Autaugaville Sch', 'city': 'Autaugaville', 'state': 'AL', 'position': 'OG', 'height': 75.0, 'weight': '289', 'compRating': '0.8292', 'compStars': 3, 'nationalRank': '893', 'positionRank': '59', 'stateRank': '33', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2006', 'playerName': 'LaBronski Huntchins', 'highSchool': 'Benjamin Russell Sch', 'city': 'Alexander City', 'state': 'AL', 'position': 'OLB', 'height': 75.0, 'weight': '177', 'compRating': '0.8282', 'compStars': 3, 'nationalRank': '902', 'positionRank': '56', 'stateRank': '35'}, {'school': 'alabama', 'year': '2006', 'playerName': 'Preston Dial', 'highSchool': 'UMS-Wright Preparatory School', 'city': 'Mobile', 'state': 'AL', 'position': 'TE', 'height': 75.0, 'weight': '237', 'compRating': '0.8215', 'compStars': 3, 'nationalRank': '938', 'positionRank': '57', 'stateRank': '36', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2006', 'playerName': 'Marquis Johnson', 'highSchool': 'Booker', 'city': 'Sarasota', 'state': 'FL', 'position': 'CB', 'height': 73.0, 'weight': '180', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2005', 'playerName': 'Marcus Shavers', 'highSchool': 'Allen', 'city': 'Allen', 'state': 'TX', 'position': 'SDE', 'height': 76.0, 'weight': '250', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '178', 'positionRank': '12', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2005', 'playerName': 'Felix Jones', 'highSchool': 'Booker T. Washington', 'city': 'Tulsa', 'state': 'OK', 'position': 'ATH', 'height': 71.0, 'weight': '197', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '179', 'positionRank': '10', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2005', 'playerName': 'Kevin Thornton', 'highSchool': 'Little Rock Central', 'city': 'Little Rock', 'state': 'AR', 'position': 'S', 'height': 74.0, 'weight': '187', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '207', 'positionRank': '12', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2005', 'playerName': 'Colin Tucker', 'highSchool': 'Pearce', 'city': 'Richardson', 'state': 'TX', 'position': 'OG', 'height': 66.0, 'weight': '275', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '227', 'positionRank': '11', 'stateRank': '28', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2005', 'playerName': 'Brandon Barnett', 'highSchool': 'Arkansas', 'city': 'Texarkana', 'state': 'AR', 'position': 'APB', 'height': 69.0, 'weight': '188', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '343', 'positionRank': '7', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2005', 'playerName': 'Elston Forte', 'highSchool': 'Wilbur D. Mills', 'city': 'Little Rock', 'state': 'AR', 'position': 'S', 'height': 73.0, 'weight': '190', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '404', 'positionRank': '23', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2005', 'playerName': 'Mike Aguirre', 'highSchool': 'Cypress Bay', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'OT', 'height': 77.0, 'weight': '310', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '481', 'positionRank': '42', 'stateRank': '62', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2005', 'playerName': 'Tyrell Graham', 'highSchool': 'Yates', 'city': 'Houston', 'state': 'TX', 'position': 'OLB', 'height': 76.0, 'weight': '205', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '489', 'positionRank': '44', 'stateRank': '75', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2005', 'playerName': 'Cord Gray', 'highSchool': 'Wynne', 'city': 'Wynne', 'state': 'AR', 'position': 'DT', 'height': 73.0, 'weight': '286', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '531', 'positionRank': '34', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2005', 'playerName': 'Antwain Robinson', 'highSchool': 'Little Rock Central', 'city': 'Little Rock', 'state': 'AR', 'position': 'ILB', 'height': 73.0, 'weight': '243', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '633', 'positionRank': '35', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2005', 'playerName': 'Jamar Love', 'highSchool': 'North Little Rock', 'city': 'North Little Rock', 'state': 'AR', 'position': 'CB', 'height': 73.0, 'weight': '186', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '694', 'positionRank': '61', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2005', 'playerName': 'Fred Fairchild', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'OLB', 'height': 74.0, 'weight': '206', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '23', 'positionRank': '2', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2005', 'playerName': 'Rod Coleman', 'highSchool': 'Camden Fairview', 'city': 'Camden', 'state': 'AR', 'position': 'WR', 'height': 74.0, 'weight': '173', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '729', 'positionRank': '72', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2005', 'playerName': 'Kevin Hubbard', 'highSchool': 'Southwest DeKalb', 'city': 'Decatur', 'state': 'GA', 'position': 'TE', 'height': 75.0, 'weight': '225', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '756', 'positionRank': '41', 'stateRank': '41', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2005', 'playerName': 'Michael Bibbs', 'highSchool': 'Booker T Washington', 'city': 'Dallas', 'state': 'TX', 'position': 'S', 'height': 74.0, 'weight': '210', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '812', 'positionRank': '51', 'stateRank': '120', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2005', 'playerName': 'Casey Dick', 'highSchool': 'Allen', 'city': 'Allen', 'state': 'TX', 'position': 'DUAL', 'height': 73.0, 'weight': '196', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '813', 'positionRank': '28', 'stateRank': '121', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2005', 'playerName': "De'Andre Bryant", 'highSchool': 'Dunwoody', 'city': 'Atlanta', 'state': 'GA', 'position': 'S', 'height': 78.0, 'weight': '200', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '896', 'positionRank': '56', 'stateRank': '52', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2005', 'playerName': 'Joey Crossland', 'highSchool': 'Russellville', 'city': 'Russellville', 'state': 'AR', 'position': 'OT', 'height': 78.0, 'weight': '291', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '926', 'positionRank': '70', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2005', 'playerName': 'Reggie Fish II', 'highSchool': 'Mesquite', 'city': 'Mesquite', 'state': 'TX', 'position': 'ATH', 'height': 67.0, 'weight': '139', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '99', 'stateRank': '204', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2013', 'playerName': 'Alex Collins', 'highSchool': 'South Plantation', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'RB', 'height': 71.0, 'weight': '204', 'compRating': '0.9805', 'compStars': 4, 'nationalRank': '40', 'positionRank': '5', 'stateRank': '10', '247Rating': ' 99 ', '247Stars': 5, '247nationalRank': '17', '247positionRank': '1', '247stateRank': '5'}, {'school': 'arkansas', 'year': '2013', 'playerName': 'Hunter Henry', 'highSchool': 'Pulaski Academy', 'city': 'Little Rock', 'state': 'AR', 'position': 'TE', 'height': 78.0, 'weight': '235', 'compRating': '0.9634', 'compStars': 4, 'nationalRank': '80', 'positionRank': '3', 'stateRank': '2', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '106', '247positionRank': '4', '247stateRank': '2'}, {'school': 'arkansas', 'year': '2013', 'playerName': 'Denver Kirkland', 'highSchool': 'Booker T. Washington', 'city': 'Miami', 'state': 'FL', 'position': 'OG', 'height': 77.0, 'weight': '333', 'compRating': '0.9348', 'compStars': 4, 'nationalRank': '142', 'positionRank': '8', 'stateRank': '24', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '13', '247stateRank': '36'}, {'school': 'arkansas', 'year': '2013', 'playerName': 'Austin Allen', 'highSchool': 'Fayetteville', 'city': 'Fayetteville', 'state': 'AR', 'position': 'PRO', 'height': 74.0, 'weight': '217', 'compRating': '0.8913', 'compStars': 4, 'nationalRank': '329', 'positionRank': '20', 'stateRank': '3', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '17', '247stateRank': '3'}, {'school': 'arkansas', 'year': '2013', 'playerName': 'Reeve Koehler', 'highSchool': 'St. Louis', 'city': 'Honolulu', 'state': 'HI', 'position': 'OG', 'height': 75.0, 'weight': '320', 'compRating': '0.8881', 'compStars': 3, 'nationalRank': '344', 'positionRank': '18', 'stateRank': '3', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '14', '247stateRank': '2'}, {'school': 'arkansas', 'year': '2013', 'playerName': 'Carroll Washington', 'highSchool': 'Hartnell College', 'city': 'Salinas', 'state': 'CA', 'position': 'CB', 'height': 72.0, 'weight': '175', 'compRating': '0.8785', 'compStars': 3, 'nationalRank': '32', 'positionRank': '2', 'stateRank': '9', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '10', '247positionRank': '1', '247stateRank': '5'}, {'school': 'arkansas', 'year': '2013', 'playerName': 'Brooks Ellis', 'highSchool': 'Fayetteville', 'city': 'Fayetteville', 'state': 'AR', 'position': 'ILB', 'height': 74.0, 'weight': '215', 'compRating': '0.8681', 'compStars': 3, 'nationalRank': '493', 'positionRank': '33', 'stateRank': '4', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '24', '247stateRank': '4'}, {'school': 'arkansas', 'year': '2013', 'playerName': 'AJ Derby', 'highSchool': 'Coffeyville C.C.', 'city': 'Coffeyville', 'state': 'KS', 'position': 'PRO', 'height': 76.0, 'weight': '225', 'compRating': '0.8656', 'compStars': 3, 'nationalRank': '50', 'positionRank': '3', 'stateRank': '11', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '226', '247positionRank': '11', '247stateRank': '1'}, {'school': 'arkansas', 'year': '2013', 'playerName': 'Dan Skipper', 'highSchool': 'Ralston Valley', 'city': 'Arvada', 'state': 'CO', 'position': 'OT', 'height': 82.0, 'weight': '292', 'compRating': '0.8624', 'compStars': 3, 'nationalRank': '583', 'positionRank': '47', 'stateRank': '3', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '51', '247stateRank': '5'}, {'school': 'arkansas', 'year': '2013', 'playerName': 'Myke Tavarres', 'highSchool': 'College of the Siskiyous', 'city': 'Weed', 'state': 'CA', 'position': 'OLB', 'height': 74.0, 'weight': '220', 'compRating': '0.8560', 'compStars': 3, 'nationalRank': '74', 'positionRank': '6', 'stateRank': '21', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '86', '247positionRank': '8', '247stateRank': '25'}, {'school': 'arkansas', 'year': '2013', 'playerName': 'Damon Mitchell', 'highSchool': 'Egg Harbor Twp', 'city': 'Egg Harbor Township', 'state': 'NJ', 'position': 'DUAL', 'height': 74.0, 'weight': '190', 'compRating': '0.8555', 'compStars': 3, 'nationalRank': '710', 'positionRank': '21', 'stateRank': '23', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '12', '247stateRank': '12'}, {'school': 'arkansas', 'year': '2013', 'playerName': 'Martrell Spaight', 'highSchool': 'Coffeyville C.C.', 'city': 'Coffeyville', 'state': 'KS', 'position': 'OLB', 'height': 72.0, 'weight': '220', 'compRating': '0.8544', 'compStars': 3, 'nationalRank': '80', 'positionRank': '9', 'stateRank': '16', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '88', '247positionRank': '9', '247stateRank': '16'}, {'school': 'arkansas', 'year': '2013', 'playerName': 'D.J. Dean', 'highSchool': 'Newton', 'city': 'Newton', 'state': 'TX', 'position': 'ATH', 'height': 70.0, 'weight': '180', 'compRating': '0.8415', 'compStars': 3, 'nationalRank': '956', 'positionRank': '68', 'stateRank': '142', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '74', '247stateRank': '147'}, {'school': 'arkansas', 'year': '2013', 'playerName': 'Alex Brignoni', 'highSchool': 'Fayetteville', 'city': 'Fayetteville', 'state': 'AR', 'position': 'S', 'height': 73.0, 'weight': '190', 'compRating': '0.8410', 'compStars': 3, 'nationalRank': '971', 'positionRank': '70', 'stateRank': '5', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '62', '247stateRank': '5'}, {'school': 'arkansas', 'year': '2013', 'playerName': 'Melvinson Hartfield', 'highSchool': 'South Oak Cliff', 'city': 'Dallas', 'state': 'TX', 'position': 'CB', 'height': 71.0, 'weight': '185', 'compRating': '0.8345', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '85', 'stateRank': '169'}, {'school': 'arkansas', 'year': '2013', 'playerName': 'Denzell Evans', 'highSchool': 'Bellaire', 'city': 'Bellaire', 'state': 'TX', 'position': 'RB', 'height': 72.0, 'weight': '205', 'compRating': '0.8295', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '77', 'stateRank': '186', '247Rating': ' 78 ', '247Stars': 2, '247positionRank': '130', '247stateRank': '325'}, {'school': 'arkansas', 'year': '2013', 'playerName': 'Tevin Beanum', 'highSchool': 'Forrest City', 'city': 'Forrest City', 'state': 'AR', 'position': 'WDE', 'height': 76.0, 'weight': '233', 'compRating': '0.8205', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '63', 'stateRank': '7', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '61', '247stateRank': '9'}, {'school': 'arkansas', 'year': '2013', 'playerName': 'Johnathan McClure', 'highSchool': 'Butler C.C.', 'city': 'El Dorado', 'state': 'KS', 'position': 'OG', 'height': 76.0, 'weight': '310', 'compRating': '0.8189', 'compStars': 3, 'nationalRank': '173', 'positionRank': '5', 'stateRank': '27', '247Rating': ' 79 ', '247Stars': 2, '247nationalRank': '247', '247positionRank': '6', '247stateRank': '29'}, {'school': 'arkansas', 'year': '2013', 'playerName': 'Korliss Marshall', 'highSchool': 'Osceola', 'city': 'Osceola', 'state': 'AR', 'position': 'RB', 'height': 72.0, 'weight': '190', 'compRating': '0.8174', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '89', 'stateRank': '8', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '91', '247stateRank': '10'}, {'school': 'arkansas', 'year': '2013', 'playerName': "Ke'Tyrus Marks", 'highSchool': 'Suncoast', 'city': 'West Palm Beach', 'state': 'FL', 'position': 'DT', 'height': 74.0, 'weight': '285', 'compRating': '0.8041', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '103', 'stateRank': '244', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '72', '247stateRank': '170'}, {'school': 'arkansas', 'year': '2013', 'playerName': "De'Andre Coley", 'highSchool': 'Northwestern', 'city': 'Miami', 'state': 'FL', 'position': 'S', 'height': 73.0, 'weight': '185', 'compRating': '0.7995', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '133', 'stateRank': '254', '247Rating': ' 77 ', '247Stars': 2, '247positionRank': '183', '247stateRank': '319'}, {'school': 'arkansas', 'year': '2013', 'playerName': 'Tiquention Coleman', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'S', 'height': 70.0, 'weight': '200', 'compRating': '0.7993', 'compStars': 3, 'nationalRank': '243', 'positionRank': '19', 'stateRank': '8', '247Rating': ' 82 ', '247Stars': 3, '247nationalRank': '170', '247positionRank': '14', '247stateRank': '6'}, {'school': 'arkansas', 'year': '2013', 'playerName': 'Drew Morgan', 'highSchool': 'Greenwood', 'city': 'Greenwood', 'state': 'AR', 'position': 'ATH', 'height': 72.0, 'weight': '182', 'compRating': '0.7888', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '150', 'stateRank': '14', '247Rating': ' 75 ', '247Stars': 2, '247positionRank': '181', '247stateRank': '13'}, {'school': 'arkansas', 'year': '2013', 'playerName': 'Sam Irwin-Hill', 'highSchool': 'City College of San Francisco', 'city': 'San Francisco', 'state': 'CA', 'position': 'P', 'height': 75.0, 'weight': '210', 'compRating': '0.7819', 'compStars': 2, 'nationalRank': '304', 'positionRank': '2', 'stateRank': '126', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '1', '247stateRank': '104'}, {'school': 'arkansas', 'year': '2013', 'playerName': 'Karl Roesler', 'highSchool': 'St. Xavier', 'city': 'Louisville', 'state': 'KY', 'position': 'WDE', 'height': 75.0, 'weight': '230', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '125', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2013', 'playerName': 'Will Duncan', 'highSchool': 'Little Rock Christian Academy', 'city': 'Little Rock', 'state': 'AR', 'position': 'TE', 'height': 76.0, 'weight': '230', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2013', 'playerName': 'Kevin Richardson', 'highSchool': 'Jacksonville', 'city': 'Jacksonville', 'state': 'AR', 'position': 'WR', 'height': 72.0, 'weight': '158', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2013', 'playerName': 'Kohl Slaughter', 'highSchool': 'Webb City', 'city': 'Webb City', 'state': 'MO', 'position': 'TE', 'height': 74.0, 'weight': '235', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2013', 'playerName': 'Ryan Gray', 'highSchool': 'Mahopac', 'city': 'Mahopac', 'state': 'NY', 'position': 'OG', 'height': 74.0, 'weight': '290', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2013', 'playerName': 'Anthony Antwine', 'highSchool': 'Plano', 'city': 'Plano', 'state': 'TX', 'position': 'WR', 'height': 76.0, 'weight': '215', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2013', 'playerName': 'Kendrick Payne', 'highSchool': 'Castro Valley', 'city': 'Castro Valley', 'state': 'CA', 'position': 'WR', 'height': 72.0, 'weight': '173', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2013', 'playerName': 'Matt Reynolds', 'highSchool': 'McKinney', 'city': 'McKinney', 'state': 'TX', 'position': 'OLB', 'height': 73.0, 'weight': '190', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2013', 'playerName': 'Devin Ryan', 'highSchool': 'Marcus', 'city': 'Flower Mound', 'state': 'TX', 'position': 'FB', 'height': 70.0, 'weight': '217', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2013', 'playerName': 'Nicholas Thomas-Smith', 'highSchool': 'Marquette Sr.', 'city': 'Chesterfield', 'state': 'MO', 'position': 'ILB', 'height': 70.0, 'weight': '225', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2013', 'playerName': 'Marty Murad', 'highSchool': 'Jesuit', 'city': 'Dallas', 'state': 'TX', 'position': 'WR', 'height': 69.0, 'weight': '185', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2013', 'playerName': 'Matt Dodson', 'highSchool': 'McKinney Boyd', 'city': 'McKinney', 'state': 'TX', 'position': 'S', 'height': 70.0, 'weight': '211', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2006', 'playerName': 'Anthony Summers', 'highSchool': 'Olive Branch', 'city': 'Olive Branch', 'state': 'MS', 'position': 'ATH', 'height': 74.0, 'weight': '200', 'compRating': '0.8955', 'compStars': 4, 'nationalRank': '216', 'positionRank': '12', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2006', 'playerName': 'Alex Dekle', 'highSchool': 'Statesboro', 'city': 'Statesboro', 'state': 'GA', 'position': 'DT', 'height': 73.0, 'weight': '262', 'compRating': '0.8604', 'compStars': 3, 'nationalRank': '457', 'positionRank': '41', 'stateRank': '26', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2006', 'playerName': 'Courtney Jones', 'highSchool': 'Pensacola', 'city': 'Pensacola', 'state': 'FL', 'position': 'RB', 'height': 71.0, 'weight': '204', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '511', 'positionRank': '41', 'stateRank': '69', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2006', 'playerName': 'Jamon Hughes', 'highSchool': 'Humphreys County', 'city': 'Belzoni', 'state': 'MS', 'position': 'ILB', 'height': 73.0, 'weight': '221', 'compRating': '0.8479', 'compStars': 3, 'nationalRank': '611', 'positionRank': '37', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2006', 'playerName': 'Rodney Prince', 'highSchool': 'Shades Valley', 'city': 'Birmingham', 'state': 'AL', 'position': 'WDE', 'height': 74.0, 'weight': '222', 'compRating': '0.8354', 'compStars': 3, 'nationalRank': '719', 'positionRank': '26', 'stateRank': '27', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2006', 'playerName': 'Anthony Johnson', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'ATH', 'height': 70.0, 'weight': '195', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '27', 'positionRank': '1', 'stateRank': '22', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2006', 'playerName': 'Tony Burks', 'highSchool': 'Mississippi Gulf Coast C.C.', 'city': 'Perkinston', 'state': 'MS', 'position': 'WR', 'height': 76.0, 'weight': '205', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '77', 'positionRank': '7', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2006', 'playerName': 'Ryan Mason', 'highSchool': 'Mississippi Delta C.C.', 'city': 'Moorhead', 'state': 'MS', 'position': 'WR', 'height': 77.0, 'weight': '215', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '88', 'positionRank': '8', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2006', 'playerName': 'J.D. Hamilton', 'highSchool': 'Copiah-Lincoln C.C.', 'city': 'Wesson', 'state': 'MS', 'position': 'OT', 'height': 76.0, 'weight': '305', 'compRating': '0.8306', 'compStars': 3, 'nationalRank': '100', 'positionRank': '12', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2006', 'playerName': 'Marcus Washington', 'highSchool': 'Fort Bend Marshall', 'city': 'Missouri City', 'state': 'TX', 'position': 'CB', 'height': 70.0, 'weight': '175', 'compRating': '0.8146', 'compStars': 3, 'nationalRank': '982', 'positionRank': '73', 'stateRank': '166', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2006', 'playerName': 'Brandon Cooper', 'highSchool': 'Fort Bend Marshall', 'city': 'Missouri City', 'state': 'TX', 'position': 'SDE', 'height': 76.0, 'weight': '235', 'compRating': '0.8038', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '64', 'stateRank': '201', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2006', 'playerName': 'Chris Herrera', 'highSchool': 'Fort Bend Marshall', 'city': 'Missouri City', 'state': 'TX', 'position': 'TE', 'height': 76.0, 'weight': '275', 'compRating': '0.7958', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '72', 'stateRank': '207', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2006', 'playerName': 'J.C. Brignone', 'highSchool': 'St Stanislaus', 'city': 'Bay Saint Louis', 'state': 'MS', 'position': 'DT', 'height': 73.0, 'weight': '284', 'compRating': '0.7941', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '87', 'stateRank': '29', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2006', 'playerName': 'Kyle Love', 'highSchool': 'North Clayton', 'city': 'Atlanta', 'state': 'GA', 'position': 'OG', 'height': 74.0, 'weight': '315', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '111', 'stateRank': '75', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2006', 'playerName': 'Mark Melichar', 'highSchool': 'Westminster School At Oak Mountain', 'city': 'Birmingham', 'state': 'AL', 'position': 'OG', 'height': 77.0, 'weight': '275', 'compRating': '0.7642', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '131', 'stateRank': '61', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2006', 'playerName': 'Brandon Henderson', 'highSchool': 'Fayette County', 'city': 'Fayetteville', 'state': 'GA', 'position': 'TE', 'height': 74.0, 'weight': '220', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '104', 'stateRank': '97', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2006', 'playerName': 'Aaron Feld', 'highSchool': 'Homewood', 'city': 'Birmingham', 'state': 'AL', 'position': 'WDE', 'height': 73.0, 'weight': '218', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '76', 'stateRank': '64', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2006', 'playerName': 'Arnil Stallworth', 'highSchool': 'Daphne', 'city': 'Daphne', 'state': 'AL', 'position': 'RB', 'height': 69.0, 'weight': '190', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '97', 'stateRank': '66', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2006', 'playerName': 'Timmy Bailey', 'highSchool': 'Mississippi Delta C.C.', 'city': 'Moorhead', 'state': 'MS', 'position': 'ILB', 'height': 75.0, 'weight': '237', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2006', 'playerName': 'Alex Carpenter', 'highSchool': 'Biggersville', 'city': 'Corinth', 'state': 'MS', 'position': 'WR', 'height': 72.0, 'weight': '168', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2006', 'playerName': 'Boobie Dixon', 'highSchool': 'Terry', 'city': 'Terry', 'state': 'MS', 'position': 'RB', 'height': 73.0, 'weight': '229', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2006', 'playerName': 'Keith Mills', 'highSchool': 'Alexandria', 'city': 'Alexandria', 'state': 'LA', 'position': 'WR', 'height': 75.0, 'weight': '195', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2006', 'playerName': 'Chasman Davis', 'highSchool': 'St. Lucie West Centennial', 'city': 'Port Saint Lucie', 'state': 'FL', 'position': 'OLB', 'height': 72.0, 'weight': '210', 'compRating': '0.9286', 'compStars': 4, 'nationalRank': '145', 'positionRank': '7', 'stateRank': '24'}, {'school': 'mississippi-state', 'year': '2006', 'playerName': 'Reggie Odom', 'highSchool': 'Deland', 'city': 'Deland', 'state': 'FL', 'position': 'DT', 'height': 72.0, 'weight': '290', 'compRating': '0.9041', 'compStars': 4, 'nationalRank': '189', 'positionRank': '13', 'stateRank': '32', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2010', 'playerName': 'Rajaan Bennett', 'highSchool': 'McEachern', 'city': 'Powder Springs', 'state': 'GA', 'position': 'RB', 'height': 71.0, 'weight': '210', 'compRating': '0.8901', 'compStars': 4, 'nationalRank': '346', 'positionRank': '23', 'stateRank': '33', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '219', '247positionRank': '19', '247stateRank': '18'}, {'school': 'vanderbilt', 'year': '2010', 'playerName': 'Kenneth Ladler', 'highSchool': 'Stephenson', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'S', 'height': 74.0, 'weight': '190', 'compRating': '0.8764', 'compStars': 3, 'nationalRank': '467', 'positionRank': '36', 'stateRank': '40', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2010', 'playerName': 'Kyle Woestmann', 'highSchool': 'Walton', 'city': 'Marietta', 'state': 'GA', 'position': 'DT', 'height': 75.0, 'weight': '265', 'compRating': '0.8733', 'compStars': 3, 'nationalRank': '531', 'positionRank': '51', 'stateRank': '47', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2010', 'playerName': 'Andre Simmons', 'highSchool': 'South County', 'city': 'Lorton', 'state': 'VA', 'position': 'S', 'height': 73.0, 'weight': '193', 'compRating': '0.8733', 'compStars': 3, 'nationalRank': '535', 'positionRank': '42', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2010', 'playerName': 'Vince Taylor', 'highSchool': 'Oak Grove', 'city': 'Hattiesburg', 'state': 'MS', 'position': 'DT', 'height': 73.0, 'weight': '270', 'compRating': '0.8733', 'compStars': 3, 'nationalRank': '540', 'positionRank': '53', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2010', 'playerName': 'Jared Morse', 'highSchool': 'Oxford', 'city': 'Oxford', 'state': 'AL', 'position': 'DT', 'height': 75.0, 'weight': '260', 'compRating': '0.8622', 'compStars': 3, 'nationalRank': '765', 'positionRank': '65', 'stateRank': '25', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2010', 'playerName': 'James Kittredge', 'highSchool': 'Don Bosco Prep', 'city': 'Ramsey', 'state': 'NJ', 'position': 'SDE', 'height': 76.0, 'weight': '250', 'compRating': '0.8590', 'compStars': 3, 'nationalRank': '845', 'positionRank': '40', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2010', 'playerName': 'Karl Butler', 'highSchool': 'Brother Martin', 'city': 'New Orleans', 'state': 'LA', 'position': 'CB', 'height': 74.0, 'weight': '185', 'compRating': '0.8559', 'compStars': 3, 'nationalRank': '871', 'positionRank': '68', 'stateRank': '22', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2010', 'playerName': 'Andre Hal', 'highSchool': 'Port Allen', 'city': 'Port Allen', 'state': 'LA', 'position': 'CB', 'height': 72.0, 'weight': '170', 'compRating': '0.8559', 'compStars': 3, 'nationalRank': '884', 'positionRank': '70', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2010', 'playerName': 'Thomas Ryan', 'highSchool': 'Marathon', 'city': 'Marathon', 'state': 'FL', 'position': 'SDE', 'height': 76.0, 'weight': '240', 'compRating': '0.8528', 'compStars': 3, 'nationalRank': '999', 'positionRank': '52', 'stateRank': '148', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2010', 'playerName': 'Grant Ramsay', 'highSchool': 'Pope', 'city': 'Marietta', 'state': 'GA', 'position': 'OG', 'height': 77.0, 'weight': '280', 'compRating': '0.8510', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '52', 'stateRank': '83', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2010', 'playerName': 'Blake Gowder', 'highSchool': 'Union County', 'city': 'Blairsville', 'state': 'GA', 'position': 'ATH', 'height': 74.0, 'weight': '215', 'compRating': '0.8479', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '79', 'stateRank': '86', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2010', 'playerName': 'Jonathan Krause', 'highSchool': 'South Gwinnett', 'city': 'Snellville', 'state': 'GA', 'position': 'WR', 'height': 71.0, 'weight': '168', 'compRating': '0.8479', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '145', 'stateRank': '89', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2010', 'playerName': 'Logan Stewart', 'highSchool': 'Boiling Springs', 'city': 'Boiling Springs', 'state': 'SC', 'position': 'OG', 'height': 75.0, 'weight': '253', 'compRating': '0.8448', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '60', 'stateRank': '27', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2010', 'playerName': 'Andrew Bridges', 'highSchool': 'Westminster Christian School', 'city': 'Gainesville', 'state': 'GA', 'position': 'WDE', 'height': 78.0, 'weight': '245', 'compRating': '0.8448', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '68', 'stateRank': '93', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2010', 'playerName': 'Jordan Matthews', 'highSchool': 'Madison County', 'city': 'Gurley', 'state': 'AL', 'position': 'WR', 'height': 75.0, 'weight': '193', 'compRating': '0.8417', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '162', 'stateRank': '41', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2010', 'playerName': 'Chris Boyd', 'highSchool': 'Roswell', 'city': 'Roswell', 'state': 'GA', 'position': 'WR', 'height': 76.0, 'weight': '195', 'compRating': '0.8417', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '164', 'stateRank': '97', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2010', 'playerName': 'Carey Spear', 'highSchool': 'Mayfield', 'city': 'Cleveland', 'state': 'OH', 'position': 'K', 'height': 71.0, 'weight': '175', 'compRating': '0.8319', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '16', 'stateRank': '86', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2010', 'playerName': 'Jordan Rodgers', 'highSchool': 'Butte College', 'city': 'Oroville', 'state': 'CA', 'position': 'PRO', 'height': 74.0, 'weight': '210', 'compRating': '0.8222', 'compStars': 3, 'nationalRank': '92', 'positionRank': '3', 'stateRank': '33', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2010', 'playerName': 'Steven Clarke', 'highSchool': 'Boyd Anderson', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'CB', 'height': 69.0, 'weight': '180', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '155', 'stateRank': '240', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2010', 'playerName': 'Chase Garnham', 'highSchool': 'Fairhope', 'city': 'Fairhope', 'state': 'AL', 'position': 'OLB', 'height': 74.0, 'weight': '210', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '134', 'stateRank': '56', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2010', 'playerName': 'Fitz Lassing', 'highSchool': 'Montgomery Bell Academy', 'city': 'Nashville', 'state': 'TN', 'position': 'OLB', 'height': 75.0, 'weight': '225', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '139', 'stateRank': '32', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2010', 'playerName': 'Chase White', 'highSchool': 'Plano West', 'city': 'Plano', 'state': 'TX', 'position': 'OG', 'height': 77.0, 'weight': '260', 'compRating': '0.8069', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '113', 'stateRank': '300', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2010', 'playerName': 'Trent Pruitt', 'highSchool': 'Fitzgerald', 'city': 'Fitzgerald', 'state': 'GA', 'position': 'WR', 'height': 70.0, 'weight': '175', 'compRating': '0.8051', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '237', 'stateRank': '145', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2010', 'playerName': 'Andrew East', 'highSchool': 'North Central', 'city': 'Indianapolis', 'state': 'IN', 'position': 'ILB', 'height': 76.0, 'weight': '220', 'compRating': '0.7531', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '119', 'stateRank': '27', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2010', 'playerName': 'Dee Milliner', 'highSchool': 'Stanhope Elmore', 'city': 'Millbrook', 'state': 'AL', 'position': 'CB', 'height': 73.0, 'weight': '196', 'compRating': '0.9932', 'compStars': 5, 'nationalRank': '14', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '19', '247positionRank': '2', '247stateRank': '1'}, {'school': 'alabama', 'year': '2010', 'playerName': 'Phillip Sims', 'highSchool': 'Oscar Smith', 'city': 'Chesapeake', 'state': 'VA', 'position': 'PRO', 'height': 74.0, 'weight': '217', 'compRating': '0.9846', 'compStars': 5, 'nationalRank': '31', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '41', '247positionRank': '1', '247stateRank': '2'}, {'school': 'alabama', 'year': '2010', 'playerName': 'John Fulton', 'highSchool': 'Manning', 'city': 'Manning', 'state': 'SC', 'position': 'CB', 'height': 72.0, 'weight': '187', 'compRating': '0.9813', 'compStars': 4, 'nationalRank': '36', 'positionRank': '3', 'stateRank': '2', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '33', '247positionRank': '3', '247stateRank': '2'}, {'school': 'alabama', 'year': '2010', 'playerName': 'C.J. Mosley', 'highSchool': 'Theodore', 'city': 'Theodore', 'state': 'AL', 'position': 'ILB', 'height': 74.0, 'weight': '234', 'compRating': '0.9628', 'compStars': 4, 'nationalRank': '79', 'positionRank': '3', 'stateRank': '2', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '37', '247positionRank': '2', '247stateRank': '2'}, {'school': 'alabama', 'year': '2010', 'playerName': 'Alfy Hill', 'highSchool': 'West Brunswick', 'city': 'Shallotte', 'state': 'NC', 'position': 'SDE', 'height': 76.0, 'weight': '245', 'compRating': '0.9627', 'compStars': 4, 'nationalRank': '80', 'positionRank': '8', 'stateRank': '3'}, {'school': 'alabama', 'year': '2010', 'playerName': 'Adrian Hubbard', 'highSchool': 'Norcross', 'city': 'Norcross', 'state': 'GA', 'position': 'OLB', 'height': 78.0, 'weight': '237', 'compRating': '0.9576', 'compStars': 4, 'nationalRank': '89', 'positionRank': '7', 'stateRank': '10', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '27', '247positionRank': '3', '247stateRank': '3'}, {'school': 'alabama', 'year': '2010', 'playerName': 'DeAndrew White', 'highSchool': 'North Shore', 'city': 'Houston', 'state': 'TX', 'position': 'WR', 'height': 72.0, 'weight': '180', 'compRating': '0.9482', 'compStars': 4, 'nationalRank': '107', 'positionRank': '13', 'stateRank': '16', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '93', '247positionRank': '10', '247stateRank': '16'}, {'school': 'alabama', 'year': '2010', 'playerName': 'Jarrick Williams', 'highSchool': 'Blount', 'city': 'Eight Mile', 'state': 'AL', 'position': 'S', 'height': 73.0, 'weight': '210', 'compRating': '0.9382', 'compStars': 4, 'nationalRank': '130', 'positionRank': '12', 'stateRank': '3', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '143', '247positionRank': '14', '247stateRank': '4'}, {'school': 'alabama', 'year': '2010', 'playerName': 'Brian Vogler', 'highSchool': 'Brookstone', 'city': 'Columbus', 'state': 'GA', 'position': 'TE', 'height': 79.0, 'weight': '252', 'compRating': '0.9316', 'compStars': 4, 'nationalRank': '152', 'positionRank': '6', 'stateRank': '16', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '169', '247positionRank': '8', '247stateRank': '15'}, {'school': 'alabama', 'year': '2010', 'playerName': 'Arie Kouandjio', 'highSchool': 'DeMatha Catholic', 'city': 'Hyattsville', 'state': 'MD', 'position': 'OT', 'height': 77.0, 'weight': '335', 'compRating': '0.9224', 'compStars': 4, 'nationalRank': '182', 'positionRank': '19', 'stateRank': '3', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '53', '247positionRank': '7', '247stateRank': '1'}, {'school': 'alabama', 'year': '2010', 'playerName': 'DeQuan Menzie', 'highSchool': 'Copiah-Lincoln C.C.', 'city': 'Wesson', 'state': 'MS', 'position': 'CB', 'height': 71.0, 'weight': '190', 'compRating': '0.9111', 'compStars': 4, 'nationalRank': '9', 'positionRank': '1', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2010', 'playerName': 'Jalston Fowler', 'highSchool': 'Vigor', 'city': 'Mobile', 'state': 'AL', 'position': 'RB', 'height': 73.0, 'weight': '246', 'compRating': '0.9094', 'compStars': 4, 'nationalRank': '237', 'positionRank': '17', 'stateRank': '7', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '79', '247positionRank': '8', '247stateRank': '3'}, {'school': 'alabama', 'year': '2010', 'playerName': 'Nick Perry', 'highSchool': 'Prattville', 'city': 'Prattville', 'state': 'AL', 'position': 'S', 'height': 73.0, 'weight': '205', 'compRating': '0.9016', 'compStars': 4, 'nationalRank': '272', 'positionRank': '24', 'stateRank': '10', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2010', 'playerName': 'Blake Sims', 'highSchool': 'Gainesville', 'city': 'Gainesville', 'state': 'GA', 'position': 'ATH', 'height': 72.0, 'weight': '212', 'compRating': '0.8954', 'compStars': 4, 'nationalRank': '305', 'positionRank': '23', 'stateRank': '27', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '234', '247positionRank': '17', '247stateRank': '21'}, {'school': 'alabama', 'year': '2010', 'playerName': 'Chad Lindsay', 'highSchool': 'The Woodlands', 'city': 'The Woodlands', 'state': 'TX', 'position': 'OG', 'height': 74.0, 'weight': '287', 'compRating': '0.8845', 'compStars': 3, 'nationalRank': '383', 'positionRank': '18', 'stateRank': '61', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2010', 'playerName': 'Harrison Jones', 'highSchool': 'Evangelical Christian', 'city': 'Cordova', 'state': 'TN', 'position': 'TE', 'height': 76.0, 'weight': '248', 'compRating': '0.8718', 'compStars': 3, 'nationalRank': '544', 'positionRank': '21', 'stateRank': '7', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2010', 'playerName': 'Jay Williams', 'highSchool': 'Thomasville', 'city': 'Thomasville', 'state': 'AL', 'position': 'K', 'height': 75.0, 'weight': '221', 'compRating': '0.8661', 'compStars': 3, 'nationalRank': '638', 'positionRank': '1', 'stateRank': '21', '247Rating': ' 75 ', '247Stars': 2, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2010', 'playerName': 'Austin Shepherd', 'highSchool': 'North Gwinnett', 'city': 'Suwanee', 'state': 'GA', 'position': 'OT', 'height': 77.0, 'weight': '307', 'compRating': '0.8655', 'compStars': 3, 'nationalRank': '640', 'positionRank': '46', 'stateRank': '54', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2010', 'playerName': 'Brandon Ivory', 'highSchool': 'East', 'city': 'Memphis', 'state': 'TN', 'position': 'DT', 'height': 76.0, 'weight': '308', 'compRating': '0.8581', 'compStars': 3, 'nationalRank': '856', 'positionRank': '70', 'stateRank': '13', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2010', 'playerName': 'Brandon Lewis', 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'DT', 'height': 75.0, 'weight': '280', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '46', 'positionRank': '8', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2010', 'playerName': 'Deion Belue', 'highSchool': 'Deshler Sch', 'city': 'Tuscumbia', 'state': 'AL', 'position': 'CB', 'height': 72.0, 'weight': '170', 'compRating': '0.8435', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '103', 'stateRank': '40', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '7', '247positionRank': '1', '247stateRank': '3'}, {'school': 'alabama', 'year': '2010', 'playerName': 'Cade Foster', 'highSchool': 'Southlake Carroll', 'city': 'Southlake', 'state': 'TX', 'position': 'K', 'height': 73.0, 'weight': '216', 'compRating': '0.8153', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '22', 'stateRank': '271', '247Rating': ' 75 ', '247Stars': 2, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2010', 'playerName': 'Wilson Love', 'highSchool': 'Mt Brook Sch', 'city': 'Birmingham', 'state': 'AL', 'position': 'DT', 'height': 75.0, 'weight': '276', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '128', 'stateRank': '63', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2010', 'playerName': 'Cody Mandell', 'highSchool': 'Acadiana', 'city': 'Lafayette', 'state': 'LA', 'position': 'P', 'height': 76.0, 'weight': '202', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2010', 'playerName': 'Caleb Castille', 'highSchool': 'Briarwood Christian', 'city': 'Birmingham', 'state': 'AL', 'position': 'CB', 'height': 71.0, 'weight': '163', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2010', 'playerName': 'Keiwone Malone', 'highSchool': 'Mitchell', 'city': 'Memphis', 'state': 'TN', 'position': 'WR', 'height': 71.0, 'weight': '165', 'compRating': '0.9289', 'compStars': 4, 'nationalRank': '159', 'positionRank': '20', 'stateRank': '3', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '216', '247positionRank': '25', '247stateRank': '5'}, {'school': 'kentucky', 'year': '2018', 'playerName': 'Marquan McCall', 'highSchool': 'Oak Park', 'city': 'Oak Park', 'state': 'MI', 'position': 'OG', 'height': 76.0, 'weight': '320', 'compRating': '0.9225', 'compStars': 4, 'nationalRank': '194', 'positionRank': '6', 'stateRank': '3', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '196', '247positionRank': '7', '247stateRank': '5'}, {'school': 'kentucky', 'year': '2018', 'playerName': 'Darian Kinnard', 'highSchool': 'St Ignatius', 'city': 'Cleveland', 'state': 'OH', 'position': 'OT', 'height': 79.0, 'weight': '336', 'compRating': '0.8981', 'compStars': 4, 'nationalRank': '314', 'positionRank': '22', 'stateRank': '11', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '178', '247positionRank': '15', '247stateRank': '6'}, {'school': 'kentucky', 'year': '2018', 'playerName': 'Chris Oats', 'highSchool': 'Winton Woods', 'city': 'Cincinnati', 'state': 'OH', 'position': 'OLB', 'height': 76.0, 'weight': '215', 'compRating': '0.8964', 'compStars': 4, 'nationalRank': '325', 'positionRank': '22', 'stateRank': '12', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '246', '247positionRank': '20', '247stateRank': '8'}, {'school': 'kentucky', 'year': '2018', 'playerName': 'Stanley Garner', 'highSchool': 'Dillard', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'CB', 'height': 75.0, 'weight': '180', 'compRating': '0.8816', 'compStars': 3, 'nationalRank': '467', 'positionRank': '46', 'stateRank': '78', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '56', '247stateRank': '83'}, {'school': 'kentucky', 'year': '2018', 'playerName': 'DeAndre Square', 'highSchool': 'Cass Technical', 'city': 'Detroit', 'state': 'MI', 'position': 'S', 'height': 73.0, 'weight': '200', 'compRating': '0.8755', 'compStars': 3, 'nationalRank': '544', 'positionRank': '37', 'stateRank': '10', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '39', '247stateRank': '9'}, {'school': 'kentucky', 'year': '2018', 'playerName': 'Terry Wilson', 'highSchool': 'Garden City C.C.', 'city': 'Garden City', 'state': 'KS', 'position': 'DUAL', 'height': 75.0, 'weight': '195', 'compRating': '0.8752', 'compStars': 3, 'nationalRank': '40', 'positionRank': '2', 'stateRank': '7', '247Rating': ' 87 ', '247Stars': 3, '247nationalRank': '37', '247positionRank': '2', '247stateRank': '6'}, {'school': 'kentucky', 'year': '2018', 'playerName': 'Brenden Bates', 'highSchool': 'Archbishop Moeller', 'city': 'Cincinnati', 'state': 'OH', 'position': 'TE', 'height': 77.0, 'weight': '230', 'compRating': '0.8730', 'compStars': 3, 'nationalRank': '588', 'positionRank': '25', 'stateRank': '24', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '33', '247stateRank': '30'}, {'school': 'kentucky', 'year': '2018', 'playerName': 'Quintin Wilson', 'highSchool': 'Turpin', 'city': 'Cincinnati', 'state': 'OH', 'position': 'OC', 'height': 75.0, 'weight': '290', 'compRating': '0.8709', 'compStars': 3, 'nationalRank': '634', 'positionRank': '12', 'stateRank': '28', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '13', '247stateRank': '35'}, {'school': 'kentucky', 'year': '2018', 'playerName': 'Marvin Alexander', 'highSchool': 'Chaminade-Madonna Prep', 'city': 'Hollywood', 'state': 'FL', 'position': 'WR', 'height': 75.0, 'weight': '175', 'compRating': '0.8675', 'compStars': 3, 'nationalRank': '681', 'positionRank': '109', 'stateRank': '105', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '148', '247stateRank': '157'}, {'school': 'kentucky', 'year': '2018', 'playerName': 'Keaton Upshaw', 'highSchool': 'Lima Senior', 'city': 'Lima', 'state': 'OH', 'position': 'TE', 'height': 79.0, 'weight': '225', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '699', 'positionRank': '34', 'stateRank': '30', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '32', '247stateRank': '29'}, {'school': 'kentucky', 'year': '2018', 'playerName': 'Allen Dailey', 'highSchool': 'Pinson Valley', 'city': 'Pinson', 'state': 'AL', 'position': 'WR', 'height': 75.0, 'weight': '196', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '702', 'positionRank': '110', 'stateRank': '22', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '126', '247stateRank': '29'}, {'school': 'kentucky', 'year': '2018', 'playerName': 'Kavosiey Smoke', 'highSchool': 'Wetumpka', 'city': 'Wetumpka', 'state': 'AL', 'position': 'ATH', 'height': 72.0, 'weight': '215', 'compRating': '0.8659', 'compStars': 3, 'nationalRank': '711', 'positionRank': '55', 'stateRank': '23', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '56', '247stateRank': '19'}, {'school': 'kentucky', 'year': '2018', 'playerName': 'Davoan Hawkins', 'highSchool': 'Chaminade-Madonna Prep', 'city': 'Hollywood', 'state': 'FL', 'position': 'SDE', 'height': 76.0, 'weight': '270', 'compRating': '0.8614', 'compStars': 3, 'nationalRank': '783', 'positionRank': '37', 'stateRank': '117', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '28', '247stateRank': '100'}, {'school': 'kentucky', 'year': '2018', 'playerName': 'Nick Lewis', 'highSchool': 'The Bolles School', 'city': 'Jacksonville', 'state': 'FL', 'position': 'OT', 'height': 81.0, 'weight': '348', 'compRating': '0.8593', 'compStars': 3, 'nationalRank': '841', 'positionRank': '70', 'stateRank': '122', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '57', '247stateRank': '104'}, {'school': 'kentucky', 'year': '2018', 'playerName': 'Jamari Brown', 'highSchool': 'Blanche Ely', 'city': 'Pompano Beach', 'state': 'FL', 'position': 'CB', 'height': 75.0, 'weight': '180', 'compRating': '0.8593', 'compStars': 3, 'nationalRank': '845', 'positionRank': '74', 'stateRank': '123', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '80', '247stateRank': '116'}, {'school': 'kentucky', 'year': '2018', 'playerName': 'Akeem Hayes', 'highSchool': 'Chaminade-Madonna Prep', 'city': 'Hollywood', 'state': 'FL', 'position': 'ATH', 'height': 70.0, 'weight': '175', 'compRating': '0.8534', 'compStars': 3, 'nationalRank': '980', 'positionRank': '82', 'stateRank': '143', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '113', '247stateRank': '243'}, {'school': 'kentucky', 'year': '2018', 'playerName': 'Jerquavion Mahone', 'highSchool': 'Manchester', 'city': 'Manchester', 'state': 'GA', 'position': 'DT', 'height': 75.0, 'weight': '299', 'compRating': '0.8530', 'compStars': 3, 'nationalRank': '998', 'positionRank': '69', 'stateRank': '93', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '74', '247stateRank': '115'}, {'school': 'kentucky', 'year': '2018', 'playerName': 'Bryce Oliver', 'highSchool': 'Dillard', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'WR', 'height': 75.0, 'weight': '205', 'compRating': '0.8493', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '161', 'stateRank': '159', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '190', '247stateRank': '188'}, {'school': 'kentucky', 'year': '2018', 'playerName': 'Chris Rodriguez', 'highSchool': 'Ola', 'city': 'McDonough', 'state': 'GA', 'position': 'RB', 'height': 71.5, 'weight': '200', 'compRating': '0.8468', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '64', 'stateRank': '114', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '58', '247stateRank': '100'}, {'school': 'kentucky', 'year': '2018', 'playerName': 'Kenneth Horsey', 'highSchool': 'Seminole', 'city': 'Sanford', 'state': 'FL', 'position': 'OG', 'height': 75.5, 'weight': '326', 'compRating': '0.8418', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '53', 'stateRank': '202', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '61', '247stateRank': '227'}, {'school': 'kentucky', 'year': '2018', 'playerName': 'Ashtan Pierre', 'highSchool': 'Deerfield Beach', 'city': 'Deerfield Beach', 'state': 'FL', 'position': 'ATH', 'height': 74.0, 'weight': '191', 'compRating': '0.8397', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '100', 'stateRank': '218', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '107', '247stateRank': '237'}, {'school': 'kentucky', 'year': '2018', 'playerName': 'Domonique Williams', 'highSchool': 'Highland C.C.', 'city': 'Highland', 'state': 'KS', 'position': 'CB', 'height': 70.0, 'weight': '190', 'compRating': '0.8349', 'compStars': 3, 'nationalRank': '139', 'positionRank': '20', 'stateRank': '25', '247Rating': ' 79 ', '247Stars': 2, '247nationalRank': '226', '247positionRank': '30', '247stateRank': '38'}, {'school': 'kentucky', 'year': '2018', 'playerName': 'Chance Poore', 'highSchool': 'Westside', 'city': 'Anderson', 'state': 'SC', 'position': 'K', 'height': 75.0, 'weight': '200', 'compRating': '0.8087', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '13', 'stateRank': '41', '247Rating': ' 75 ', '247Stars': 2, '247positionRank': '17', '247stateRank': '67'}, {'school': 'kentucky', 'year': '2018', 'playerName': 'Max Duffy', 'highSchool': 'ProKick Australia', 'city': 'Australia', 'state': 'AUST', 'position': 'P', 'height': 73.0, 'weight': '200', 'compRating': '0.7997', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '8', 'stateRank': '4', '247Rating': ' 75 ', '247Stars': 2, '247positionRank': '10', '247stateRank': '5'}, {'school': 'kentucky', 'year': '2013', 'playerName': 'Jason Hatcher', 'highSchool': 'Trinity', 'city': 'Louisville', 'state': 'KY', 'position': 'WDE', 'height': 74.5, 'weight': '240', 'compRating': '0.9252', 'compStars': 4, 'nationalRank': '178', 'positionRank': '6', 'stateRank': '3', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '16', '247stateRank': '5'}, {'school': 'kentucky', 'year': '2013', 'playerName': 'Marcus McWilson', 'highSchool': 'Cardinal Mooney', 'city': 'Youngstown', 'state': 'OH', 'position': 'ATH', 'height': 72.0, 'weight': '200', 'compRating': '0.8999', 'compStars': 4, 'nationalRank': '283', 'positionRank': '11', 'stateRank': '17', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '18', '247stateRank': '18'}, {'school': 'kentucky', 'year': '2013', 'playerName': "Za'Darius Smith", 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'WDE', 'height': 78.0, 'weight': '250', 'compRating': '0.8949', 'compStars': 4, 'nationalRank': '17', 'positionRank': '3', 'stateRank': '8', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '14', '247positionRank': '2', '247stateRank': '4'}, {'school': 'kentucky', 'year': '2013', 'playerName': 'Ryan Timmons', 'highSchool': 'Franklin County', 'city': 'Frankfort', 'state': 'KY', 'position': 'RB', 'height': 71.0, 'weight': '180', 'compRating': '0.8709', 'compStars': 3, 'nationalRank': '470', 'positionRank': '29', 'stateRank': '6', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '24', '247stateRank': '4'}, {'school': 'kentucky', 'year': '2013', 'playerName': 'Javess Blue', 'highSchool': 'Butler C.C.', 'city': 'El Dorado', 'state': 'KS', 'position': 'WR', 'height': 73.0, 'weight': '190', 'compRating': '0.8663', 'compStars': 3, 'nationalRank': '48', 'positionRank': '11', 'stateRank': '10', '247Rating': ' 87 ', '247Stars': 3, '247nationalRank': '65', '247positionRank': '12', '247stateRank': '11'}, {'school': 'kentucky', 'year': '2013', 'playerName': 'Nate Willis', 'highSchool': 'Arizona Western College', 'city': 'Yuma', 'state': 'AZ', 'position': 'CB', 'height': 72.0, 'weight': '180', 'compRating': '0.8635', 'compStars': 3, 'nationalRank': '55', 'positionRank': '3', 'stateRank': '7'}, {'school': 'kentucky', 'year': '2013', 'playerName': 'Kyle Meadows', 'highSchool': 'Lakota West', 'city': 'West Chester', 'state': 'OH', 'position': 'OT', 'height': 77.0, 'weight': '280', 'compRating': '0.8630', 'compStars': 3, 'nationalRank': '568', 'positionRank': '45', 'stateRank': '31', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '64', '247stateRank': '39'}, {'school': 'kentucky', 'year': '2013', 'playerName': 'Jojo Kemp', 'highSchool': 'Deland', 'city': 'Deland', 'state': 'FL', 'position': 'APB', 'height': 70.0, 'weight': '190', 'compRating': '0.8606', 'compStars': 3, 'nationalRank': '617', 'positionRank': '17', 'stateRank': '90', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '25', '247stateRank': '111'}, {'school': 'kentucky', 'year': '2013', 'playerName': 'Khalid Thomas', 'highSchool': 'Amos P. Godby', 'city': 'Tallahassee', 'state': 'FL', 'position': 'APB', 'height': 69.0, 'weight': '170', 'compRating': '0.8605', 'compStars': 3, 'nationalRank': '618', 'positionRank': '18', 'stateRank': '91', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '29', '247stateRank': '135'}, {'school': 'kentucky', 'year': '2013', 'playerName': 'Jacob Hyde', 'highSchool': 'Clay County', 'city': 'Manchester', 'state': 'KY', 'position': 'DT', 'height': 75.0, 'weight': '315', 'compRating': '0.8544', 'compStars': 3, 'nationalRank': '727', 'positionRank': '47', 'stateRank': '7', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '53', '247stateRank': '7'}, {'school': 'kentucky', 'year': '2013', 'playerName': 'Jaleel Hytchye', 'highSchool': 'LaSalle', 'city': 'Cincinnati', 'state': 'OH', 'position': 'CB', 'height': 71.0, 'weight': '170', 'compRating': '0.8525', 'compStars': 3, 'nationalRank': '766', 'positionRank': '60', 'stateRank': '43', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '79', '247stateRank': '49'}, {'school': 'kentucky', 'year': '2013', 'playerName': 'Alex Montgomery', 'highSchool': 'Cypress Bay', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'WR', 'height': 74.0, 'weight': '190', 'compRating': '0.8478', 'compStars': 3, 'nationalRank': '850', 'positionRank': '114', 'stateRank': '123', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '138', '247stateRank': '140'}, {'school': 'kentucky', 'year': '2013', 'playerName': 'Jeff Badet', 'highSchool': 'Freedom', 'city': 'Orlando', 'state': 'FL', 'position': 'WR', 'height': 71.0, 'weight': '160', 'compRating': '0.8432', 'compStars': 3, 'nationalRank': '928', 'positionRank': '127', 'stateRank': '134', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '112', '247stateRank': '121'}, {'school': 'kentucky', 'year': '2013', 'playerName': 'Ramsey Meyers', 'highSchool': 'Ridgeview', 'city': 'Orange Park', 'state': 'FL', 'position': 'OG', 'height': 76.0, 'weight': '296', 'compRating': '0.8350', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '64', 'stateRank': '159', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '60', '247stateRank': '176'}, {'school': 'kentucky', 'year': '2013', 'playerName': 'Blake McClain', 'highSchool': 'Winter Park', 'city': 'Winter Park', 'state': 'FL', 'position': 'S', 'height': 72.0, 'weight': '185', 'compRating': '0.8346', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '79', 'stateRank': '161', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '116', '247stateRank': '229'}, {'school': 'kentucky', 'year': '2013', 'playerName': 'Austin MacGinnis', 'highSchool': 'Prattville', 'city': 'Prattville', 'state': 'AL', 'position': 'K', 'height': 71.0, 'weight': '175', 'compRating': '0.8189', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '8', 'stateRank': '43', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '3', '247stateRank': '50'}, {'school': 'kentucky', 'year': '2013', 'playerName': 'Regie Meant', 'highSchool': 'Ida S. Baker', 'city': 'Cape Coral', 'state': 'FL', 'position': 'WDE', 'height': 77.0, 'weight': '265', 'compRating': '0.8179', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '66', 'stateRank': '205', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '78', '247stateRank': '239'}, {'school': 'kentucky', 'year': '2013', 'playerName': 'Nick Haynes', 'highSchool': 'Niceville', 'city': 'Niceville', 'state': 'FL', 'position': 'OG', 'height': 76.0, 'weight': '285', 'compRating': '0.8086', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '94', 'stateRank': '228', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '87', '247stateRank': '214'}, {'school': 'kentucky', 'year': '2013', 'playerName': 'Reese Phillips', 'highSchool': 'Signal Mountain', 'city': 'Signal Mountain', 'state': 'TN', 'position': 'PRO', 'height': 75.0, 'weight': '215', 'compRating': '0.7990', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '77', 'stateRank': '36', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '64', '247stateRank': '34'}, {'school': 'kentucky', 'year': '2013', 'playerName': 'Steven Borden', 'highSchool': 'Kilgore J.C.', 'city': 'Kilgore', 'state': 'TX', 'position': 'TE', 'height': 75.0, 'weight': '241', 'compRating': '0.7783', 'compStars': 2, 'nationalRank': '324', 'positionRank': '16', 'stateRank': '27', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '12', '247stateRank': '22'}, {'school': 'kentucky', 'year': '2013', 'playerName': 'Melvin Lewis', 'highSchool': 'Fullerton College', 'city': 'Fullerton', 'state': 'CA', 'position': 'DT', 'height': 76.0, 'weight': '320', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2013', 'playerName': 'Tanner Fink', 'highSchool': 'North Oldham', 'city': 'Goshen', 'state': 'KY', 'position': 'TE', 'height': 74.0, 'weight': '233', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2013', 'playerName': 'Alvonte Bell', 'highSchool': 'Everglades', 'city': 'Hollywood', 'state': 'FL', 'position': 'SDE', 'height': 78.0, 'weight': '239', 'compRating': '0.8797', 'compStars': 3, 'nationalRank': '383', 'positionRank': '23', 'stateRank': '55', '247Rating': ' 81 ', '247Stars': 3, '247nationalRank': '166', '247positionRank': '14', '247stateRank': '43'}, {'school': 'kentucky', 'year': '2013', 'playerName': 'Justin Day', 'highSchool': 'South Aiken', 'city': 'Aiken', 'state': 'SC', 'position': 'OT', 'height': 80.0, 'weight': '290', 'compRating': '0.8005', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '131', 'stateRank': '29'}, {'school': 'arkansas', 'year': '2018', 'playerName': 'Bumper Pool', 'highSchool': 'Lovejoy', 'city': 'Lucas', 'state': 'TX', 'position': 'ILB', 'height': 74.5, 'weight': '213', 'compRating': '0.8947', 'compStars': 4, 'nationalRank': '339', 'positionRank': '18', 'stateRank': '44', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '243', '247positionRank': '13', '247stateRank': '29'}, {'school': 'arkansas', 'year': '2018', 'playerName': 'Connor Noland', 'highSchool': 'Greenwood', 'city': 'Greenwood', 'state': 'AR', 'position': 'PRO', 'height': 75.0, 'weight': '205', 'compRating': '0.8946', 'compStars': 4, 'nationalRank': '341', 'positionRank': '14', 'stateRank': '2', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '13', '247stateRank': '3'}, {'school': 'arkansas', 'year': '2018', 'playerName': 'Myles Mason', 'highSchool': 'Hewitt-Trussville', 'city': 'Trussville', 'state': 'AL', 'position': 'S', 'height': 74.0, 'weight': '205', 'compRating': '0.8851', 'compStars': 3, 'nationalRank': '430', 'positionRank': '29', 'stateRank': '13', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '29', '247stateRank': '13'}, {'school': 'arkansas', 'year': '2018', 'playerName': 'Dorian Gerald', 'highSchool': 'College of the Canyons', 'city': 'Valencia', 'state': 'CA', 'position': 'SDE', 'height': 75.0, 'weight': '260', 'compRating': '0.8840', 'compStars': 3, 'nationalRank': '27', 'positionRank': '1', 'stateRank': '5', '247Rating': ' 89 ', '247Stars': 3, '247nationalRank': '18', '247positionRank': '1', '247stateRank': '2'}, {'school': 'arkansas', 'year': '2018', 'playerName': 'Billy Ferrell', 'highSchool': 'Fordyce', 'city': 'Fordyce', 'state': 'AR', 'position': 'DT', 'height': 75.0, 'weight': '331', 'compRating': '0.8768', 'compStars': 3, 'nationalRank': '523', 'positionRank': '37', 'stateRank': '5'}, {'school': 'arkansas', 'year': '2018', 'playerName': 'Mike Woods', 'highSchool': 'Magnolia', 'city': 'Magnolia', 'state': 'TX', 'position': 'WR', 'height': 73.0, 'weight': '188', 'compRating': '0.8756', 'compStars': 3, 'nationalRank': '540', 'positionRank': '90', 'stateRank': '77', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '70', '247stateRank': '61'}, {'school': 'arkansas', 'year': '2018', 'playerName': 'Ladarrius Bishop', 'highSchool': 'Ashdown', 'city': 'Ashdown', 'state': 'AR', 'position': 'CB', 'height': 72.0, 'weight': '189', 'compRating': '0.8741', 'compStars': 3, 'nationalRank': '578', 'positionRank': '53', 'stateRank': '6', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '74', '247stateRank': '6'}, {'school': 'arkansas', 'year': '2018', 'playerName': 'Joseph Foucha', 'highSchool': 'McDonogh 35', 'city': 'New Orleans', 'state': 'LA', 'position': 'S', 'height': 70.5, 'weight': '194', 'compRating': '0.8721', 'compStars': 3, 'nationalRank': '604', 'positionRank': '41', 'stateRank': '25', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '43', '247stateRank': '21'}, {'school': 'arkansas', 'year': '2018', 'playerName': 'Courtre Alexander', 'highSchool': 'Owasso', 'city': 'Owasso', 'state': 'OK', 'position': 'WDE', 'height': 76.0, 'weight': '260', 'compRating': '0.8635', 'compStars': 3, 'nationalRank': '748', 'positionRank': '45', 'stateRank': '13', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '41', '247stateRank': '15'}, {'school': 'arkansas', 'year': '2018', 'playerName': 'Nick Fulwider', 'highSchool': 'Sandy Creek', 'city': 'Tyrone', 'state': 'GA', 'position': 'SDE', 'height': 79.0, 'weight': '249', 'compRating': '0.8635', 'compStars': 3, 'nationalRank': '756', 'positionRank': '33', 'stateRank': '76', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '40', '247stateRank': '98'}, {'school': 'arkansas', 'year': '2018', 'playerName': 'Noah Gatlin', 'highSchool': 'Jonesboro', 'city': 'Jonesboro', 'state': 'AR', 'position': 'OT', 'height': 79.0, 'weight': '300', 'compRating': '0.8614', 'compStars': 3, 'nationalRank': '792', 'positionRank': '62', 'stateRank': '8', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '66', '247stateRank': '7'}, {'school': 'arkansas', 'year': '2018', 'playerName': 'Isaiah Nichols', 'highSchool': 'Springdale', 'city': 'Springdale', 'state': 'AR', 'position': 'SDE', 'height': 76.0, 'weight': '275', 'compRating': '0.8601', 'compStars': 3, 'nationalRank': '816', 'positionRank': '39', 'stateRank': '9', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '44', '247stateRank': '8'}, {'school': 'arkansas', 'year': '2018', 'playerName': 'Rakeem Boyd', 'highSchool': 'Independence C.C.', 'city': 'Independence', 'state': 'KS', 'position': 'RB', 'height': 71.0, 'weight': '200', 'compRating': '0.8467', 'compStars': 3, 'nationalRank': '109', 'positionRank': '6', 'stateRank': '17', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '72', '247positionRank': '4', '247stateRank': '13'}, {'school': 'arkansas', 'year': '2018', 'playerName': 'Ryan Winkel', 'highSchool': 'Christian Brothers', 'city': 'Memphis', 'state': 'TN', 'position': 'OT', 'height': 78.0, 'weight': '286', 'compRating': '0.8453', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '113', 'stateRank': '37', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '96', '247stateRank': '32'}, {'school': 'arkansas', 'year': '2018', 'playerName': 'Jimmie Stoudemire', 'highSchool': 'Riverside C.C.', 'city': 'Riverside', 'state': 'CA', 'position': 'WR', 'height': 76.0, 'weight': '200', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '147', 'positionRank': '13', 'stateRank': '33', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2018', 'playerName': 'Andrew Parker', 'highSchool': 'Sophie B. Wright', 'city': 'New Orleans', 'state': 'LA', 'position': 'ILB', 'height': 74.0, 'weight': '225', 'compRating': '0.8287', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '62', 'stateRank': '64', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '32', '247stateRank': '34'}, {'school': 'arkansas', 'year': '2018', 'playerName': 'John Stephen Jones', 'highSchool': 'Highland Park', 'city': 'Dallas', 'state': 'TX', 'position': 'PRO', 'height': 70.0, 'weight': '175', 'compRating': '0.8255', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '54', 'stateRank': '243', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '42', '247stateRank': '154'}, {'school': 'arkansas', 'year': '2018', 'playerName': 'Silas Robinson', 'highSchool': 'Yoakum', 'city': 'Yoakum', 'state': 'TX', 'position': 'OT', 'height': 76.0, 'weight': '300', 'compRating': '0.8175', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '160', 'stateRank': '267', '247Rating': ' 77 ', '247Stars': 2, '247positionRank': '221', '247stateRank': '374'}, {'school': 'missouri', 'year': '2017', 'playerName': 'Akial Byers', 'highSchool': 'Fayetteville', 'city': 'Fayetteville', 'state': 'AR', 'position': 'DT', 'height': 76.0, 'weight': '275', 'compRating': '0.8998', 'compStars': 4, 'nationalRank': '275', 'positionRank': '16', 'stateRank': '2', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '42', '247stateRank': '6'}, {'school': 'missouri', 'year': '2017', 'playerName': 'Case Cook', 'highSchool': 'Carrollton', 'city': 'Carrollton', 'state': 'GA', 'position': 'OC', 'height': 77.0, 'weight': '290', 'compRating': '0.8640', 'compStars': 3, 'nationalRank': '568', 'positionRank': '5', 'stateRank': '56', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '7', '247stateRank': '58'}, {'school': 'missouri', 'year': '2017', 'playerName': 'Aubrey Miller', 'highSchool': 'Whitehaven', 'city': 'Memphis', 'state': 'TN', 'position': 'OLB', 'height': 71.5, 'weight': '207', 'compRating': '0.8630', 'compStars': 3, 'nationalRank': '578', 'positionRank': '37', 'stateRank': '20', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '217', '247positionRank': '9', '247stateRank': '12'}, {'school': 'missouri', 'year': '2017', 'playerName': 'Hyrin White', 'highSchool': 'DeSoto', 'city': 'DeSoto', 'state': 'TX', 'position': 'OT', 'height': 79.0, 'weight': '292', 'compRating': '0.8624', 'compStars': 3, 'nationalRank': '588', 'positionRank': '59', 'stateRank': '78', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '57', '247stateRank': '80'}, {'school': 'missouri', 'year': '2017', 'playerName': 'Walter Palmore', 'highSchool': 'Eastern Arizona College', 'city': 'Thatcher', 'state': 'AZ', 'position': 'DT', 'height': 76.0, 'weight': '295', 'compRating': '0.8576', 'compStars': 3, 'nationalRank': '58', 'positionRank': '7', 'stateRank': '9', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '65', '247positionRank': '8', '247stateRank': '10'}, {'school': 'missouri', 'year': '2017', 'playerName': 'Terry Petry', 'highSchool': 'Ridge Point', 'city': 'Missouri City', 'state': 'TX', 'position': 'CB', 'height': 71.0, 'weight': '180', 'compRating': '0.8574', 'compStars': 3, 'nationalRank': '675', 'positionRank': '66', 'stateRank': '96'}, {'school': 'missouri', 'year': '2017', 'playerName': 'Pompey Coleman', 'highSchool': 'Ben Davis', 'city': 'Indianapolis', 'state': 'IN', 'position': 'OT', 'height': 77.0, 'weight': '280', 'compRating': '0.8569', 'compStars': 3, 'nationalRank': '686', 'positionRank': '68', 'stateRank': '7', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '59', '247stateRank': '7'}, {'school': 'missouri', 'year': '2017', 'playerName': 'Nate Anderson', 'highSchool': 'New Mexico Military Institute', 'city': 'Roswell', 'state': 'NM', 'position': 'SDE', 'height': 75.0, 'weight': '255', 'compRating': '0.8525', 'compStars': 3, 'nationalRank': '72', 'positionRank': '8', 'stateRank': '1', '247Rating': ' 84 ', '247Stars': 3, '247nationalRank': '105', '247positionRank': '9', '247stateRank': '2'}, {'school': 'missouri', 'year': '2017', 'playerName': 'Taylor Powell', 'highSchool': 'Fayetteville', 'city': 'Fayetteville', 'state': 'AR', 'position': 'PRO', 'height': 74.0, 'weight': '202', 'compRating': '0.8519', 'compStars': 3, 'nationalRank': '785', 'positionRank': '34', 'stateRank': '6', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '33', '247stateRank': '8'}, {'school': 'missouri', 'year': '2017', 'playerName': 'Logan Christopherson', 'highSchool': 'Lemont', 'city': 'Lemont', 'state': 'IL', 'position': 'TE', 'height': 78.5, 'weight': '216', 'compRating': '0.8513', 'compStars': 3, 'nationalRank': '809', 'positionRank': '37', 'stateRank': '13', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '21', '247stateRank': '11'}, {'school': 'missouri', 'year': '2017', 'playerName': 'Yasir Durant', 'highSchool': 'Arizona Western College', 'city': 'Yuma', 'state': 'AZ', 'position': 'OG', 'height': 78.0, 'weight': '330', 'compRating': '0.8489', 'compStars': 3, 'nationalRank': '87', 'positionRank': '3', 'stateRank': '12', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '57', '247positionRank': '3', '247stateRank': '9'}, {'school': 'missouri', 'year': '2017', 'playerName': 'Adam Sparks', 'highSchool': 'Dutchtown', 'city': 'Geismar', 'state': 'LA', 'position': 'CB', 'height': 72.0, 'weight': '170', 'compRating': '0.8482', 'compStars': 3, 'nationalRank': '886', 'positionRank': '92', 'stateRank': '35', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '65', '247stateRank': '29'}, {'school': 'missouri', 'year': '2017', 'playerName': 'Jamal Brooks', 'highSchool': 'Bessemer City', 'city': 'Bessemer', 'state': 'AL', 'position': 'ILB', 'height': 73.0, 'weight': '227', 'compRating': '0.8447', 'compStars': 3, 'nationalRank': '988', 'positionRank': '42', 'stateRank': '43', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '35', '247stateRank': '45'}, {'school': 'missouri', 'year': '2017', 'playerName': 'Rashad Brandon', 'highSchool': 'ASA College', 'city': 'None', 'state': 'None', 'position': 'DT', 'height': 74.0, 'weight': '315', 'compRating': '0.8445', 'compStars': 3, 'nationalRank': '103', 'positionRank': '15', 'stateRank': '2', '247Rating': ' 83 ', '247Stars': 3, '247nationalRank': '128', '247positionRank': '17', '247stateRank': '2'}, {'school': 'missouri', 'year': '2017', 'playerName': 'Larry Rountree III', 'highSchool': 'Millbrook', 'city': 'Raleigh', 'state': 'NC', 'position': 'RB', 'height': 71.0, 'weight': '204', 'compRating': '0.8435', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '56', 'stateRank': '32', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '37', '247stateRank': '25'}, {'school': 'missouri', 'year': '2017', 'playerName': 'Jordan Ulmer', 'highSchool': 'Bellevue', 'city': 'Bellevue', 'state': 'MI', 'position': 'S', 'height': 73.0, 'weight': '185', 'compRating': '0.8376', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '89', 'stateRank': '25'}, {'school': 'missouri', 'year': '2017', 'playerName': 'Chris Turner', 'highSchool': 'Hammond', 'city': 'Hammond', 'state': 'LA', 'position': 'WDE', 'height': 76.0, 'weight': '225', 'compRating': '0.8360', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '68', 'stateRank': '46', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '59', '247stateRank': '47'}, {'school': 'missouri', 'year': '2017', 'playerName': 'Larry Borom', 'highSchool': 'Brother Rice', 'city': 'Bloomfield Hills', 'state': 'MI', 'position': 'OG', 'height': 77.0, 'weight': '338', 'compRating': '0.8345', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '62', 'stateRank': '26', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '52', '247stateRank': '25'}, {'school': 'missouri', 'year': '2017', 'playerName': 'Isaiah Miller', 'highSchool': 'Baldwin', 'city': 'Jacksonville', 'state': 'FL', 'position': 'APB', 'height': 71.0, 'weight': '191', 'compRating': '0.8275', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '29', 'stateRank': '210', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '17', '247stateRank': '95'}, {'school': 'missouri', 'year': '2017', 'playerName': "O'Shae Clark", 'highSchool': 'Cy Springs', 'city': 'Cypress', 'state': 'TX', 'position': 'APB', 'height': 68.0, 'weight': '150', 'compRating': '0.8247', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '31', 'stateRank': '211', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '29', '247stateRank': '178'}, {'school': 'missouri', 'year': '2017', 'playerName': 'Joshuah Bledsoe', 'highSchool': 'Dekaney', 'city': 'Houston', 'state': 'TX', 'position': 'S', 'height': 71.5, 'weight': '191', 'compRating': '0.8243', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '113', 'stateRank': '212', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '60', '247stateRank': '92'}, {'school': 'missouri', 'year': '2017', 'playerName': 'Kobie Whiteside', 'highSchool': 'Alief Taylor', 'city': 'Houston', 'state': 'TX', 'position': 'DT', 'height': 73.0, 'weight': '304', 'compRating': '0.8139', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '101', 'stateRank': '242', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '94', '247stateRank': '184'}, {'school': 'missouri', 'year': '2017', 'playerName': 'Tyree Gillespie', 'highSchool': 'Vanguard', 'city': 'Ocala', 'state': 'FL', 'position': 'S', 'height': 71.5, 'weight': '202', 'compRating': '0.8087', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '144', 'stateRank': '280', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '127', '247stateRank': '249'}, {'school': 'missouri', 'year': '2017', 'playerName': 'Caleb Sampson', 'highSchool': 'Northlake Christian School', 'city': 'Covington', 'state': 'LA', 'position': 'DT', 'height': 75.0, 'weight': '260', 'compRating': '0.8058', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '117', 'stateRank': '67', '247Rating': ' 82 ', '247Stars': 3, '247nationalRank': '203', '247positionRank': '21', '247stateRank': '38'}, {'school': 'missouri', 'year': '2017', 'playerName': 'Daron Davis', 'highSchool': 'Hogan Preparatory Academy', 'city': 'Kansas City', 'state': 'MO', 'position': 'ATH', 'height': 74.0, 'weight': '190', 'compRating': '0.8875', 'compStars': 3, 'nationalRank': '355', 'positionRank': '20', 'stateRank': '4'}, {'school': 'kentucky', 'year': '2005', 'playerName': 'EJ Adams', 'highSchool': 'North Gwinnett', 'city': 'Suwanee', 'state': 'GA', 'position': 'CB', 'height': 72.0, 'weight': '185', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2005', 'playerName': 'James Alexander', 'highSchool': 'Douglass', 'city': 'Atlanta', 'state': 'GA', 'position': 'OT', 'height': 78.0, 'weight': '250', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2005', 'playerName': 'Ben Bates', 'highSchool': 'Jonathan Alder', 'city': 'Plain City', 'state': 'OH', 'position': 'ILB', 'height': 74.0, 'weight': '230', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2005', 'playerName': 'Ross Bogue', 'highSchool': 'North Gwinnett', 'city': 'Suwanee', 'state': 'GA', 'position': 'OT', 'height': 78.0, 'weight': '245', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2005', 'playerName': 'Zipp Duncan', 'highSchool': 'Elizabethtown', 'city': 'Elizabethtown', 'state': 'KY', 'position': 'TE', 'height': 77.0, 'weight': '235', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2005', 'playerName': 'Demoreo Ford', 'highSchool': 'LaGrange', 'city': 'Lagrange', 'state': 'GA', 'position': 'WR', 'height': 70.0, 'weight': '170', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2005', 'playerName': 'Jorge Gonzalez', 'highSchool': 'Tampa Catholic', 'city': 'Tampa', 'state': 'FL', 'position': 'OG', 'height': 75.0, 'weight': '300', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2005', 'playerName': 'Zach Hennis', 'highSchool': 'Jonathan Alder', 'city': 'Plain City', 'state': 'OH', 'position': 'OT', 'height': 81.0, 'weight': '310', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2005', 'playerName': 'Jamaal Jackson', 'highSchool': 'Crisp County', 'city': 'Cordele', 'state': 'GA', 'position': 'WDE', 'height': 76.0, 'weight': '220', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2005', 'playerName': 'Jeremy Jarmon', 'highSchool': 'Houston', 'city': 'Germantown', 'state': 'TN', 'position': 'WDE', 'height': 75.0, 'weight': '250', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2005', 'playerName': 'Ventrell Jenkins', 'highSchool': 'Columbia', 'city': 'Columbia', 'state': 'SC', 'position': 'WDE', 'height': 75.0, 'weight': '265', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2005', 'playerName': 'Christian Johnson', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'OG', 'height': 76.0, 'weight': '305', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2005', 'playerName': 'David Jones', 'highSchool': 'Belfry', 'city': 'Belfry', 'state': 'KY', 'position': 'CB', 'height': 71.0, 'weight': '170', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2005', 'playerName': 'Braxton Kelley', 'highSchool': 'LaGrange', 'city': 'Lagrange', 'state': 'GA', 'position': 'WDE', 'height': 74.0, 'weight': '225', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2005', 'playerName': 'Sefo Mailau', 'highSchool': 'East', 'city': 'Salt Lake City', 'state': 'UT', 'position': 'OT', 'height': 77.0, 'weight': '300', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2005', 'playerName': 'Tim Masthay', 'highSchool': 'Murray', 'city': 'Murray', 'state': 'KY', 'position': 'P', 'height': 75.0, 'weight': '185', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2005', 'playerName': 'Sam Maxwell', 'highSchool': 'Hart County', 'city': 'Hartwell', 'state': 'GA', 'position': 'OLB', 'height': 75.0, 'weight': '210', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA'}, {'school': 'kentucky', 'year': '2005', 'playerName': 'Jordan Nevels', 'highSchool': 'Highlands', 'city': 'Fort Thomas', 'state': 'KY', 'position': 'CB', 'height': 71.0, 'weight': '180', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2005', 'playerName': 'Curtis Pulley', 'highSchool': 'Hopkinsville', 'city': 'Hopkinsville', 'state': 'KY', 'position': 'DUAL', 'height': 75.0, 'weight': '185', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2005', 'playerName': 'Mike Schwindel', 'highSchool': 'Hancock County', 'city': 'Lewisport', 'state': 'KY', 'position': 'S', 'height': 76.0, 'weight': '205', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2005', 'playerName': 'Alfonso Smith', 'highSchool': 'Waggener Traditional', 'city': 'Louisville', 'state': 'KY', 'position': 'RB', 'height': 73.0, 'weight': '190', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2005', 'playerName': 'Fatu Turituri', 'highSchool': 'Los Angeles Harbor College', 'city': 'Wilmington', 'state': 'CA', 'position': 'OG', 'height': 75.0, 'weight': '290', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2005', 'playerName': 'Kenny Ray Turner', 'highSchool': 'Trigg County', 'city': 'Cadiz', 'state': 'KY', 'position': 'OT', 'height': 79.0, 'weight': '270', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2005', 'playerName': 'Kalavi Blanchard', 'highSchool': 'Fresno City College', 'city': 'Fresno', 'state': 'CA', 'position': 'OT', 'height': 77.0, 'weight': '315', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2005', 'playerName': 'Corey Goodson', 'highSchool': 'Western Mst Magnet', 'city': 'Louisville', 'state': 'KY', 'position': 'RB', 'height': 74.0, 'weight': '200', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2005', 'playerName': 'Michael Cross', 'highSchool': 'Marion-Franklin', 'city': 'Columbus', 'state': 'OH', 'position': 'OT', 'height': 76.0, 'weight': '310', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2014', 'playerName': 'Teez Tabor', 'highSchool': 'Friendship Academy', 'city': 'Washington', 'state': 'DC', 'position': 'CB', 'height': 73.0, 'weight': '182', 'compRating': '0.9925', 'compStars': 5, 'nationalRank': '15', 'positionRank': '4', 'stateRank': '1', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '19', '247positionRank': '3', '247stateRank': '1'}, {'school': 'florida', 'year': '2014', 'playerName': 'Gerald Willis', 'highSchool': 'Edna Karr', 'city': 'New Orleans', 'state': 'LA', 'position': 'DT', 'height': 75.0, 'weight': '275', 'compRating': '0.9831', 'compStars': 4, 'nationalRank': '35', 'positionRank': '2', 'stateRank': '5', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '26', '247positionRank': '4', '247stateRank': '4'}, {'school': 'florida', 'year': '2014', 'playerName': 'Will Grier', 'highSchool': 'Davidson Day', 'city': 'Davidson', 'state': 'NC', 'position': 'PRO', 'height': 74.0, 'weight': '190', 'compRating': '0.9765', 'compStars': 4, 'nationalRank': '48', 'positionRank': '2', 'stateRank': '2', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '66', '247positionRank': '4', '247stateRank': '1'}, {'school': 'florida', 'year': '2014', 'playerName': 'Thomas Holley', 'highSchool': 'Abraham Lincoln', 'city': 'Brooklyn', 'state': 'NY', 'position': 'DT', 'height': 76.0, 'weight': '285', 'compRating': '0.9636', 'compStars': 4, 'nationalRank': '80', 'positionRank': '5', 'stateRank': '2', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '18', '247positionRank': '2', '247stateRank': '1'}, {'school': 'florida', 'year': '2014', 'playerName': 'Treon Harris', 'highSchool': 'Booker T. Washington', 'city': 'Miami', 'state': 'FL', 'position': 'ATH', 'height': 71.0, 'weight': '180', 'compRating': '0.9444', 'compStars': 4, 'nationalRank': '122', 'positionRank': '9', 'stateRank': '17', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '226', '247positionRank': '16', '247stateRank': '28'}, {'school': 'florida', 'year': '2014', 'playerName': 'David Sharpe', 'highSchool': 'Duncan U. Fletcher', 'city': 'Neptune Beach', 'state': 'FL', 'position': 'OT', 'height': 78.0, 'weight': '318', 'compRating': '0.9437', 'compStars': 4, 'nationalRank': '124', 'positionRank': '14', 'stateRank': '18', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '117', '247positionRank': '10', '247stateRank': '17'}, {'school': 'florida', 'year': '2014', 'playerName': 'JC Jackson', 'highSchool': 'Immokalee', 'city': 'Immokalee', 'state': 'FL', 'position': 'WR', 'height': 70.0, 'weight': '180', 'compRating': '0.9395', 'compStars': 4, 'nationalRank': '136', 'positionRank': '20', 'stateRank': '21', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '165', '247positionRank': '27', '247stateRank': '24'}, {'school': 'florida', 'year': '2014', 'playerName': 'Khairi Clark', 'highSchool': 'Chaminade-Madonna Prep', 'city': 'Hollywood', 'state': 'FL', 'position': 'DT', 'height': 74.0, 'weight': '325', 'compRating': '0.9261', 'compStars': 4, 'nationalRank': '180', 'positionRank': '16', 'stateRank': '27', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '231', '247positionRank': '17', '247stateRank': '30'}, {'school': 'florida', 'year': '2014', 'playerName': 'Duke Dawson', 'highSchool': 'Dixie County', 'city': 'Cross City', 'state': 'FL', 'position': 'CB', 'height': 71.0, 'weight': '197', 'compRating': '0.9225', 'compStars': 4, 'nationalRank': '193', 'positionRank': '19', 'stateRank': '30', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '38', '247stateRank': '59'}, {'school': 'florida', 'year': '2014', 'playerName': 'Nolan Kelleher', 'highSchool': 'Wando', 'city': 'Mount Pleasant', 'state': 'SC', 'position': 'OG', 'height': 78.0, 'weight': '305', 'compRating': '0.8843', 'compStars': 3, 'nationalRank': '368', 'positionRank': '20', 'stateRank': '11', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '48', '247stateRank': '26'}, {'school': 'florida', 'year': '2014', 'playerName': 'Quincy Wilson', 'highSchool': 'University School', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'S', 'height': 73.0, 'weight': '196', 'compRating': '0.8843', 'compStars': 3, 'nationalRank': '369', 'positionRank': '28', 'stateRank': '49', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '63', '247stateRank': '105'}, {'school': 'florida', 'year': '2014', 'playerName': 'Brandon Powell', 'highSchool': 'Deerfield Beach', 'city': 'Deerfield Beach', 'state': 'FL', 'position': 'ATH', 'height': 68.0, 'weight': '167', 'compRating': '0.8811', 'compStars': 3, 'nationalRank': '393', 'positionRank': '34', 'stateRank': '51', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '61', '247stateRank': '110'}, {'school': 'florida', 'year': '2014', 'playerName': 'Moral Stephens', 'highSchool': 'Taylor County', 'city': 'Perry', 'state': 'FL', 'position': 'TE', 'height': 76.0, 'weight': '200', 'compRating': '0.8791', 'compStars': 3, 'nationalRank': '409', 'positionRank': '16', 'stateRank': '56', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '53', '247stateRank': '159'}, {'school': 'florida', 'year': '2014', 'playerName': 'C.J. Worton', 'highSchool': 'South Dade', 'city': 'Homestead', 'state': 'FL', 'position': 'WR', 'height': 73.0, 'weight': '175', 'compRating': '0.8756', 'compStars': 3, 'nationalRank': '431', 'positionRank': '57', 'stateRank': '61'}, {'school': 'florida', 'year': '2014', 'playerName': 'Ryan Sousa', 'highSchool': 'Lake Nona', 'city': 'Orlando', 'state': 'FL', 'position': 'WR', 'height': 72.0, 'weight': '177', 'compRating': '0.8687', 'compStars': 3, 'nationalRank': '502', 'positionRank': '67', 'stateRank': '74', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '96', '247stateRank': '101'}, {'school': 'florida', 'year': '2014', 'playerName': 'Taven Bryan', 'highSchool': 'Natrona County', 'city': 'Casper', 'state': 'WY', 'position': 'OT', 'height': 77.0, 'weight': '250', 'compRating': '0.8656', 'compStars': 3, 'nationalRank': '533', 'positionRank': '45', 'stateRank': '1', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '54', '247stateRank': '1'}, {'school': 'florida', 'year': '2014', 'playerName': 'DeAndre Goolsby', 'highSchool': 'Derby', 'city': 'Derby', 'state': 'KS', 'position': 'TE', 'height': 76.0, 'weight': '230', 'compRating': '0.8655', 'compStars': 3, 'nationalRank': '536', 'positionRank': '20', 'stateRank': '5', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '23', '247stateRank': '6'}, {'school': 'florida', 'year': '2014', 'playerName': 'Andrew Mike', 'highSchool': 'Sabino', 'city': 'Tucson', 'state': 'AZ', 'position': 'OT', 'height': 79.0, 'weight': '270', 'compRating': '0.8600', 'compStars': 3, 'nationalRank': '604', 'positionRank': '56', 'stateRank': '14', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '61', '247stateRank': '15'}, {'school': 'florida', 'year': '2014', 'playerName': 'Travaris Dorsey', 'highSchool': 'Raines', 'city': 'Jacksonville', 'state': 'FL', 'position': 'OG', 'height': 74.0, 'weight': '315', 'compRating': '0.8600', 'compStars': 3, 'nationalRank': '607', 'positionRank': '33', 'stateRank': '86', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '41', '247stateRank': '90'}, {'school': 'florida', 'year': '2014', 'playerName': 'Justus Reed', 'highSchool': 'Clearwater Central Catholic', 'city': 'Clearwater', 'state': 'FL', 'position': 'SDE', 'height': 75.0, 'weight': '216', 'compRating': '0.8503', 'compStars': 3, 'nationalRank': '799', 'positionRank': '33', 'stateRank': '119', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '56', '247stateRank': '164'}, {'school': 'florida', 'year': '2014', 'playerName': 'Kavaris Harkless', 'highSchool': 'Trinity Christian Academy', 'city': 'Jacksonville', 'state': 'FL', 'position': 'OT', 'height': 77.0, 'weight': '273', 'compRating': '0.8490', 'compStars': 3, 'nationalRank': '826', 'positionRank': '74', 'stateRank': '122', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '116', '247stateRank': '175'}, {'school': 'florida', 'year': '2014', 'playerName': "C'yontai Lewis", 'highSchool': 'Kingwood Christian', 'city': 'Alabaster', 'state': 'AL', 'position': 'TE', 'height': 77.0, 'weight': '215', 'compRating': '0.8458', 'compStars': 3, 'nationalRank': '889', 'positionRank': '40', 'stateRank': '22', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '25', '247stateRank': '16'}, {'school': 'florida', 'year': '2014', 'playerName': 'Deiondre Porter', 'highSchool': 'Jefferson', 'city': 'Tampa', 'state': 'FL', 'position': 'ATH', 'height': 73.0, 'weight': '166', 'compRating': '0.8411', 'compStars': 3, 'nationalRank': '993', 'positionRank': '82', 'stateRank': '143', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '53', '247stateRank': '102'}, {'school': 'florida', 'year': '2014', 'playerName': 'Drew Sarvary', 'highSchool': 'Tyler J.C.', 'city': 'Tyler', 'state': 'TX', 'position': 'OT', 'height': 78.0, 'weight': '310', 'compRating': '0.8292', 'compStars': 3, 'nationalRank': '154', 'positionRank': '21', 'stateRank': '15', '247Rating': ' 80 ', '247Stars': 3, '247nationalRank': '193', '247positionRank': '25', '247stateRank': '15'}, {'school': 'georgia', 'year': '2007', 'playerName': 'Caleb King', 'highSchool': 'Greater Atlanta Christian School', 'city': 'Norcross', 'state': 'GA', 'position': 'RB', 'height': 71.0, 'weight': '217', 'compRating': '0.9816', 'compStars': 4, 'nationalRank': '34', 'positionRank': '4', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2007', 'playerName': 'Aron White', 'highSchool': 'Rock Bridge', 'city': 'Columbia', 'state': 'MO', 'position': 'TE', 'height': 76.0, 'weight': '213', 'compRating': '0.9713', 'compStars': 4, 'nationalRank': '63', 'positionRank': '3', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2007', 'playerName': 'Israel Troupe', 'highSchool': 'Tift County', 'city': 'Tifton', 'state': 'GA', 'position': 'WR', 'height': 72.0, 'weight': '200', 'compRating': '0.9568', 'compStars': 4, 'nationalRank': '86', 'positionRank': '13', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2007', 'playerName': 'Logan Gray', 'highSchool': 'Rock Bridge', 'city': 'Columbia', 'state': 'MO', 'position': 'DUAL', 'height': 74.0, 'weight': '199', 'compRating': '0.9435', 'compStars': 4, 'nationalRank': '107', 'positionRank': '4', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2007', 'playerName': 'Trinton Sturdivant', 'highSchool': 'Anson', 'city': 'Wadesboro', 'state': 'NC', 'position': 'OT', 'height': 77.0, 'weight': '280', 'compRating': '0.9343', 'compStars': 4, 'nationalRank': '127', 'positionRank': '9', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2007', 'playerName': 'Jarius Wynn', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'DT', 'height': 77.0, 'weight': '275', 'compRating': '0.9222', 'compStars': 4, 'nationalRank': '11', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2007', 'playerName': 'Justin Anderson', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'DT', 'height': 77.0, 'weight': '326', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '6', 'positionRank': '1', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2007', 'playerName': 'Rennie Curran', 'highSchool': 'Brookwood', 'city': 'Snellville', 'state': 'GA', 'position': 'ILB', 'height': 71.0, 'weight': '202', 'compRating': '0.8906', 'compStars': 4, 'nationalRank': '233', 'positionRank': '7', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2007', 'playerName': 'Chris Little', 'highSchool': 'Twiggs County', 'city': 'Jeffersonville', 'state': 'GA', 'position': 'OG', 'height': 77.0, 'weight': '342', 'compRating': '0.8906', 'compStars': 4, 'nationalRank': '235', 'positionRank': '13', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2007', 'playerName': 'Justin Houston', 'highSchool': 'Statesboro', 'city': 'Statesboro', 'state': 'GA', 'position': 'OLB', 'height': 75.0, 'weight': '228', 'compRating': '0.8875', 'compStars': 3, 'nationalRank': '249', 'positionRank': '14', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2007', 'playerName': 'Neland Ball', 'highSchool': 'Jackson', 'city': 'Jackson', 'state': 'GA', 'position': 'WDE', 'height': 78.0, 'weight': '216', 'compRating': '0.8875', 'compStars': 3, 'nationalRank': '251', 'positionRank': '8', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2007', 'playerName': 'Vance Cuff', 'highSchool': 'Colquitt County', 'city': 'Moultrie', 'state': 'GA', 'position': 'CB', 'height': 71.0, 'weight': '177', 'compRating': '0.8795', 'compStars': 3, 'nationalRank': '304', 'positionRank': '22', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2007', 'playerName': 'Tanner Strickland', 'highSchool': 'Berrien', 'city': 'Nashville', 'state': 'GA', 'position': 'OG', 'height': 76.0, 'weight': '315', 'compRating': '0.8733', 'compStars': 3, 'nationalRank': '374', 'positionRank': '24', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2007', 'playerName': 'Walter Hill', 'highSchool': 'East Hall', 'city': 'Gainesville', 'state': 'GA', 'position': 'WR', 'height': 77.0, 'weight': '200', 'compRating': '0.8670', 'compStars': 3, 'nationalRank': '429', 'positionRank': '56', 'stateRank': '27', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2007', 'playerName': 'Corvey Irvin', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'SDE', 'height': 76.0, 'weight': '275', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '50', 'positionRank': '6', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2007', 'playerName': 'John Knox', 'highSchool': 'Statesboro', 'city': 'Statesboro', 'state': 'GA', 'position': 'S', 'height': 75.0, 'weight': '191', 'compRating': '0.8622', 'compStars': 3, 'nationalRank': '461', 'positionRank': '31', 'stateRank': '29', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2007', 'playerName': 'DeMarcus Dobbs', 'highSchool': 'Calvary Day School', 'city': 'Savannah', 'state': 'GA', 'position': 'SDE', 'height': 74.0, 'weight': '285', 'compRating': '0.8581', 'compStars': 3, 'nationalRank': '502', 'positionRank': '33', 'stateRank': '31', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2007', 'playerName': 'Bruce Figgins', 'highSchool': 'Shaw', 'city': 'Columbus', 'state': 'GA', 'position': 'TE', 'height': 76.0, 'weight': '238', 'compRating': '0.8579', 'compStars': 3, 'nationalRank': '503', 'positionRank': '25', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2007', 'playerName': 'Charles White', 'highSchool': 'Blythewood', 'city': 'Blythewood', 'state': 'SC', 'position': 'OLB', 'height': 73.0, 'weight': '209', 'compRating': '0.8573', 'compStars': 3, 'nationalRank': '515', 'positionRank': '31', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2007', 'playerName': 'Clint Boling', 'highSchool': 'Chattahoochee', 'city': 'Alpharetta', 'state': 'GA', 'position': 'OT', 'height': 77.0, 'weight': '315', 'compRating': '0.8545', 'compStars': 3, 'nationalRank': '568', 'positionRank': '51', 'stateRank': '35', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2007', 'playerName': 'Vince Vance', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'OT', 'height': 79.0, 'weight': '300', 'compRating': '0.8444', 'compStars': 3, 'nationalRank': '68', 'positionRank': '8', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2007', 'playerName': 'Scott Haverkamp', 'highSchool': 'Butler C.C.', 'city': 'El Dorado', 'state': 'KS', 'position': 'OG', 'height': 77.0, 'weight': '298', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '123', 'positionRank': '3', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2007', 'playerName': 'Drew Butler', 'highSchool': 'Peachtree Ridge', 'city': 'Suwanee', 'state': 'GA', 'position': 'P', 'height': 73.0, 'weight': '196', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '1', 'stateRank': '104', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2007', 'playerName': 'Ben Harden', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'OG', 'height': 76.0, 'weight': '290', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2006', 'playerName': 'Greg Smith', 'highSchool': 'Northeast Mississippi C.C.', 'city': 'Booneville', 'state': 'MS', 'position': 'DT', 'height': 73.0, 'weight': '315', 'compRating': '0.9333', 'compStars': 4, 'nationalRank': '3', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2006', 'playerName': 'Craig Stevens', 'highSchool': 'Lincoln', 'city': 'Tallahassee', 'state': 'FL', 'position': 'OLB', 'height': 75.0, 'weight': '210', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '197', 'positionRank': '12', 'stateRank': '34', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2006', 'playerName': 'Bryant Miller', 'highSchool': 'Miami Central', 'city': 'Miami', 'state': 'FL', 'position': 'WDE', 'height': 75.0, 'weight': '233', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '204', 'positionRank': '4', 'stateRank': '36', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2006', 'playerName': 'Chris Slaughter', 'highSchool': 'Peach County', 'city': 'Fort Valley', 'state': 'GA', 'position': 'WR', 'height': 75.0, 'weight': '170', 'compRating': '0.8892', 'compStars': 3, 'nationalRank': '236', 'positionRank': '29', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2006', 'playerName': 'Michael Goggans', 'highSchool': 'Benjamin Russell Sch', 'city': 'Alexander City', 'state': 'AL', 'position': 'TE', 'height': 74.0, 'weight': '247', 'compRating': '0.8875', 'compStars': 3, 'nationalRank': '245', 'positionRank': '14', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2006', 'playerName': 'Lee Tilley', 'highSchool': 'Franklin Heights', 'city': 'Columbus', 'state': 'OH', 'position': 'OT', 'height': 77.0, 'weight': '317', 'compRating': '0.8844', 'compStars': 3, 'nationalRank': '256', 'positionRank': '21', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2006', 'playerName': 'Raven Gray', 'highSchool': 'Enterprise', 'city': 'Enterprise', 'state': 'AL', 'position': 'SDE', 'height': 75.0, 'weight': '235', 'compRating': '0.8813', 'compStars': 3, 'nationalRank': '283', 'positionRank': '19', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2006', 'playerName': 'Mike Berry', 'highSchool': 'Brentwood Academy', 'city': 'Brentwood', 'state': 'TN', 'position': 'OG', 'height': 76.0, 'weight': '296', 'compRating': '0.8781', 'compStars': 3, 'nationalRank': '306', 'positionRank': '15', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2006', 'playerName': 'Jermarcus Ricks', 'highSchool': 'Colbert Co Sch', 'city': 'Leighton', 'state': 'AL', 'position': 'DT', 'height': 75.0, 'weight': '288', 'compRating': '0.8750', 'compStars': 3, 'nationalRank': '345', 'positionRank': '31', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2006', 'playerName': 'Zaccheus Etheridge', 'highSchool': 'Charles Henderson Sch', 'city': 'Troy', 'state': 'AL', 'position': 'CB', 'height': 72.0, 'weight': '174', 'compRating': '0.8701', 'compStars': 3, 'nationalRank': '379', 'positionRank': '30', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2006', 'playerName': 'Alex Rose', 'highSchool': 'First Coast', 'city': 'Jacksonville', 'state': 'FL', 'position': 'WR', 'height': 74.0, 'weight': '192', 'compRating': '0.8639', 'compStars': 3, 'nationalRank': '419', 'positionRank': '53', 'stateRank': '55', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2006', 'playerName': 'Zaccheus Etheridge', 'highSchool': 'Charles Henderson Sch', 'city': 'Troy', 'state': 'AL', 'position': 'CB', 'height': 72.0, 'weight': '174', 'compRating': '0.8579', 'compStars': 3, 'nationalRank': '470', 'positionRank': '37', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2006', 'playerName': 'Steven Ensminger', 'highSchool': 'West Monroe', 'city': 'West Monroe', 'state': 'LA', 'position': 'PRO', 'height': 74.0, 'weight': '182', 'compRating': '0.8493', 'compStars': 3, 'nationalRank': '597', 'positionRank': '23', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2006', 'playerName': 'Hendrick Leverette', 'highSchool': 'Oak Grove', 'city': 'Hattiesburg', 'state': 'MS', 'position': 'OLB', 'height': 72.0, 'weight': '205', 'compRating': '0.8454', 'compStars': 3, 'nationalRank': '626', 'positionRank': '38', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2006', 'playerName': 'Darrell Roseman', 'highSchool': 'Dunedin Academy Prep School', 'city': 'Dunedin', 'state': 'FL', 'position': 'SDE', 'height': 75.0, 'weight': '235', 'compRating': '0.8448', 'compStars': 3, 'nationalRank': '640', 'positionRank': '40', 'stateRank': '78', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2006', 'playerName': 'Bo Harris', 'highSchool': 'Heritage', 'city': 'Conyers', 'state': 'GA', 'position': 'ATH', 'height': 74.0, 'weight': '213', 'compRating': '0.8417', 'compStars': 3, 'nationalRank': '679', 'positionRank': '58', 'stateRank': '35', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2006', 'playerName': 'Byron Isom', 'highSchool': 'Lovejoy', 'city': 'Hampton', 'state': 'GA', 'position': 'DT', 'height': 74.0, 'weight': '253', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '851', 'positionRank': '66', 'stateRank': '47', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2006', 'playerName': 'Zach Clayton', 'highSchool': 'Auburn', 'city': 'Auburn', 'state': 'AL', 'position': 'DT', 'height': 75.0, 'weight': '250', 'compRating': '0.7972', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '86', 'stateRank': '50', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2006', 'playerName': 'Ryan Shoemaker', 'highSchool': 'Westminster School At Oak Mountain', 'city': 'Birmingham', 'state': 'AL', 'position': 'K', 'height': 72.0, 'weight': '190', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '20', 'stateRank': '59', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2006', 'playerName': 'Terrell Zachery', 'highSchool': 'Wadley', 'city': 'Wadley', 'state': 'AL', 'position': 'WR', 'height': 73.0, 'weight': '210', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2006', 'playerName': 'Mike Blanc', 'highSchool': 'Deerfield Beach', 'city': 'Deerfield Beach', 'state': 'FL', 'position': 'DT', 'height': 76.0, 'weight': '297', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2006', 'playerName': 'Ben Tate', 'highSchool': 'Snow Hill', 'city': 'Snow Hill', 'state': 'MD', 'position': 'RB', 'height': 71.0, 'weight': '205', 'compRating': '0.9793', 'compStars': 4, 'nationalRank': '44', 'positionRank': '12', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2006', 'playerName': 'Tim Hawthorne', 'highSchool': 'Homewood', 'city': 'Birmingham', 'state': 'AL', 'position': 'WR', 'height': 74.0, 'weight': '200', 'compRating': '0.9466', 'compStars': 4, 'nationalRank': '97', 'positionRank': '11', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2006', 'playerName': 'Bart Eddins', 'highSchool': 'Trinity Presbyterian School', 'city': 'Montgomery', 'state': 'AL', 'position': 'DT', 'height': 76.0, 'weight': '265', 'compRating': '0.9452', 'compStars': 4, 'nationalRank': '100', 'positionRank': '6', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2006', 'playerName': 'Neil Caudle', 'highSchool': 'Spain Park', 'city': 'Birmingham', 'state': 'AL', 'position': 'PRO', 'height': 74.0, 'weight': '192', 'compRating': '0.9299', 'compStars': 4, 'nationalRank': '139', 'positionRank': '7', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2006', 'playerName': 'Mario Fannin', 'highSchool': 'Lovejoy', 'city': 'Hampton', 'state': 'GA', 'position': 'ATH', 'height': 71.0, 'weight': '210', 'compRating': '0.9264', 'compStars': 4, 'nationalRank': '154', 'positionRank': '6', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2005', 'playerName': 'R.J. Jackson', 'highSchool': 'Westside', 'city': 'Houston', 'state': 'TX', 'position': 'ATH', 'height': 72.0, 'weight': '197', 'compRating': '0.9369', 'compStars': 4, 'nationalRank': '108', 'positionRank': '2', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2005', 'playerName': 'Darry Beckwith', 'highSchool': 'Parkview Baptist School', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'OLB', 'height': 73.0, 'weight': '224', 'compRating': '0.9222', 'compStars': 4, 'nationalRank': '121', 'positionRank': '14', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2005', 'playerName': 'Steven Korte', 'highSchool': 'Fontainebleau', 'city': 'Mandeville', 'state': 'LA', 'position': 'FB', 'height': 74.0, 'weight': '230', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '176', 'positionRank': '2', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2005', 'playerName': 'Antonio Robinson', 'highSchool': 'Winnfield Senior', 'city': 'Winnfield', 'state': 'LA', 'position': 'RB', 'height': 72.0, 'weight': '195', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '192', 'positionRank': '19', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2005', 'playerName': 'Chris Hawkins', 'highSchool': 'Walker', 'city': 'Walker', 'state': 'LA', 'position': 'S', 'height': 73.0, 'weight': '180', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '209', 'positionRank': '13', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2005', 'playerName': 'Brandon LaFell', 'highSchool': 'Lamar', 'city': 'Houston', 'state': 'TX', 'position': 'WR', 'height': 75.0, 'weight': '180', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '240', 'positionRank': '28', 'stateRank': '30', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2005', 'playerName': 'Ciron Black', 'highSchool': 'Tyler Lee', 'city': 'Tyler', 'state': 'TX', 'position': 'OG', 'height': 77.0, 'weight': '315', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '291', 'positionRank': '19', 'stateRank': '41', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2005', 'playerName': 'Kyle Anderson', 'highSchool': 'The Woodlands', 'city': 'The Woodlands', 'state': 'TX', 'position': 'TE', 'height': 78.0, 'weight': '260', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '335', 'positionRank': '19', 'stateRank': '49', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2005', 'playerName': 'Lyle Hitt', 'highSchool': 'Parkview Baptist School', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'DT', 'height': 74.0, 'weight': '272', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '438', 'positionRank': '32', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2005', 'playerName': 'Trindon Holliday', 'highSchool': 'Zachary', 'city': 'Zachary', 'state': 'LA', 'position': 'ATH', 'height': 66.0, 'weight': '168', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '605', 'positionRank': '47', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2005', 'playerName': 'Ryan Perrilloux', 'highSchool': 'East St. John', 'city': 'Reserve', 'state': 'LA', 'position': 'DUAL', 'height': 74.0, 'weight': '205', 'compRating': '0.9968', 'compStars': 5, 'nationalRank': '6', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2005', 'playerName': 'Ricky Jean-Francois', 'highSchool': 'Miami Carol City', 'city': 'Opa Locka', 'state': 'FL', 'position': 'SDE', 'height': 75.0, 'weight': '245', 'compRating': '0.9767', 'compStars': 4, 'nationalRank': '59', 'positionRank': '3', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2005', 'playerName': 'Al Jones', 'highSchool': 'St. Augustine', 'city': 'New Orleans', 'state': 'LA', 'position': 'WDE', 'height': 75.0, 'weight': '240', 'compRating': '0.9735', 'compStars': 4, 'nationalRank': '70', 'positionRank': '1', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2015', 'playerName': 'Marquavius Lewis', 'highSchool': 'Hutchinson C.C.', 'city': 'Hutchinson', 'state': 'KS', 'position': 'SDE', 'height': 76.0, 'weight': '271', 'compRating': '0.9587', 'compStars': 4, 'nationalRank': '3', 'positionRank': '1', 'stateRank': '2', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '3', '247positionRank': '1', '247stateRank': '2'}, {'school': 'south-carolina', 'year': '2015', 'playerName': 'Shameik Blackshear', 'highSchool': 'Bluffton', 'city': 'Bluffton', 'state': 'SC', 'position': 'WDE', 'height': 77.0, 'weight': '240', 'compRating': '0.9343', 'compStars': 4, 'nationalRank': '147', 'positionRank': '9', 'stateRank': '2', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '119', '247positionRank': '8', '247stateRank': '2'}, {'school': 'south-carolina', 'year': '2015', 'playerName': 'Jalen Christian', 'highSchool': 'Damascus', 'city': 'Damascus', 'state': 'MD', 'position': 'ATH', 'height': 70.0, 'weight': '165', 'compRating': '0.9205', 'compStars': 4, 'nationalRank': '190', 'positionRank': '11', 'stateRank': '3', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '105', '247positionRank': '7', '247stateRank': '1'}, {'school': 'south-carolina', 'year': '2015', 'playerName': 'Zack Bailey', 'highSchool': 'Summerville', 'city': 'Summerville', 'state': 'SC', 'position': 'OG', 'height': 77.0, 'weight': '315', 'compRating': '0.9082', 'compStars': 4, 'nationalRank': '243', 'positionRank': '17', 'stateRank': '4', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '247', '247positionRank': '12', '247stateRank': '4'}, {'school': 'south-carolina', 'year': '2015', 'playerName': 'Sherrod Pittman', 'highSchool': 'First Coast', 'city': 'Jacksonville', 'state': 'FL', 'position': 'OLB', 'height': 72.5, 'weight': '224', 'compRating': '0.8987', 'compStars': 4, 'nationalRank': '297', 'positionRank': '22', 'stateRank': '43', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '32', '247stateRank': '60'}, {'school': 'south-carolina', 'year': '2015', 'playerName': 'Dante Sawyer', 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'WDE', 'height': 74.5, 'weight': '262', 'compRating': '0.8959', 'compStars': 4, 'nationalRank': '16', 'positionRank': '2', 'stateRank': '6', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '6', '247positionRank': '1', '247stateRank': '3'}, {'school': 'south-carolina', 'year': '2015', 'playerName': 'Christian Pellage', 'highSchool': 'Nature Coast Tech', 'city': 'Brooksville', 'state': 'FL', 'position': 'OT', 'height': 79.0, 'weight': '282', 'compRating': '0.8863', 'compStars': 3, 'nationalRank': '364', 'positionRank': '37', 'stateRank': '54', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '51', '247stateRank': '61'}, {'school': 'south-carolina', 'year': '2015', 'playerName': 'A.J. Turner', 'highSchool': 'Centreville', 'city': 'Clifton', 'state': 'VA', 'position': 'RB', 'height': 71.0, 'weight': '180', 'compRating': '0.8841', 'compStars': 3, 'nationalRank': '375', 'positionRank': '32', 'stateRank': '14', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '34', '247stateRank': '17'}, {'school': 'south-carolina', 'year': '2015', 'playerName': 'Dexter Wideman', 'highSchool': 'Camden Military Academy', 'city': 'Camden', 'state': 'SC', 'position': 'SDE', 'height': 76.0, 'weight': '260', 'compRating': '0.8833', 'compStars': 3, 'nationalRank': '4', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '1', '247positionRank': '1', '247stateRank': '1'}, {'school': 'south-carolina', 'year': '2015', 'playerName': 'Lorenzo Nunez', 'highSchool': 'Harrison', 'city': 'Kennesaw', 'state': 'GA', 'position': 'DUAL', 'height': 74.5, 'weight': '190', 'compRating': '0.8761', 'compStars': 3, 'nationalRank': '439', 'positionRank': '15', 'stateRank': '39', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '15', '247stateRank': '39'}, {'school': 'south-carolina', 'year': '2015', 'playerName': 'Christian Owens', 'highSchool': 'Griffin', 'city': 'Griffin', 'state': 'GA', 'position': 'WR', 'height': 77.0, 'weight': '207', 'compRating': '0.8727', 'compStars': 3, 'nationalRank': '470', 'positionRank': '57', 'stateRank': '41', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '68', '247stateRank': '64'}, {'school': 'south-carolina', 'year': '2015', 'playerName': 'D.J. Neal', 'highSchool': 'Stephenson', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'WR', 'height': 76.0, 'weight': '200', 'compRating': '0.8727', 'compStars': 3, 'nationalRank': '473', 'positionRank': '59', 'stateRank': '43', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '85', '247stateRank': '77'}, {'school': 'south-carolina', 'year': '2015', 'playerName': 'Mon Denson', 'highSchool': 'LaGrange', 'city': 'Lagrange', 'state': 'GA', 'position': 'RB', 'height': 70.5, 'weight': '225', 'compRating': '0.8655', 'compStars': 3, 'nationalRank': '556', 'positionRank': '46', 'stateRank': '53', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '56', '247stateRank': '82'}, {'school': 'south-carolina', 'year': '2015', 'playerName': 'Toure Boyd', 'highSchool': 'Chaffey College', 'city': 'Rancho Cucamonga', 'state': 'CA', 'position': 'S', 'height': 73.0, 'weight': '195', 'compRating': '0.8644', 'compStars': 3, 'nationalRank': '54', 'positionRank': '4', 'stateRank': '12', '247Rating': ' 90 ', '247Stars': 4, '247nationalRank': '21', '247positionRank': '3', '247stateRank': '5'}, {'school': 'south-carolina', 'year': '2015', 'playerName': 'Daniel Fennell', 'highSchool': 'Grayson', 'city': 'Loganville', 'state': 'GA', 'position': 'ILB', 'height': 75.0, 'weight': '210', 'compRating': '0.8640', 'compStars': 3, 'nationalRank': '579', 'positionRank': '21', 'stateRank': '55', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '24', '247stateRank': '75'}, {'school': 'south-carolina', 'year': '2015', 'playerName': 'Boosie Whitlow', 'highSchool': 'Opelika', 'city': 'Opelika', 'state': 'AL', 'position': 'WDE', 'height': 75.0, 'weight': '221', 'compRating': '0.8615', 'compStars': 3, 'nationalRank': '618', 'positionRank': '29', 'stateRank': '23', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '38', '247stateRank': '29'}, {'school': 'south-carolina', 'year': '2015', 'playerName': 'Antoine Wilder', 'highSchool': 'Hapeville Charter', 'city': 'Atlanta', 'state': 'GA', 'position': 'S', 'height': 71.0, 'weight': '175', 'compRating': '0.8569', 'compStars': 3, 'nationalRank': '720', 'positionRank': '51', 'stateRank': '76', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '41', '247stateRank': '70'}, {'school': 'south-carolina', 'year': '2015', 'playerName': 'Blake Camper', 'highSchool': 'Frank W. Cox', 'city': 'Virginia Beach', 'state': 'VA', 'position': 'OT', 'height': 79.0, 'weight': '280', 'compRating': '0.8544', 'compStars': 3, 'nationalRank': '776', 'positionRank': '83', 'stateRank': '25', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '76', '247stateRank': '28'}, {'school': 'south-carolina', 'year': '2015', 'playerName': 'Ulric Jones', 'highSchool': 'Butler C.C.', 'city': 'El Dorado', 'state': 'KS', 'position': 'SDE', 'height': 78.5, 'weight': '283', 'compRating': '0.8485', 'compStars': 3, 'nationalRank': '92', 'positionRank': '8', 'stateRank': '17', '247Rating': ' 83 ', '247Stars': 3, '247nationalRank': '121', '247positionRank': '10', '247stateRank': '21'}, {'school': 'south-carolina', 'year': '2015', 'playerName': 'Rashad Fenton', 'highSchool': 'Miami Carol City', 'city': 'Opa Locka', 'state': 'FL', 'position': 'CB', 'height': 71.0, 'weight': '175', 'compRating': '0.8476', 'compStars': 3, 'nationalRank': '948', 'positionRank': '86', 'stateRank': '122', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '45', '247stateRank': '57'}, {'school': 'south-carolina', 'year': '2015', 'playerName': 'Trey Derouen', 'highSchool': 'Parkview', 'city': 'Lilburn', 'state': 'GA', 'position': 'OG', 'height': 75.5, 'weight': '325', 'compRating': '0.8432', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '67', 'stateRank': '104', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '53', '247stateRank': '91'}, {'school': 'south-carolina', 'year': '2015', 'playerName': 'Jalen Dread', 'highSchool': 'Foley', 'city': 'Foley', 'state': 'AL', 'position': 'ILB', 'height': 72.0, 'weight': '219', 'compRating': '0.8422', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '42', 'stateRank': '36', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '40', '247stateRank': '40'}, {'school': 'south-carolina', 'year': '2015', 'playerName': 'Ernest Hawkins', 'highSchool': 'Hartnell College', 'city': 'Salinas', 'state': 'CA', 'position': 'ILB', 'height': 74.0, 'weight': '225', 'compRating': '0.8420', 'compStars': 3, 'nationalRank': '100', 'positionRank': '4', 'stateRank': '30', '247Rating': ' 83 ', '247Stars': 3, '247nationalRank': '127', '247positionRank': '3', '247stateRank': '36'}, {'school': 'south-carolina', 'year': '2015', 'playerName': 'Kyle Markway', 'highSchool': 'St. John Vianney', 'city': 'Saint Louis', 'state': 'MO', 'position': 'TE', 'height': 76.0, 'weight': '240', 'compRating': '0.8412', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '37', 'stateRank': '15', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '47', '247stateRank': '18'}, {'school': 'south-carolina', 'year': '2015', 'playerName': 'Jerad Washington', 'highSchool': 'First Coast', 'city': 'Jacksonville', 'state': 'FL', 'position': 'WR', 'height': 69.0, 'weight': '165', 'compRating': '0.8412', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '136', 'stateRank': '151', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '187', '247stateRank': '212'}, {'school': 'south-carolina', 'year': '2015', 'playerName': 'Connor Redmond', 'highSchool': 'Archer', 'city': 'Lawrenceville', 'state': 'GA', 'position': 'TE', 'height': 76.0, 'weight': '225', 'compRating': '0.8347', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '48', 'stateRank': '130', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '64', '247stateRank': '160'}, {'school': 'south-carolina', 'year': '2015', 'playerName': 'Joseph Charlton', 'highSchool': 'A C Flora', 'city': 'Columbia', 'state': 'SC', 'position': 'P', 'height': 76.0, 'weight': '180', 'compRating': '0.8331', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '2', 'stateRank': '21', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '2', '247stateRank': '20'}, {'school': 'south-carolina', 'year': '2015', 'playerName': 'Jason Senn', 'highSchool': 'Beaufort', 'city': 'Ladys Island', 'state': 'SC', 'position': 'CB', 'height': 68.0, 'weight': '190', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2015', 'playerName': 'Tyler Ragsdale', 'highSchool': 'Wando', 'city': 'Mount Pleasant', 'state': 'SC', 'position': 'ILB', 'height': 72.0, 'weight': '200', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2015', 'playerName': 'Matthew Weigel', 'highSchool': 'Charlotte Christian', 'city': 'Charlotte', 'state': 'NC', 'position': 'TE', 'height': 76.0, 'weight': '210', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2015', 'playerName': 'Logan Crane', 'highSchool': 'Dartmouth', 'city': 'South Dartmouth', 'state': 'MA', 'position': 'LS', 'height': 75.0, 'weight': '245', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2015', 'playerName': 'Devin Dingle', 'highSchool': 'Cane Bay', 'city': 'Summerville', 'state': 'SC', 'position': 'WR', 'height': 70.0, 'weight': '170', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2015', 'playerName': 'Javon Charleston', 'highSchool': 'Warren', 'city': 'Warren', 'state': 'IL', 'position': 'WR', 'height': 72.0, 'weight': '180', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2015', 'playerName': 'Octavis Johnson', 'highSchool': 'Clinch County', 'city': 'Homerville', 'state': 'GA', 'position': 'ATH', 'height': 73.0, 'weight': '181', 'compRating': '0.8969', 'compStars': 4, 'nationalRank': '308', 'positionRank': '18', 'stateRank': '30'}, {'school': 'south-carolina', 'year': '2015', 'playerName': 'Devante Covington', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'WDE', 'height': 76.0, 'weight': '240', 'compRating': '0.8306', 'compStars': 3, 'nationalRank': '137', 'positionRank': '7', 'stateRank': '2'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'Patrick Patterson', 'highSchool': 'Noxubee County', 'city': 'Macon', 'state': 'MS', 'position': 'WR', 'height': 75.0, 'weight': '215', 'compRating': '0.9747', 'compStars': 4, 'nationalRank': '47', 'positionRank': '5', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'Craig Drummond', 'highSchool': 'Morgan Park', 'city': 'Chicago', 'state': 'IL', 'position': 'SDE', 'height': 77.0, 'weight': '260', 'compRating': '0.9605', 'compStars': 4, 'nationalRank': '85', 'positionRank': '4', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'Bobby Massie', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'OT', 'height': 80.0, 'weight': '335', 'compRating': '0.9333', 'compStars': 4, 'nationalRank': '1', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'Rodney Scott', 'highSchool': 'Dixie County', 'city': 'Cross City', 'state': 'FL', 'position': 'RB', 'height': 69.0, 'weight': '185', 'compRating': '0.9211', 'compStars': 4, 'nationalRank': '172', 'positionRank': '18', 'stateRank': '28', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'Zaccheus Mason', 'highSchool': 'C.P.A.', 'city': 'Nashville', 'state': 'TN', 'position': 'TE', 'height': 77.0, 'weight': '250', 'compRating': '0.9018', 'compStars': 4, 'nationalRank': '255', 'positionRank': '8', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'Raymond Cotton', 'highSchool': 'Meade Senior', 'city': 'Fort George G Meade', 'state': 'MD', 'position': 'DUAL', 'height': 76.0, 'weight': '216', 'compRating': '0.9006', 'compStars': 4, 'nationalRank': '261', 'positionRank': '11', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'Corey Gaines', 'highSchool': 'Amos P. Godby', 'city': 'Tallahassee', 'state': 'FL', 'position': 'DT', 'height': 72.0, 'weight': '274', 'compRating': '0.8868', 'compStars': 3, 'nationalRank': '360', 'positionRank': '33', 'stateRank': '58', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'D.T. Shackelford', 'highSchool': 'Austin', 'city': 'Decatur', 'state': 'AL', 'position': 'ILB', 'height': 73.0, 'weight': '220', 'compRating': '0.8844', 'compStars': 3, 'nationalRank': '373', 'positionRank': '19', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'Korvic Neat', 'highSchool': 'Hallandale', 'city': 'Hallandale', 'state': 'FL', 'position': 'WR', 'height': 69.0, 'weight': '175', 'compRating': '0.8795', 'compStars': 3, 'nationalRank': '430', 'positionRank': '54', 'stateRank': '62', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'Willie Ferrell', 'highSchool': 'Florida A&M University Developmental Research Scho', 'city': 'Tallahassee', 'state': 'FL', 'position': 'OLB', 'height': 73.0, 'weight': '220', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '452', 'positionRank': '34', 'stateRank': '64', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'Mike Marry', 'highSchool': 'Largo', 'city': 'Largo', 'state': 'FL', 'position': 'ILB', 'height': 75.0, 'weight': '205', 'compRating': '0.8733', 'compStars': 3, 'nationalRank': '505', 'positionRank': '28', 'stateRank': '71', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'Tim Simon', 'highSchool': 'Cordova', 'city': 'Cordova', 'state': 'AL', 'position': 'RB', 'height': 73.0, 'weight': '210', 'compRating': '0.8733', 'compStars': 3, 'nationalRank': '509', 'positionRank': '50', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'Gabriel Hunter', 'highSchool': 'Kingsbury', 'city': 'Memphis', 'state': 'TN', 'position': 'RB', 'height': 71.0, 'weight': '184', 'compRating': '0.8733', 'compStars': 3, 'nationalRank': '518', 'positionRank': '51', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'Montez Phillips', 'highSchool': 'Lafayette', 'city': 'Oxford', 'state': 'MS', 'position': 'WR', 'height': 75.0, 'weight': '190', 'compRating': '0.8701', 'compStars': 3, 'nationalRank': '550', 'positionRank': '72', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'Jamar Hornsby', 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'S', 'height': 75.0, 'weight': '200', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '41', 'positionRank': '5', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'Frank Crawford', 'highSchool': 'Gulliver Prep', 'city': 'Miami', 'state': 'FL', 'position': 'CB', 'height': 73.0, 'weight': '161', 'compRating': '0.8653', 'compStars': 3, 'nationalRank': '638', 'positionRank': '55', 'stateRank': '94', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'Joel Kight', 'highSchool': 'Martin Luther King Jr.', 'city': 'Lithonia', 'state': 'GA', 'position': 'ILB', 'height': 69.0, 'weight': '200', 'compRating': '0.8622', 'compStars': 3, 'nationalRank': '681', 'positionRank': '39', 'stateRank': '55', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'Artice Kellam', 'highSchool': 'Gulliver Prep', 'city': 'Miami', 'state': 'FL', 'position': 'S', 'height': 71.0, 'weight': '178', 'compRating': '0.8622', 'compStars': 3, 'nationalRank': '684', 'positionRank': '50', 'stateRank': '98', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'Demarcus Knight', 'highSchool': 'Morristown East', 'city': 'Morristown', 'state': 'TN', 'position': 'ILB', 'height': 74.0, 'weight': '230', 'compRating': '0.8590', 'compStars': 3, 'nationalRank': '740', 'positionRank': '42', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'Alex Williams', 'highSchool': 'Florida A&M University Developmental Research Scho', 'city': 'Tallahassee', 'state': 'FL', 'position': 'SDE', 'height': 76.0, 'weight': '199', 'compRating': '0.8573', 'compStars': 3, 'nationalRank': '776', 'positionRank': '37', 'stateRank': '110', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'Michael Brown', 'highSchool': 'Lexington', 'city': 'Lexington', 'state': 'TX', 'position': 'OG', 'height': 78.0, 'weight': '312', 'compRating': '0.8510', 'compStars': 3, 'nationalRank': '908', 'positionRank': '66', 'stateRank': '135', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'Charles Sawyer', 'highSchool': 'Coral Reef', 'city': 'Miami', 'state': 'FL', 'position': 'CB', 'height': 72.0, 'weight': '170', 'compRating': '0.8510', 'compStars': 3, 'nationalRank': '951', 'positionRank': '75', 'stateRank': '132', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'Eric Smiley', 'highSchool': 'Helena-West Helena Central', 'city': 'West Helena', 'state': 'AR', 'position': 'OC', 'height': 77.0, 'weight': '280', 'compRating': '0.8493', 'compStars': 3, 'nationalRank': '977', 'positionRank': '12', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'Ja-Mes Logan', 'highSchool': 'Westfield', 'city': 'Houston', 'state': 'TX', 'position': 'WR', 'height': 74.0, 'weight': '190', 'compRating': '0.8479', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '120', 'stateRank': '156', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'Jesse Grandy', 'highSchool': 'Dollarway', 'city': 'White Hall', 'state': 'AR', 'position': 'WR', 'height': 71.0, 'weight': '155', 'compRating': '0.8479', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '122', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'Terrell Grant', 'highSchool': 'Cleveland', 'city': 'Cleveland', 'state': 'MS', 'position': 'WR', 'height': 75.0, 'weight': '210', 'compRating': '0.8448', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '124', 'stateRank': '27', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'Emmanuel McCray', 'highSchool': 'Forest Hill', 'city': 'Jackson', 'state': 'MS', 'position': 'OT', 'height': 77.0, 'weight': '280', 'compRating': '0.8448', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '80', 'stateRank': '28', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'Evan Swindall', 'highSchool': 'Lafayette', 'city': 'La Fayette', 'state': 'GA', 'position': 'OG', 'height': 74.0, 'weight': '285', 'compRating': '0.8448', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '75', 'stateRank': '76', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'Mike Thomas', 'highSchool': "St. Paul's Episcopal", 'city': 'Mobile', 'state': 'AL', 'position': 'SDE', 'height': 76.0, 'weight': '246', 'compRating': '0.8448', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '52', 'stateRank': '33', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'Dele Junaid', 'highSchool': 'Hightower', 'city': 'Missouri City', 'state': 'TX', 'position': 'S', 'height': 74.0, 'weight': '177', 'compRating': '0.8431', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '82', 'stateRank': '166', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'Andrew Ritter', 'highSchool': 'Jackson Academy', 'city': 'Jackson', 'state': 'MS', 'position': 'K', 'height': 76.0, 'weight': '205', 'compRating': '0.8319', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '12', 'stateRank': '36', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'Ryan Campbell', 'highSchool': 'Carver', 'city': 'Columbus', 'state': 'GA', 'position': 'CB', 'height': 72.0, 'weight': '172', 'compRating': '0.8146', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '114', 'stateRank': '101', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'Logan Clair', 'highSchool': 'Northeastern Oklahoma A&M', 'city': 'Miami', 'state': 'OK', 'position': 'OT', 'height': 77.0, 'weight': '305', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '135', 'positionRank': '17', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'Stephen Houston', 'highSchool': 'Lakota West', 'city': 'West Chester', 'state': 'OH', 'position': 'RB', 'height': 70.0, 'weight': '208', 'compRating': '0.8083', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '104', 'stateRank': '94', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'Cameron Whigham ', 'highSchool': 'Shiloh', 'city': 'Snellville', 'state': 'GA', 'position': 'WDE', 'height': 75.0, 'weight': '230', 'compRating': '0.8021', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '68', 'stateRank': '116', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'Tyler Campbell', 'highSchool': 'Catholic For Boys', 'city': 'Little Rock', 'state': 'AR', 'position': 'K', 'height': 74.0, 'weight': '212', 'compRating': '0.7556', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '28', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2009', 'playerName': 'Darius Barksdale', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'RB', 'height': 72.0, 'weight': '190', 'compRating': '0.8991', 'compStars': 4, 'nationalRank': '10', 'positionRank': '1', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2011', 'playerName': 'Isaiah Crowell', 'highSchool': 'Carver', 'city': 'Columbus', 'state': 'GA', 'position': 'RB', 'height': 71.0, 'weight': '210', 'compRating': '0.9959', 'compStars': 5, 'nationalRank': '6', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 99 ', '247Stars': 5, '247nationalRank': '14', '247positionRank': '1', '247stateRank': '1'}, {'school': 'georgia', 'year': '2011', 'playerName': 'Ray Drew', 'highSchool': 'Thomas County Central', 'city': 'Thomasville', 'state': 'GA', 'position': 'SDE', 'height': 77.0, 'weight': '250', 'compRating': '0.9910', 'compStars': 5, 'nationalRank': '18', 'positionRank': '2', 'stateRank': '2', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '41', '247positionRank': '4', '247stateRank': '4'}, {'school': 'georgia', 'year': '2011', 'playerName': 'Malcolm Mitchell', 'highSchool': 'Valdosta', 'city': 'Valdosta', 'state': 'GA', 'position': 'ATH', 'height': 73.0, 'weight': '183', 'compRating': '0.9810', 'compStars': 4, 'nationalRank': '33', 'positionRank': '2', 'stateRank': '4', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '36', '247positionRank': '3', '247stateRank': '2'}, {'school': 'georgia', 'year': '2011', 'playerName': 'Damian Swann', 'highSchool': 'Grady', 'city': 'Atlanta', 'state': 'GA', 'position': 'CB', 'height': 72.0, 'weight': '175', 'compRating': '0.9728', 'compStars': 4, 'nationalRank': '51', 'positionRank': '2', 'stateRank': '6', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '65', '247positionRank': '3', '247stateRank': '7'}, {'school': 'georgia', 'year': '2011', 'playerName': 'Jay Rome', 'highSchool': 'Valdosta', 'city': 'Valdosta', 'state': 'GA', 'position': 'TE', 'height': 78.0, 'weight': '250', 'compRating': '0.9717', 'compStars': 4, 'nationalRank': '55', 'positionRank': '5', 'stateRank': '7', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '47', '247positionRank': '3', '247stateRank': '5'}, {'school': 'georgia', 'year': '2011', 'playerName': 'Christian LeMay', 'highSchool': 'Butler', 'city': 'Matthews', 'state': 'NC', 'position': 'PRO', 'height': 74.0, 'weight': '198', 'compRating': '0.9637', 'compStars': 4, 'nationalRank': '70', 'positionRank': '1', 'stateRank': '3', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '93', '247positionRank': '1', '247stateRank': '3'}, {'school': 'georgia', 'year': '2011', 'playerName': 'Corey Moore', 'highSchool': 'Griffin', 'city': 'Griffin', 'state': 'GA', 'position': 'S', 'height': 73.0, 'weight': '185', 'compRating': '0.9363', 'compStars': 4, 'nationalRank': '131', 'positionRank': '8', 'stateRank': '12', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '107', '247positionRank': '4', '247stateRank': '10'}, {'school': 'georgia', 'year': '2011', 'playerName': 'John Jenkins', 'highSchool': 'Mississippi Gulf Coast C.C.', 'city': 'Perkinston', 'state': 'MS', 'position': 'DT', 'height': 77.0, 'weight': '340', 'compRating': '0.9141', 'compStars': 4, 'nationalRank': '9', 'positionRank': '4', 'stateRank': '1', '247Rating': ' 92 ', '247Stars': 4, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2011', 'playerName': 'Nick Marshall', 'highSchool': 'Wilcox County', 'city': 'Rochelle', 'state': 'GA', 'position': 'CB', 'height': 74.0, 'weight': '186', 'compRating': '0.9071', 'compStars': 4, 'nationalRank': '211', 'positionRank': '19', 'stateRank': '15', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '209', '247positionRank': '20', '247stateRank': '17'}, {'school': 'georgia', 'year': '2011', 'playerName': 'Amarlo Herrera', 'highSchool': 'North Clayton', 'city': 'Atlanta', 'state': 'GA', 'position': 'ILB', 'height': 73.0, 'weight': '222', 'compRating': '0.9033', 'compStars': 4, 'nationalRank': '226', 'positionRank': '9', 'stateRank': '17', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '12', '247stateRank': '20'}, {'school': 'georgia', 'year': '2011', 'playerName': 'Chris Conley', 'highSchool': 'North Paudling', 'city': 'Dallas', 'state': 'GA', 'position': 'WR', 'height': 75.0, 'weight': '202', 'compRating': '0.8918', 'compStars': 4, 'nationalRank': '274', 'positionRank': '33', 'stateRank': '20', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '39', '247stateRank': '22'}, {'school': 'georgia', 'year': '2011', 'playerName': 'Watts Dantzler', 'highSchool': 'Dalton', 'city': 'Dalton', 'state': 'GA', 'position': 'OT', 'height': 79.0, 'weight': '320', 'compRating': '0.8904', 'compStars': 4, 'nationalRank': '281', 'positionRank': '27', 'stateRank': '22', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '31', '247stateRank': '25'}, {'school': 'georgia', 'year': '2011', 'playerName': 'Chris Sanders', 'highSchool': 'Tucker', 'city': 'Tucker', 'state': 'GA', 'position': 'S', 'height': 73.0, 'weight': '173', 'compRating': '0.8882', 'compStars': 3, 'nationalRank': '291', 'positionRank': '19', 'stateRank': '23', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '123', '247positionRank': '18', '247stateRank': '10'}, {'school': 'georgia', 'year': '2011', 'playerName': 'Sterling Bailey', 'highSchool': 'East Hall', 'city': 'Gainesville', 'state': 'GA', 'position': 'SDE', 'height': 76.0, 'weight': '249', 'compRating': '0.8872', 'compStars': 3, 'nationalRank': '299', 'positionRank': '20', 'stateRank': '24'}, {'school': 'georgia', 'year': '2011', 'playerName': 'Zach DeBell', 'highSchool': 'Tarpon Springs', 'city': 'Tarpon Springs', 'state': 'FL', 'position': 'OT', 'height': 79.0, 'weight': '285', 'compRating': '0.8832', 'compStars': 3, 'nationalRank': '315', 'positionRank': '34', 'stateRank': '51', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '42', '247stateRank': '69'}, {'school': 'georgia', 'year': '2011', 'playerName': 'Justin Scott-Wesley', 'highSchool': 'Mitchell County', 'city': 'Camilla', 'state': 'GA', 'position': 'WR', 'height': 72.0, 'weight': '202', 'compRating': '0.8827', 'compStars': 3, 'nationalRank': '318', 'positionRank': '38', 'stateRank': '25', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '225', '247positionRank': '28', '247stateRank': '18'}, {'school': 'georgia', 'year': '2011', 'playerName': 'Ramik Wilson', 'highSchool': 'Jefferson', 'city': 'Tampa', 'state': 'FL', 'position': 'ILB', 'height': 75.0, 'weight': '225', 'compRating': '0.8757', 'compStars': 3, 'nationalRank': '361', 'positionRank': '16', 'stateRank': '57', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '18', '247stateRank': '71'}, {'school': 'georgia', 'year': '2011', 'playerName': 'Xzavier Ward', 'highSchool': 'Colquitt County', 'city': 'Moultrie', 'state': 'GA', 'position': 'OT', 'height': 79.0, 'weight': '270', 'compRating': '0.8706', 'compStars': 3, 'nationalRank': '405', 'positionRank': '40', 'stateRank': '29', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '32', '247stateRank': '26'}, {'school': 'georgia', 'year': '2011', 'playerName': 'Sanford Seay', 'highSchool': 'Lee County', 'city': 'Leesburg', 'state': 'GA', 'position': 'WR', 'height': 74.0, 'weight': '195', 'compRating': '0.8640', 'compStars': 3, 'nationalRank': '474', 'positionRank': '57', 'stateRank': '35', '247Rating': ' 84 ', '247Stars': 3, '247nationalRank': '139', '247positionRank': '21', '247stateRank': '24'}, {'school': 'georgia', 'year': '2011', 'playerName': 'David Andrews', 'highSchool': 'Wesleyan School', 'city': 'Norcross', 'state': 'GA', 'position': 'OC', 'height': 74.0, 'weight': '282', 'compRating': '0.8630', 'compStars': 3, 'nationalRank': '495', 'positionRank': '8', 'stateRank': '38', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '12', '247stateRank': '45'}, {'school': 'georgia', 'year': '2011', 'playerName': 'Devin Bowman', 'highSchool': 'Ridgeland', 'city': 'Rossville', 'state': 'GA', 'position': 'CB', 'height': 72.0, 'weight': '177', 'compRating': '0.8621', 'compStars': 3, 'nationalRank': '505', 'positionRank': '35', 'stateRank': '40', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '53', '247stateRank': '47'}, {'school': 'georgia', 'year': '2011', 'playerName': 'Hunter Long', 'highSchool': 'Briarcrest Christian', 'city': 'Memphis', 'state': 'TN', 'position': 'OG', 'height': 76.0, 'weight': '295', 'compRating': '0.8291', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '68', 'stateRank': '18', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '78', '247stateRank': '17'}, {'school': 'georgia', 'year': '2011', 'playerName': 'Quintavius Harrow', 'highSchool': 'Carver', 'city': 'Columbus', 'state': 'GA', 'position': 'S', 'height': 74.0, 'weight': '200', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '99', 'stateRank': '100', '247Rating': ' 77 ', '247Stars': 2, '247positionRank': '100', '247stateRank': '91'}, {'school': 'georgia', 'year': '2011', 'playerName': 'Nathan Theus', 'highSchool': 'The Bolles School', 'city': 'Jacksonville', 'state': 'FL', 'position': 'LS', 'height': 75.0, 'weight': '258', 'compRating': '0.7954', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '1', 'stateRank': '212', '247Rating': ' 78 ', '247Stars': 2, '247positionRank': '1', '247stateRank': '201'}, {'school': 'georgia', 'year': '2011', 'playerName': 'Kent Turene', 'highSchool': 'Boyd Anderson', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'ILB', 'height': 74.0, 'weight': '230', 'compRating': '0.8713', 'compStars': 3, 'nationalRank': '399', 'positionRank': '18', 'stateRank': '61'}, {'school': 'georgia', 'year': '2011', 'playerName': 'Chris Mayes', 'highSchool': 'Spalding', 'city': 'Griffin', 'state': 'GA', 'position': 'SDE', 'height': 76.0, 'weight': '300', 'compRating': '0.8661', 'compStars': 3, 'nationalRank': '455', 'positionRank': '32', 'stateRank': '34', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '55', '247stateRank': '50'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Michael Dyer', 'highSchool': 'Little Rock Christian Academy', 'city': 'Little Rock', 'state': 'AR', 'position': 'RB', 'height': 69.0, 'weight': '212', 'compRating': '0.9961', 'compStars': 5, 'nationalRank': '8', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '13', '247positionRank': '1', '247stateRank': '1'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Trovon Reed', 'highSchool': 'Thibodaux', 'city': 'Thibodaux', 'state': 'LA', 'position': 'ATH', 'height': 72.0, 'weight': '185', 'compRating': '0.9864', 'compStars': 5, 'nationalRank': '25', 'positionRank': '3', 'stateRank': '1', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '24', '247positionRank': '3', '247stateRank': '1'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Corey Lemonier', 'highSchool': 'Hialeah', 'city': 'Hialeah', 'state': 'FL', 'position': 'WDE', 'height': 76.0, 'weight': '234', 'compRating': '0.9715', 'compStars': 4, 'nationalRank': '55', 'positionRank': '2', 'stateRank': '11', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '113', '247positionRank': '3', '247stateRank': '18'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Jeffrey Whitaker', 'highSchool': 'Warner Robins', 'city': 'Warner Robins', 'state': 'GA', 'position': 'DT', 'height': 75.0, 'weight': '310', 'compRating': '0.9479', 'compStars': 4, 'nationalRank': '108', 'positionRank': '9', 'stateRank': '13', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '66', '247positionRank': '5', '247stateRank': '7'}, {'school': 'auburn', 'year': '2010', 'playerName': 'LaDarius Owens', 'highSchool': 'Jess Lanier', 'city': 'Hueytown', 'state': 'AL', 'position': 'WDE', 'height': 74.0, 'weight': '247', 'compRating': '0.9313', 'compStars': 4, 'nationalRank': '153', 'positionRank': '6', 'stateRank': '4', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '214', '247positionRank': '12', '247stateRank': '6'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Antonio Goodwin', 'highSchool': 'Washington', 'city': 'Atlanta', 'state': 'GA', 'position': 'WR', 'height': 73.0, 'weight': '173', 'compRating': '0.9321', 'compStars': 4, 'nationalRank': '149', 'positionRank': '19', 'stateRank': '14', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '185', '247positionRank': '19', '247stateRank': '16'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Eric Mack', 'highSchool': 'Calhoun County', 'city': 'Saint Matthews', 'state': 'SC', 'position': 'OG', 'height': 75.0, 'weight': '332', 'compRating': '0.9218', 'compStars': 4, 'nationalRank': '186', 'positionRank': '5', 'stateRank': '10', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '205', '247positionRank': '9', '247stateRank': '9'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Shaun Kitchens', 'highSchool': 'Banneker', 'city': 'Atlanta', 'state': 'GA', 'position': 'WR', 'height': 75.0, 'weight': '211', 'compRating': '0.9227', 'compStars': 4, 'nationalRank': '182', 'positionRank': '24', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Craig Sanders', 'highSchool': 'Ariton Sch', 'city': 'Ariton', 'state': 'AL', 'position': 'WDE', 'height': 76.0, 'weight': '257', 'compRating': '0.9118', 'compStars': 4, 'nationalRank': '223', 'positionRank': '15', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Roszell Gayden', 'highSchool': 'College of the Sequoias', 'city': 'Visalia', 'state': 'CA', 'position': 'OT', 'height': 78.0, 'weight': '315', 'compRating': '0.9111', 'compStars': 4, 'nationalRank': '8', 'positionRank': '2', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Kenneth Carter', 'highSchool': 'Greenville', 'city': 'Greenville', 'state': 'AL', 'position': 'DT', 'height': 77.0, 'weight': '267', 'compRating': '0.9019', 'compStars': 4, 'nationalRank': '270', 'positionRank': '20', 'stateRank': '9', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '241', '247positionRank': '22', '247stateRank': '7'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Jake Holland', 'highSchool': 'Pelham', 'city': 'Pelham', 'state': 'AL', 'position': 'ILB', 'height': 72.0, 'weight': '231', 'compRating': '0.8944', 'compStars': 4, 'nationalRank': '310', 'positionRank': '8', 'stateRank': '11', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '245', '247positionRank': '6', '247stateRank': '8'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Jeremy Richardson', 'highSchool': 'Springville Sch', 'city': 'Springville', 'state': 'AL', 'position': 'WR', 'height': 76.0, 'weight': '220', 'compRating': '0.8875', 'compStars': 3, 'nationalRank': '364', 'positionRank': '49', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Ed Christian', 'highSchool': 'Lowndes', 'city': 'Valdosta', 'state': 'GA', 'position': 'OG', 'height': 76.0, 'weight': '323', 'compRating': '0.8826', 'compStars': 3, 'nationalRank': '405', 'positionRank': '19', 'stateRank': '36', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Jawara White', 'highSchool': 'Charles Henderson Sch', 'city': 'Troy', 'state': 'AL', 'position': 'ILB', 'height': 73.0, 'weight': '243', 'compRating': '0.8795', 'compStars': 3, 'nationalRank': '425', 'positionRank': '17', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Dakota Mosley', 'highSchool': 'Little Rock Christian Academy', 'city': 'Little Rock', 'state': 'AR', 'position': 'TE', 'height': 76.0, 'weight': '259', 'compRating': '0.8684', 'compStars': 3, 'nationalRank': '603', 'positionRank': '24', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Brandon Mosley', 'highSchool': 'Coffeyville C.C.', 'city': 'Coffeyville', 'state': 'KS', 'position': 'OT', 'height': 78.0, 'weight': '299', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '34', 'positionRank': '7', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Cody Parkey', 'highSchool': 'Jupiter', 'city': 'Jupiter', 'state': 'FL', 'position': 'K', 'height': 72.0, 'weight': '193', 'compRating': '0.8604', 'compStars': 3, 'nationalRank': '796', 'positionRank': '2', 'stateRank': '117', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Demetruce McNeal', 'highSchool': 'Banneker', 'city': 'Atlanta', 'state': 'GA', 'position': 'S', 'height': 73.0, 'weight': '187', 'compRating': '0.8559', 'compStars': 3, 'nationalRank': '898', 'positionRank': '66', 'stateRank': '74', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Justin Delaine', 'highSchool': 'Linden', 'city': 'Linden', 'state': 'AL', 'position': 'WDE', 'height': 77.0, 'weight': '237', 'compRating': '0.8559', 'compStars': 3, 'nationalRank': '902', 'positionRank': '55', 'stateRank': '30', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Ryan White', 'highSchool': 'Lincoln', 'city': 'Tallahassee', 'state': 'FL', 'position': 'CB', 'height': 70.0, 'weight': '195', 'compRating': '0.8542', 'compStars': 3, 'nationalRank': '987', 'positionRank': '77', 'stateRank': '146', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Jessel Curry', 'highSchool': 'Buford', 'city': 'Buford', 'state': 'GA', 'position': 'ILB', 'height': 73.0, 'weight': '214', 'compRating': '0.8528', 'compStars': 3, 'nationalRank': '995', 'positionRank': '42', 'stateRank': '79', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Chris Davis', 'highSchool': 'Woodlawn', 'city': 'Birmingham', 'state': 'AL', 'position': 'CB', 'height': 70.0, 'weight': '182', 'compRating': '0.8479', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '94', 'stateRank': '37', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Chad Slade', 'highSchool': 'Moody Sch', 'city': 'Moody', 'state': 'AL', 'position': 'OG', 'height': 77.0, 'weight': '329', 'compRating': '0.8448', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '59', 'stateRank': '38', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Ryan Smith', 'highSchool': 'Cordova', 'city': 'Cordova', 'state': 'AL', 'position': 'S', 'height': 73.0, 'weight': '200', 'compRating': '0.8417', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '94', 'stateRank': '42', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Steven Clark', 'highSchool': 'Park Hill', 'city': 'Kansas City', 'state': 'MO', 'position': 'K', 'height': 77.0, 'weight': '232', 'compRating': '0.8351', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '14', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Tunde Fariyike', 'highSchool': 'Upson-Lee', 'city': 'Thomaston', 'state': 'GA', 'position': 'OG', 'height': 74.0, 'weight': '307', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '125', 'stateRank': '155', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Ladarious Phillips', 'highSchool': 'Handley', 'city': 'Roanoke', 'state': 'AL', 'position': 'FB', 'height': 72.0, 'weight': '293', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '18', 'stateRank': '73', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Jonathon Mincy', 'highSchool': 'Southwest DeKalb', 'city': 'Decatur', 'state': 'GA', 'position': 'CB', 'height': 70.0, 'weight': '180', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Xavier Brown', 'highSchool': 'Washington', 'city': 'Atlanta', 'state': 'GA', 'position': 'OLB', 'height': 74.0, 'weight': '213', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Trent Fisher', 'highSchool': 'C.P.A.', 'city': 'Nashville', 'state': 'TN', 'position': 'S', 'height': 72.0, 'weight': '189', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Codey Frederick', 'highSchool': 'Hamilton Sch', 'city': 'Hamilton', 'state': 'AL', 'position': 'WR', 'height': 76.0, 'weight': '199', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Cameron Groce', 'highSchool': 'Gardendale', 'city': 'Gardendale', 'state': 'AL', 'position': 'TE', 'height': 75.0, 'weight': '225', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Ryan Preston', 'highSchool': 'Oxford', 'city': 'Oxford', 'state': 'AL', 'position': 'OC', 'height': 73.0, 'weight': '280', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Dimitri Reese', 'highSchool': 'Clay-Chalkville', 'city': 'Pinson', 'state': 'AL', 'position': 'WR', 'height': 70.0, 'weight': '170', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Jordan Spriggs', 'highSchool': 'Murphy', 'city': 'Mobile', 'state': 'AL', 'position': 'CB', 'height': 69.0, 'weight': '182', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Jacob Westrich', 'highSchool': 'Grissom', 'city': 'Huntsville', 'state': 'AL', 'position': 'OLB', 'height': 73.0, 'weight': '219', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Blake Poole', 'highSchool': 'Haralson County', 'city': 'Tallapoosa', 'state': 'GA', 'position': 'CB', 'height': 71.0, 'weight': '190', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Cam Newton', 'highSchool': 'Blinn College', 'city': 'Brenham', 'state': 'TX', 'position': 'DUAL', 'height': 78.0, 'weight': '250', 'compRating': '0.9333', 'compStars': 4, 'nationalRank': '3', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Joel Bonomolo', 'highSchool': 'Fullerton College', 'city': 'Fullerton', 'state': 'CA', 'position': 'SDE', 'height': 75.0, 'weight': '245', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '32', 'positionRank': '3', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2010', 'playerName': 'Josh Jackson', 'highSchool': 'Gainesville', 'city': 'Gainesville', 'state': 'GA', 'position': 'DT', 'height': 74.0, 'weight': '260', 'compRating': '0.8019', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '127', 'stateRank': '147'}, {'school': 'south-carolina', 'year': '2003', 'playerName': 'Demetris Summers', 'highSchool': 'Lexington', 'city': 'Lexington', 'state': 'SC', 'position': 'RB', 'height': 73.0, 'weight': '200', 'compRating': '0.9946', 'compStars': 5, 'nationalRank': '9', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2003', 'playerName': 'Syvelle Newton', 'highSchool': 'Marlboro County', 'city': 'Bennettsville', 'state': 'SC', 'position': 'DUAL', 'height': 74.0, 'weight': '210', 'compRating': '0.9319', 'compStars': 4, 'nationalRank': '119', 'positionRank': '5', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2003', 'playerName': 'Marcus Lawrence', 'highSchool': 'Butler C.C.', 'city': 'El Dorado', 'state': 'KS', 'position': 'ILB', 'height': 75.0, 'weight': '240', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '12', 'positionRank': '4', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2003', 'playerName': 'Blake Mitchell', 'highSchool': 'LaGrange', 'city': 'Lagrange', 'state': 'GA', 'position': 'PRO', 'height': 76.0, 'weight': '180', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '138', 'positionRank': '10', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2003', 'playerName': 'Darrell Shropshire', 'highSchool': 'Coffeyville C.C.', 'city': 'Coffeyville', 'state': 'KS', 'position': 'DT', 'height': 76.0, 'weight': '285', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '26', 'positionRank': '3', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2003', 'playerName': 'Ryan Brown', 'highSchool': 'Berkeley', 'city': 'Moncks Corner', 'state': 'SC', 'position': 'ILB', 'height': 74.0, 'weight': '235', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '258', 'positionRank': '20', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2003', 'playerName': 'DeAdrian Coley', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'ILB', 'height': 75.0, 'weight': '225', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '32', 'positionRank': '8', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2003', 'playerName': 'Charles Silas', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'SDE', 'height': 77.0, 'weight': '235', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '44', 'positionRank': '4', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2003', 'playerName': 'Frederick Bennett', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'S', 'height': 74.0, 'weight': '180', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '6', 'positionRank': '1', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2003', 'playerName': 'Noah Whiteside', 'highSchool': 'Greenville', 'city': 'Greenville', 'state': 'SC', 'position': 'WR', 'height': 71.0, 'weight': '170', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '285', 'positionRank': '25', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2003', 'playerName': 'Freddie Saint-Preux', 'highSchool': 'Dodge City C.C.', 'city': 'Dodge City', 'state': 'KS', 'position': 'DT', 'height': 77.0, 'weight': '300', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '57', 'positionRank': '7', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2003', 'playerName': 'Derrick Harper', 'highSchool': 'Montclair', 'city': 'Montclair', 'state': 'NJ', 'position': 'WR', 'height': 74.0, 'weight': '181', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '462', 'positionRank': '39', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2003', 'playerName': 'Travis Lee', 'highSchool': 'Crest', 'city': 'Shelby', 'state': 'NC', 'position': 'ATH', 'height': 73.0, 'weight': '187', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '479', 'positionRank': '23', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2003', 'playerName': 'Woodly Telfort', 'highSchool': 'Dodge City C.C.', 'city': 'Dodge City', 'state': 'KS', 'position': 'OT', 'height': 79.0, 'weight': '290', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '92', 'positionRank': '7', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2003', 'playerName': 'David Smith', 'highSchool': 'Union', 'city': 'Union', 'state': 'SC', 'position': 'WR', 'height': 76.0, 'weight': '181', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '575', 'positionRank': '54', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2003', 'playerName': 'Cody Wells', 'highSchool': 'Belleview', 'city': 'Belleview', 'state': 'FL', 'position': 'S', 'height': 72.0, 'weight': '180', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '708', 'positionRank': '39', 'stateRank': '90', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2003', 'playerName': 'Tray Rogers', 'highSchool': 'Dutch Fork', 'city': 'Irmo', 'state': 'SC', 'position': 'OLB', 'height': 73.0, 'weight': '205', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '713', 'positionRank': '50', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2003', 'playerName': "D'Von Hill", 'highSchool': 'Camden Military Academy', 'city': 'Camden', 'state': 'SC', 'position': 'WR', 'height': 75.0, 'weight': '205', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '14', 'positionRank': '2', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2003', 'playerName': 'Cory Boyd', 'highSchool': 'Orange', 'city': 'Orange', 'state': 'NJ', 'position': 'S', 'height': 73.0, 'weight': '186', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '797', 'positionRank': '50', 'stateRank': '33', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2003', 'playerName': 'Curtis Rice', 'highSchool': 'Union', 'city': 'Union', 'state': 'SC', 'position': 'OLB', 'height': 74.0, 'weight': '205', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '822', 'positionRank': '59', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2003', 'playerName': 'Mike Rathe', 'highSchool': 'La Mesa Christian School', 'city': 'La Mesa', 'state': 'CA', 'position': 'DUAL', 'height': 74.0, 'weight': '210', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '941', 'positionRank': '26', 'stateRank': '128', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2003', 'playerName': 'Ty Erving', 'highSchool': 'Batesburg-Leesville', 'city': 'Batesburg', 'state': 'SC', 'position': 'CB', 'height': 72.0, 'weight': '185', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '954', 'positionRank': '70', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2003', 'playerName': 'David Laggis', 'highSchool': 'Heritage', 'city': 'Conyers', 'state': 'GA', 'position': 'SDE', 'height': 77.0, 'weight': '240', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '976', 'positionRank': '56', 'stateRank': '63', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2003', 'playerName': 'Robert Pavlovic', 'highSchool': 'St. Xavier', 'city': 'Cincinnati', 'state': 'OH', 'position': 'TE', 'height': 77.0, 'weight': '220', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '95', 'stateRank': '65', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2003', 'playerName': 'William Brown', 'highSchool': 'Starmount', 'city': 'Boonville', 'state': 'NC', 'position': 'OT', 'height': 68.0, 'weight': '159', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '154', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2003', 'playerName': 'Stanley Doughty', 'highSchool': 'St. Helena College and Career Academy', 'city': 'Greensburg', 'state': 'LA', 'position': 'DT', 'height': 74.0, 'weight': '315', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '114', 'stateRank': '76', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2003', 'playerName': 'Josh Johnson', 'highSchool': 'East Bay', 'city': 'Gibsonton', 'state': 'FL', 'position': 'SDE', 'height': 76.0, 'weight': '230', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '103', 'stateRank': '228', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2013', 'playerName': "Tre'Davious White", 'highSchool': 'Green Oaks', 'city': 'Shreveport', 'state': 'LA', 'position': 'CB', 'height': 70.5, 'weight': '170', 'compRating': '0.9763', 'compStars': 4, 'nationalRank': '46', 'positionRank': '5', 'stateRank': '1', '247Rating': ' 99 ', '247Stars': 5, '247nationalRank': '9', '247positionRank': '2', '247stateRank': '1'}, {'school': 'lsu', 'year': '2013', 'playerName': 'Ethan Pocic', 'highSchool': 'Lemont', 'city': 'Lemont', 'state': 'IL', 'position': 'OT', 'height': 79.0, 'weight': '280', 'compRating': '0.9744', 'compStars': 4, 'nationalRank': '57', 'positionRank': '5', 'stateRank': '3', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '72', '247positionRank': '7', '247stateRank': '2'}, {'school': 'lsu', 'year': '2013', 'playerName': 'Kendell Beckwith', 'highSchool': 'East Feliciana', 'city': 'Jackson', 'state': 'LA', 'position': 'OLB', 'height': 74.5, 'weight': '225', 'compRating': '0.9671', 'compStars': 4, 'nationalRank': '74', 'positionRank': '7', 'stateRank': '2', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '68', '247positionRank': '7', '247stateRank': '2'}, {'school': 'lsu', 'year': '2013', 'playerName': 'Frank Herron', 'highSchool': 'Memphis Central', 'city': 'Memphis', 'state': 'TN', 'position': 'SDE', 'height': 77.0, 'weight': '235', 'compRating': '0.9595', 'compStars': 4, 'nationalRank': '89', 'positionRank': '7', 'stateRank': '2', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '75', '247positionRank': '7', '247stateRank': '2'}, {'school': 'lsu', 'year': '2013', 'playerName': 'Greg Gilmore', 'highSchool': 'South View', 'city': 'Hope Mills', 'state': 'NC', 'position': 'DT', 'height': 76.0, 'weight': '273', 'compRating': '0.9593', 'compStars': 4, 'nationalRank': '90', 'positionRank': '7', 'stateRank': '2', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '59', '247positionRank': '5', '247stateRank': '2'}, {'school': 'lsu', 'year': '2013', 'playerName': 'DeSean Smith', 'highSchool': 'Barbe', 'city': 'Lake Charles', 'state': 'LA', 'position': 'TE', 'height': 76.25, 'weight': '224', 'compRating': '0.9443', 'compStars': 4, 'nationalRank': '120', 'positionRank': '5', 'stateRank': '4', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '132', '247positionRank': '5', '247stateRank': '5'}, {'school': 'lsu', 'year': '2013', 'playerName': 'Jeryl Brazil', 'highSchool': 'Loranger', 'city': 'Loranger', 'state': 'LA', 'position': 'CB', 'height': 70.0, 'weight': '180', 'compRating': '0.9423', 'compStars': 4, 'nationalRank': '123', 'positionRank': '11', 'stateRank': '5', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '66', '247positionRank': '7', '247stateRank': '21'}, {'school': 'lsu', 'year': '2013', 'playerName': 'Hayden Rettig', 'highSchool': 'Cathedral', 'city': 'Los Angeles', 'state': 'CA', 'position': 'PRO', 'height': 75.0, 'weight': '190', 'compRating': '0.9348', 'compStars': 4, 'nationalRank': '143', 'positionRank': '9', 'stateRank': '18', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '170', '247positionRank': '12', '247stateRank': '20'}, {'school': 'lsu', 'year': '2013', 'playerName': 'Josh Boutte', 'highSchool': 'Westgate', 'city': 'New Iberia', 'state': 'LA', 'position': 'OG', 'height': 76.0, 'weight': '305', 'compRating': '0.9316', 'compStars': 4, 'nationalRank': '155', 'positionRank': '10', 'stateRank': '6', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '111', '247positionRank': '5', '247stateRank': '4'}, {'school': 'lsu', 'year': '2013', 'playerName': 'John Diarse', 'highSchool': 'Neville', 'city': 'Monroe', 'state': 'LA', 'position': 'WR', 'height': 72.0, 'weight': '205', 'compRating': '0.9223', 'compStars': 4, 'nationalRank': '187', 'positionRank': '23', 'stateRank': '7', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '163', '247positionRank': '22', '247stateRank': '7'}, {'school': 'lsu', 'year': '2013', 'playerName': 'Tashawn Bower', 'highSchool': 'Immaculata', 'city': 'Somerville', 'state': 'NJ', 'position': 'SDE', 'height': 77.0, 'weight': '241', 'compRating': '0.9209', 'compStars': 4, 'nationalRank': '195', 'positionRank': '12', 'stateRank': '6', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '18', '247stateRank': '14'}, {'school': 'lsu', 'year': '2013', 'playerName': 'Avery Peterson', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'WR', 'height': 74.0, 'weight': '180', 'compRating': '0.9200', 'compStars': 4, 'nationalRank': '3', 'positionRank': '2', 'stateRank': '3', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '7', '247positionRank': '3', '247stateRank': '7'}, {'school': 'lsu', 'year': '2013', 'playerName': 'Rickey Jefferson', 'highSchool': 'Destrehan', 'city': 'Destrehan', 'state': 'LA', 'position': 'WR', 'height': 72.0, 'weight': '180', 'compRating': '0.9183', 'compStars': 4, 'nationalRank': '203', 'positionRank': '26', 'stateRank': '8', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '36', '247stateRank': '10'}, {'school': 'lsu', 'year': '2013', 'playerName': 'Anthony Jennings', 'highSchool': 'Marietta', 'city': 'Marietta', 'state': 'GA', 'position': 'PRO', 'height': 74.0, 'weight': '200', 'compRating': '0.9171', 'compStars': 4, 'nationalRank': '207', 'positionRank': '14', 'stateRank': '18', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '16', '247stateRank': '23'}, {'school': 'lsu', 'year': '2013', 'playerName': 'Melvin Jones', 'highSchool': 'Washington-Marion', 'city': 'Lake Charles', 'state': 'LA', 'position': 'ILB', 'height': 75.0, 'weight': '245', 'compRating': '0.9036', 'compStars': 4, 'nationalRank': '268', 'positionRank': '15', 'stateRank': '12', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '171', '247positionRank': '4', '247stateRank': '8'}, {'school': 'lsu', 'year': '2013', 'playerName': 'Christian LaCouture', 'highSchool': 'Southwest', 'city': 'Lincoln', 'state': 'NE', 'position': 'SDE', 'height': 77.0, 'weight': '265', 'compRating': '0.9004', 'compStars': 4, 'nationalRank': '281', 'positionRank': '15', 'stateRank': '2', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '15', '247stateRank': '1'}, {'school': 'lsu', 'year': '2013', 'playerName': 'Quantavius Leslie', 'highSchool': 'Hinds C.C.', 'city': 'Raymond', 'state': 'MS', 'position': 'WR', 'height': 76.0, 'weight': '190', 'compRating': '0.8994', 'compStars': 4, 'nationalRank': '14', 'positionRank': '5', 'stateRank': '6', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '24', '247positionRank': '6', '247stateRank': '7'}, {'school': 'lsu', 'year': '2013', 'playerName': 'Maquedius Bain', 'highSchool': 'University School', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'DT', 'height': 75.0, 'weight': '308', 'compRating': '0.8986', 'compStars': 4, 'nationalRank': '292', 'positionRank': '26', 'stateRank': '45'}, {'school': 'lsu', 'year': '2013', 'playerName': 'Andy Dodd', 'highSchool': 'Pepperell', 'city': 'Lindale', 'state': 'GA', 'position': 'OG', 'height': 76.0, 'weight': '325', 'compRating': '0.8918', 'compStars': 4, 'nationalRank': '324', 'positionRank': '17', 'stateRank': '26', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '242', '247positionRank': '11', '247stateRank': '20'}, {'school': 'lsu', 'year': '2013', 'playerName': 'Rashard Robinson', 'highSchool': 'Blanche Ely', 'city': 'Pompano Beach', 'state': 'FL', 'position': 'CB', 'height': 74.5, 'weight': '165', 'compRating': '0.8903', 'compStars': 4, 'nationalRank': '334', 'positionRank': '26', 'stateRank': '47', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '118', '247positionRank': '10', '247stateRank': '17'}, {'school': 'lsu', 'year': '2013', 'playerName': 'Kevin Spears', 'highSchool': 'Holy Cross', 'city': 'New Orleans', 'state': 'LA', 'position': 'WR', 'height': 74.0, 'weight': '190', 'compRating': '0.8760', 'compStars': 3, 'nationalRank': '417', 'positionRank': '59', 'stateRank': '16', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '82', '247stateRank': '26'}, {'school': 'lsu', 'year': '2013', 'playerName': 'Michael Patterson', 'highSchool': 'Winnfield Senior', 'city': 'Winnfield', 'state': 'LA', 'position': 'WDE', 'height': 75.0, 'weight': '240', 'compRating': '0.8700', 'compStars': 3, 'nationalRank': '480', 'positionRank': '19', 'stateRank': '18', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '12', '247stateRank': '12'}, {'school': 'lsu', 'year': '2013', 'playerName': 'Lewis Neal', 'highSchool': 'James Hunt', 'city': 'Wilson', 'state': 'NC', 'position': 'WDE', 'height': 73.0, 'weight': '235', 'compRating': '0.8671', 'compStars': 3, 'nationalRank': '516', 'positionRank': '21', 'stateRank': '18', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '28', '247stateRank': '25'}, {'school': 'lsu', 'year': '2013', 'playerName': 'K.J. Malone', 'highSchool': 'Cedar Creek', 'city': 'Ruston', 'state': 'LA', 'position': 'OC', 'height': 75.0, 'weight': '285', 'compRating': '0.8656', 'compStars': 3, 'nationalRank': '538', 'positionRank': '9', 'stateRank': '21', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '9', '247stateRank': '18'}, {'school': 'lsu', 'year': '2013', 'playerName': 'Duke Riley', 'highSchool': 'John Curtis', 'city': 'New Orleans', 'state': 'LA', 'position': 'OLB', 'height': 74.0, 'weight': '210', 'compRating': '0.8656', 'compStars': 3, 'nationalRank': '539', 'positionRank': '42', 'stateRank': '22', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '47', '247stateRank': '22'}, {'school': 'lsu', 'year': '2013', 'playerName': 'Logan Stokes', 'highSchool': 'Northeast Mississippi C.C.', 'city': 'Booneville', 'state': 'MS', 'position': 'TE', 'height': 75.0, 'weight': '240', 'compRating': '0.8576', 'compStars': 3, 'nationalRank': '70', 'positionRank': '5', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2013', 'playerName': 'Fehoko Fanaika', 'highSchool': 'College of San Mateo', 'city': 'San Mateo', 'state': 'CA', 'position': 'OT', 'height': 78.0, 'weight': '340', 'compRating': '0.8367', 'compStars': 3, 'nationalRank': '132', 'positionRank': '11', 'stateRank': '45', '247Rating': ' 84 ', '247Stars': 3, '247nationalRank': '137', '247positionRank': '11', '247stateRank': '45'}, {'school': 'lsu', 'year': '2013', 'playerName': 'John David Moore', 'highSchool': 'Ruston', 'city': 'Ruston', 'state': 'LA', 'position': 'TE', 'height': 75.0, 'weight': '210', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2013', 'playerName': 'Cyril Grayson', 'highSchool': 'Archbishop Rummel', 'city': 'Metairie', 'state': 'LA', 'position': 'WR', 'height': 69.0, 'weight': '183', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2017', 'playerName': 'Trey Smith', 'highSchool': 'University School Of Jackson', 'city': 'Jackson', 'state': 'TN', 'position': 'OT', 'height': 77.0, 'weight': '310', 'compRating': '0.9920', 'compStars': 5, 'nationalRank': '14', 'positionRank': '4', 'stateRank': '1', '247Rating': ' 99 ', '247Stars': 5, '247nationalRank': '5', '247positionRank': '3', '247stateRank': '1'}, {'school': 'tennessee', 'year': '2017', 'playerName': 'Ty Chandler', 'highSchool': 'Montgomery Bell Academy', 'city': 'Nashville', 'state': 'TN', 'position': 'RB', 'height': 70.5, 'weight': '187', 'compRating': '0.9679', 'compStars': 4, 'nationalRank': '67', 'positionRank': '5', 'stateRank': '5', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '79', '247positionRank': '5', '247stateRank': '5'}, {'school': 'tennessee', 'year': '2017', 'playerName': 'Maleik Gray', 'highSchool': 'LaVergne', 'city': 'LaVergne', 'state': 'TN', 'position': 'S', 'height': 74.0, 'weight': '190', 'compRating': '0.9621', 'compStars': 4, 'nationalRank': '80', 'positionRank': '10', 'stateRank': '6'}, {'school': 'tennessee', 'year': '2017', 'playerName': 'Eric Crosby', 'highSchool': 'Ocean Lakes', 'city': 'Virginia Beach', 'state': 'VA', 'position': 'DT', 'height': 73.0, 'weight': '330', 'compRating': '0.9160', 'compStars': 4, 'nationalRank': '215', 'positionRank': '12', 'stateRank': '7', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '26', '247stateRank': '11'}, {'school': 'tennessee', 'year': '2017', 'playerName': 'Will Ignont', 'highSchool': 'Buckhorn', 'city': 'New Market', 'state': 'AL', 'position': 'ILB', 'height': 74.0, 'weight': '230', 'compRating': '0.8939', 'compStars': 4, 'nationalRank': '308', 'positionRank': '16', 'stateRank': '15', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '114', '247positionRank': '5', '247stateRank': '4'}, {'school': 'tennessee', 'year': '2017', 'playerName': 'Jordan Murphy', 'highSchool': 'Hattiesburg', 'city': 'Hattiesburg', 'state': 'MS', 'position': 'WR', 'height': 73.0, 'weight': '170', 'compRating': '0.8883', 'compStars': 3, 'nationalRank': '349', 'positionRank': '51', 'stateRank': '8', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '232', '247positionRank': '30', '247stateRank': '6'}, {'school': 'tennessee', 'year': '2017', 'playerName': 'Cheyenne Labruzza', 'highSchool': 'Albany', 'city': 'Albany', 'state': 'LA', 'position': 'CB', 'height': 72.0, 'weight': '185', 'compRating': '0.8776', 'compStars': 3, 'nationalRank': '430', 'positionRank': '44', 'stateRank': '17', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '33', '247stateRank': '11'}, {'school': 'tennessee', 'year': '2017', 'playerName': 'LaTrell Bumphus', 'highSchool': 'Hardin County', 'city': 'Savannah', 'state': 'TN', 'position': 'WDE', 'height': 76.0, 'weight': '241', 'compRating': '0.8764', 'compStars': 3, 'nationalRank': '438', 'positionRank': '24', 'stateRank': '12', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '45', '247stateRank': '23'}, {'school': 'tennessee', 'year': '2017', 'playerName': 'Matthew Butler', 'highSchool': 'Garner', 'city': 'Garner', 'state': 'NC', 'position': 'DT', 'height': 76.0, 'weight': '280', 'compRating': '0.8725', 'compStars': 3, 'nationalRank': '454', 'positionRank': '36', 'stateRank': '12', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '19', '247stateRank': '8'}, {'school': 'tennessee', 'year': '2017', 'playerName': 'Kivon Bennett', 'highSchool': 'St. Thomas Aquinas', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'DT', 'height': 74.0, 'weight': '280', 'compRating': '0.8702', 'compStars': 3, 'nationalRank': '482', 'positionRank': '40', 'stateRank': '63', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '54', '247stateRank': '102'}, {'school': 'tennessee', 'year': '2017', 'playerName': 'Terrell Bailey', 'highSchool': 'John Ehret', 'city': 'Marrero', 'state': 'LA', 'position': 'CB', 'height': 72.0, 'weight': '175', 'compRating': '0.8695', 'compStars': 3, 'nationalRank': '493', 'positionRank': '48', 'stateRank': '20', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '61', '247stateRank': '28'}, {'school': 'tennessee', 'year': '2017', 'playerName': 'Theo Jackson', 'highSchool': 'Overton', 'city': 'Nashville', 'state': 'TN', 'position': 'S', 'height': 74.0, 'weight': '175', 'compRating': '0.8665', 'compStars': 3, 'nationalRank': '533', 'positionRank': '37', 'stateRank': '17', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '39', '247stateRank': '17'}, {'school': 'tennessee', 'year': '2017', 'playerName': 'Solon Page III', 'highSchool': 'Kell', 'city': 'Marietta', 'state': 'GA', 'position': 'OLB', 'height': 74.0, 'weight': '207', 'compRating': '0.8619', 'compStars': 3, 'nationalRank': '593', 'positionRank': '39', 'stateRank': '59', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '20', '247stateRank': '33'}, {'school': 'tennessee', 'year': '2017', 'playerName': 'Shanon Reid', 'highSchool': 'Dunbar', 'city': 'Fort Myers', 'state': 'FL', 'position': 'OLB', 'height': 73.0, 'weight': '202', 'compRating': '0.8614', 'compStars': 3, 'nationalRank': '604', 'positionRank': '41', 'stateRank': '80', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '240', '247positionRank': '14', '247stateRank': '30'}, {'school': 'tennessee', 'year': '2017', 'playerName': 'Riley Locklear', 'highSchool': 'Spring Valley', 'city': 'Huntington', 'state': 'WV', 'position': 'OT', 'height': 77.0, 'weight': '290', 'compRating': '0.8610', 'compStars': 3, 'nationalRank': '607', 'positionRank': '62', 'stateRank': '3', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '128', '247stateRank': '7'}, {'school': 'tennessee', 'year': '2017', 'playerName': "K'Rojhn Calbert", 'highSchool': 'Warren County', 'city': 'Mcminnville', 'state': 'TN', 'position': 'OT', 'height': 77.0, 'weight': '296', 'compRating': '0.8600', 'compStars': 3, 'nationalRank': '623', 'positionRank': '63', 'stateRank': '21', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '56', '247stateRank': '18'}, {'school': 'tennessee', 'year': '2017', 'playerName': 'Trey Coleman', 'highSchool': 'West Monroe', 'city': 'West Monroe', 'state': 'LA', 'position': 'ATH', 'height': 71.0, 'weight': '203', 'compRating': '0.8559', 'compStars': 3, 'nationalRank': '701', 'positionRank': '50', 'stateRank': '28'}, {'school': 'tennessee', 'year': '2017', 'playerName': 'Deandre Johnson', 'highSchool': 'Miami Southridge', 'city': 'Miami', 'state': 'FL', 'position': 'WDE', 'height': 75.0, 'weight': '235', 'compRating': '0.8519', 'compStars': 3, 'nationalRank': '788', 'positionRank': '46', 'stateRank': '104', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '50', '247stateRank': '111'}, {'school': 'tennessee', 'year': '2017', 'playerName': 'Josh Palmer', 'highSchool': 'St. Thomas Aquinas', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'WR', 'height': 74.0, 'weight': '200', 'compRating': '0.8502', 'compStars': 3, 'nationalRank': '837', 'positionRank': '121', 'stateRank': '115', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '164', '247stateRank': '180'}, {'school': 'tennessee', 'year': '2017', 'playerName': 'Ryan Thaxton', 'highSchool': "St. Stephen's & St. Agnes", 'city': 'Alexandria', 'state': 'VA', 'position': 'SDE', 'height': 77.0, 'weight': '245', 'compRating': '0.8497', 'compStars': 3, 'nationalRank': '850', 'positionRank': '38', 'stateRank': '23'}, {'school': 'tennessee', 'year': '2017', 'playerName': 'Princeton Fant', 'highSchool': 'LaVergne', 'city': 'LaVergne', 'state': 'TN', 'position': 'WR', 'height': 74.0, 'weight': '200', 'compRating': '0.8494', 'compStars': 3, 'nationalRank': '856', 'positionRank': '125', 'stateRank': '25', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '122', '247stateRank': '32'}, {'school': 'tennessee', 'year': '2017', 'playerName': 'Jacquez Jones', 'highSchool': 'Clearwater', 'city': 'Clearwater', 'state': 'FL', 'position': 'WR', 'height': 71.0, 'weight': '170', 'compRating': '0.8469', 'compStars': 3, 'nationalRank': '926', 'positionRank': '134', 'stateRank': '131', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '161', '247stateRank': '170'}, {'school': 'tennessee', 'year': '2017', 'playerName': 'Shawn Shamburger', 'highSchool': 'Colquitt County', 'city': 'Moultrie', 'state': 'GA', 'position': 'CB', 'height': 71.5, 'weight': '189', 'compRating': '0.8440', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '111', 'stateRank': '101', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '94', '247stateRank': '90'}, {'school': 'tennessee', 'year': '2017', 'playerName': 'James Brown', 'highSchool': 'Jones', 'city': 'Orlando', 'state': 'FL', 'position': 'TE', 'height': 75.0, 'weight': '225', 'compRating': '0.8421', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '51', 'stateRank': '150', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '69', '247stateRank': '226'}, {'school': 'tennessee', 'year': '2017', 'playerName': 'Brent Cimaglia', 'highSchool': 'Fred J Page', 'city': 'Franklin', 'state': 'TN', 'position': 'K', 'height': 72.0, 'weight': '215', 'compRating': '0.8296', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '7', 'stateRank': '34', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '6', '247stateRank': '50'}, {'school': 'tennessee', 'year': '2017', 'playerName': 'Will McBride', 'highSchool': 'Clear Springs', 'city': 'League City', 'state': 'TX', 'position': 'DUAL', 'height': 73.0, 'weight': '190', 'compRating': '0.8268', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '29', 'stateRank': '200', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '39', '247stateRank': '216'}, {'school': 'tennessee', 'year': '2017', 'playerName': 'Tim Jordan', 'highSchool': 'Bartow', 'city': 'Bartow', 'state': 'FL', 'position': 'RB', 'height': 71.0, 'weight': '189', 'compRating': '0.8179', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '92', 'stateRank': '236', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '40', '247stateRank': '93'}, {'school': 'tennessee', 'year': '2017', 'playerName': 'Marquez Bembry', 'highSchool': 'Mount Vernon Presbyterian', 'city': 'Atlanta', 'state': 'GA', 'position': 'ATH', 'height': 75.0, 'weight': '214', 'compRating': '0.8650', 'compStars': 3, 'nationalRank': '552', 'positionRank': '39', 'stateRank': '54', '247Rating': ' 87 ', '247Stars': 3, '247nationalRank': '41', '247positionRank': '1', '247stateRank': '8'}, {'school': 'florida', 'year': '2002', 'playerName': 'Ciatrick Fason', 'highSchool': 'Duncan U. Fletcher', 'city': 'Neptune Beach', 'state': 'FL', 'position': 'RB', 'height': 72.0, 'weight': '210', 'compRating': '0.9970', 'compStars': 5, 'nationalRank': '9', 'positionRank': '2', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2002', 'playerName': 'Gavin Dickey', 'highSchool': 'Lincoln', 'city': 'Tallahassee', 'state': 'FL', 'position': 'DUAL', 'height': 72.0, 'weight': '190', 'compRating': '0.9821', 'compStars': 4, 'nationalRank': '42', 'positionRank': '4', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2002', 'playerName': 'DeShawn Wynn', 'highSchool': 'Reading Community', 'city': 'Cincinnati', 'state': 'OH', 'position': 'RB', 'height': 72.0, 'weight': '215', 'compRating': '0.9789', 'compStars': 4, 'nationalRank': '48', 'positionRank': '6', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2002', 'playerName': 'Randy Hand', 'highSchool': 'Estero', 'city': 'Estero', 'state': 'FL', 'position': 'OT', 'height': 78.0, 'weight': '300', 'compRating': '0.9620', 'compStars': 4, 'nationalRank': '91', 'positionRank': '7', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2002', 'playerName': 'Jemalle Cornelius', 'highSchool': 'Fort Meade', 'city': 'Fort Meade', 'state': 'FL', 'position': 'ATH', 'height': 73.0, 'weight': '175', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '147', 'positionRank': '11', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2002', 'playerName': 'Taurean Charles', 'highSchool': 'Northwestern', 'city': 'Miami', 'state': 'FL', 'position': 'WDE', 'height': 75.0, 'weight': '230', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '168', 'positionRank': '10', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2002', 'playerName': 'Brian Crum', 'highSchool': 'Camden County', 'city': 'Kingsland', 'state': 'GA', 'position': 'S', 'height': 75.0, 'weight': '210', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '203', 'positionRank': '11', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2002', 'playerName': 'Ryan Carter', 'highSchool': 'South Lake', 'city': 'Groveland', 'state': 'FL', 'position': 'OT', 'height': 77.0, 'weight': '326', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '206', 'positionRank': '17', 'stateRank': '30', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2002', 'playerName': 'Channing Crowder', 'highSchool': 'North Springs', 'city': 'Atlanta', 'state': 'GA', 'position': 'OLB', 'height': 74.0, 'weight': '220', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '242', 'positionRank': '14', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2002', 'playerName': 'Reggie Lewis', 'highSchool': 'First Coast', 'city': 'Jacksonville', 'state': 'FL', 'position': 'WR', 'height': 71.0, 'weight': '180', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '338', 'positionRank': '31', 'stateRank': '46', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2002', 'playerName': 'Dallas Baker', 'highSchool': 'Northfield Mount Hermon', 'city': 'Northfield', 'state': 'MA', 'position': 'WR', 'height': 76.0, 'weight': '185', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '455', 'positionRank': '42', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2002', 'playerName': 'Ray McDonald', 'highSchool': 'Glades Central', 'city': 'Belle Glade', 'state': 'FL', 'position': 'SDE', 'height': 76.0, 'weight': '245', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '483', 'positionRank': '28', 'stateRank': '64', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2002', 'playerName': 'Jimtavis Walker', 'highSchool': 'Statesboro', 'city': 'Statesboro', 'state': 'GA', 'position': 'APB', 'height': 70.0, 'weight': '195', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '525', 'positionRank': '18', 'stateRank': '36', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2002', 'playerName': 'Kenneth Tookes', 'highSchool': 'First Coast', 'city': 'Jacksonville', 'state': 'FL', 'position': 'WR', 'height': 74.0, 'weight': '180', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '573', 'positionRank': '59', 'stateRank': '70', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2002', 'playerName': 'Patrick Dosh', 'highSchool': 'Benedictine', 'city': 'Richmond', 'state': 'VA', 'position': 'PRO', 'height': 75.0, 'weight': '205', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '585', 'positionRank': '22', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2002', 'playerName': 'Nicolaus Brooks', 'highSchool': 'Northside', 'city': 'Columbus', 'state': 'GA', 'position': 'CB', 'height': 74.0, 'weight': '180', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '589', 'positionRank': '42', 'stateRank': '41', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2002', 'playerName': 'Steve Harris', 'highSchool': 'Coral Gables Senior', 'city': 'Miami', 'state': 'FL', 'position': 'WDE', 'height': 76.0, 'weight': '220', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '731', 'positionRank': '36', 'stateRank': '78', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2002', 'playerName': 'Jermaine McCollum', 'highSchool': 'Miami Southridge', 'city': 'Miami', 'state': 'FL', 'position': 'CB', 'height': 70.0, 'weight': '165', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '786', 'positionRank': '56', 'stateRank': '83', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2002', 'playerName': 'MacKenzie Pierre', 'highSchool': 'Booker T. Washington', 'city': 'Miami', 'state': 'FL', 'position': 'SDE', 'height': 76.0, 'weight': '240', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '76', 'stateRank': '139', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2002', 'playerName': 'Terrance Holmes', 'highSchool': 'Glassboro', 'city': 'Glassboro', 'state': 'NJ', 'position': 'WR', 'height': 70.0, 'weight': '170', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '164', 'stateRank': '40', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2002', 'playerName': 'Tremaine McCollum', 'highSchool': 'Miami Southridge', 'city': 'Miami', 'state': 'FL', 'position': 'CB', 'height': 70.0, 'weight': '165', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '151', 'stateRank': '150', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2002', 'playerName': 'Todd Bunce', 'highSchool': 'Southeast', 'city': 'Bradenton', 'state': 'FL', 'position': 'OG', 'height': 76.0, 'weight': '278', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '142', 'stateRank': '158', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2017', 'playerName': 'Anthony Hines', 'highSchool': 'Plano East', 'city': 'Plano', 'state': 'TX', 'position': 'ILB', 'height': 74.5, 'weight': '222', 'compRating': '0.9691', 'compStars': 4, 'nationalRank': '65', 'positionRank': '2', 'stateRank': '8', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '137', '247positionRank': '6', '247stateRank': '19'}, {'school': 'texas-am', 'year': '2017', 'playerName': 'Jhamon Ausbon', 'highSchool': 'IMG Academy', 'city': 'Bradenton', 'state': 'FL', 'position': 'WR', 'height': 74.5, 'weight': '217', 'compRating': '0.9648', 'compStars': 4, 'nationalRank': '73', 'positionRank': '10', 'stateRank': '14', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '64', '247positionRank': '10', '247stateRank': '9'}, {'school': 'texas-am', 'year': '2017', 'playerName': 'Kellen Mond', 'highSchool': 'IMG Academy', 'city': 'Bradenton', 'state': 'FL', 'position': 'DUAL', 'height': 74.5, 'weight': '201', 'compRating': '0.9498', 'compStars': 4, 'nationalRank': '108', 'positionRank': '3', 'stateRank': '20', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '7', '247stateRank': '35'}, {'school': 'texas-am', 'year': '2017', 'playerName': 'Derrick Tucker', 'highSchool': 'Manvel', 'city': 'Manvel', 'state': 'TX', 'position': 'S', 'height': 74.0, 'weight': '194', 'compRating': '0.9303', 'compStars': 4, 'nationalRank': '165', 'positionRank': '19', 'stateRank': '27', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '155', '247positionRank': '18', '247stateRank': '22'}, {'school': 'texas-am', 'year': '2017', 'playerName': 'Hezekiah Jones', 'highSchool': 'Stafford', 'city': 'Stafford', 'state': 'TX', 'position': 'WR', 'height': 72.0, 'weight': '193', 'compRating': '0.9243', 'compStars': 4, 'nationalRank': '187', 'positionRank': '30', 'stateRank': '31', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '54', '247stateRank': '55'}, {'school': 'texas-am', 'year': '2017', 'playerName': 'Grayson Reed', 'highSchool': 'Cy Creek', 'city': 'Houston', 'state': 'TX', 'position': 'OT', 'height': 77.0, 'weight': '304', 'compRating': '0.9103', 'compStars': 4, 'nationalRank': '237', 'positionRank': '22', 'stateRank': '38', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '196', '247positionRank': '23', '247stateRank': '27'}, {'school': 'texas-am', 'year': '2017', 'playerName': 'Jayden Peevy', 'highSchool': 'Bellaire', 'city': 'Bellaire', 'state': 'TX', 'position': 'DT', 'height': 78.0, 'weight': '279', 'compRating': '0.9065', 'compStars': 4, 'nationalRank': '254', 'positionRank': '15', 'stateRank': '44', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '108', '247positionRank': '7', '247stateRank': '15'}, {'school': 'texas-am', 'year': '2017', 'playerName': 'Santino Marchiol', 'highSchool': 'IMG Academy', 'city': 'Bradenton', 'state': 'FL', 'position': 'ILB', 'height': 74.0, 'weight': '222', 'compRating': '0.8919', 'compStars': 4, 'nationalRank': '322', 'positionRank': '17', 'stateRank': '41', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '24', '247stateRank': '55'}, {'school': 'texas-am', 'year': '2017', 'playerName': 'Keldrick Carper', 'highSchool': 'Plain Dealing', 'city': 'Plain Dealing', 'state': 'LA', 'position': 'S', 'height': 75.0, 'weight': '185', 'compRating': '0.8893', 'compStars': 3, 'nationalRank': '345', 'positionRank': '25', 'stateRank': '13', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '45', '247stateRank': '26'}, {'school': 'texas-am', 'year': '2017', 'playerName': 'Buddy Johnson', 'highSchool': 'Kimball', 'city': 'Dallas', 'state': 'TX', 'position': 'OLB', 'height': 73.0, 'weight': '210', 'compRating': '0.8878', 'compStars': 3, 'nationalRank': '352', 'positionRank': '19', 'stateRank': '51', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '34', '247stateRank': '67'}, {'school': 'texas-am', 'year': '2017', 'playerName': 'Camron Buckley', 'highSchool': 'Cedar Hill', 'city': 'Cedar Hill', 'state': 'TX', 'position': 'WR', 'height': 73.0, 'weight': '186', 'compRating': '0.8853', 'compStars': 3, 'nationalRank': '372', 'positionRank': '55', 'stateRank': '52', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '95', '247stateRank': '99'}, {'school': 'texas-am', 'year': '2017', 'playerName': 'Roshauud Paul', 'highSchool': 'Bremond', 'city': 'Bremond', 'state': 'TX', 'position': 'WR', 'height': 72.0, 'weight': '170', 'compRating': '0.8815', 'compStars': 3, 'nationalRank': '400', 'positionRank': '58', 'stateRank': '55', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '61', '247stateRank': '59'}, {'school': 'texas-am', 'year': '2017', 'playerName': 'Micheal Clemons', 'highSchool': 'Cisco College', 'city': 'Cisco', 'state': 'TX', 'position': 'SDE', 'height': 78.0, 'weight': '240', 'compRating': '0.8787', 'compStars': 3, 'nationalRank': '22', 'positionRank': '3', 'stateRank': '5', '247Rating': ' 89 ', '247Stars': 3, '247nationalRank': '19', '247positionRank': '4', '247stateRank': '4'}, {'school': 'texas-am', 'year': '2017', 'playerName': 'Myles Jones', 'highSchool': 'Magnolia West', 'city': 'Magnolia', 'state': 'TX', 'position': 'S', 'height': 76.0, 'weight': '180', 'compRating': '0.8761', 'compStars': 3, 'nationalRank': '440', 'positionRank': '31', 'stateRank': '64', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '29', '247stateRank': '49'}, {'school': 'texas-am', 'year': '2017', 'playerName': 'Camron Horry', 'highSchool': 'Taylor', 'city': 'Katy', 'state': 'TX', 'position': 'TE', 'height': 77.0, 'weight': '261', 'compRating': '0.8700', 'compStars': 3, 'nationalRank': '485', 'positionRank': '18', 'stateRank': '67', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '52', '247stateRank': '141'}, {'school': 'texas-am', 'year': '2017', 'playerName': 'Tyree Johnson', 'highSchool': "St. John's", 'city': 'Washington', 'state': 'DC', 'position': 'WDE', 'height': 75.5, 'weight': '247', 'compRating': '0.8695', 'compStars': 3, 'nationalRank': '494', 'positionRank': '32', 'stateRank': '4', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '40', '247stateRank': '6'}, {'school': 'texas-am', 'year': '2017', 'playerName': 'Devin Morris', 'highSchool': 'Caldwell', 'city': 'Caldwell', 'state': 'TX', 'position': 'CB', 'height': 74.0, 'weight': '175', 'compRating': '0.8692', 'compStars': 3, 'nationalRank': '496', 'positionRank': '49', 'stateRank': '68', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '218', '247positionRank': '25', '247stateRank': '30'}, {'school': 'texas-am', 'year': '2017', 'playerName': 'Adrian Wolford', 'highSchool': 'Meeker', 'city': 'Meeker', 'state': 'OK', 'position': 'OG', 'height': 77.0, 'weight': '310', 'compRating': '0.8665', 'compStars': 3, 'nationalRank': '532', 'positionRank': '26', 'stateRank': '11', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '28', '247stateRank': '8'}, {'school': 'texas-am', 'year': '2017', 'playerName': 'Keynel McZeal', 'highSchool': 'Port Neches-Groves', 'city': 'Port Neches', 'state': 'TX', 'position': 'TE', 'height': 75.0, 'weight': '224', 'compRating': '0.8564', 'compStars': 3, 'nationalRank': '697', 'positionRank': '31', 'stateRank': '99', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '51', '247stateRank': '134'}, {'school': 'texas-am', 'year': '2017', 'playerName': 'Dan Moore', 'highSchool': 'West Brook', 'city': 'Beaumont', 'state': 'TX', 'position': 'OG', 'height': 77.0, 'weight': '315', 'compRating': '0.8532', 'compStars': 3, 'nationalRank': '758', 'positionRank': '38', 'stateRank': '105', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '22', '247stateRank': '45'}, {'school': 'texas-am', 'year': '2017', 'playerName': 'Jacob Kibodi', 'highSchool': 'Christian Life Academy', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'RB', 'height': 74.0, 'weight': '198', 'compRating': '0.8488', 'compStars': 3, 'nationalRank': '872', 'positionRank': '47', 'stateRank': '34', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '45', '247stateRank': '40'}, {'school': 'texas-am', 'year': '2017', 'playerName': 'Connor Blumrick', 'highSchool': 'Pearland', 'city': 'Pearland', 'state': 'TX', 'position': 'PRO', 'height': 78.0, 'weight': '203', 'compRating': '0.8462', 'compStars': 3, 'nationalRank': '953', 'positionRank': '38', 'stateRank': '127', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '43', '247stateRank': '152'}, {'school': 'texas-am', 'year': '2017', 'playerName': 'Josh Rogers', 'highSchool': 'Houston Christian', 'city': 'Houston', 'state': 'TX', 'position': 'DT', 'height': 77.0, 'weight': '290', 'compRating': '0.8461', 'compStars': 3, 'nationalRank': '957', 'positionRank': '66', 'stateRank': '129', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '86', '247stateRank': '174'}, {'school': 'texas-am', 'year': '2017', 'playerName': 'Jared Hocker', 'highSchool': 'Birdville', 'city': 'North Richland Hills', 'state': 'TX', 'position': 'OT', 'height': 77.0, 'weight': '295', 'compRating': '0.8452', 'compStars': 3, 'nationalRank': '981', 'positionRank': '87', 'stateRank': '133', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '134', '247stateRank': '186'}, {'school': 'texas-am', 'year': '2017', 'playerName': 'Ondario Robinson', 'highSchool': 'Hutto', 'city': 'Hutto', 'state': 'TX', 'position': 'SDE', 'height': 75.5, 'weight': '236', 'compRating': '0.8426', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '49', 'stateRank': '146', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '33', '247stateRank': '105'}, {'school': 'texas-am', 'year': '2017', 'playerName': 'Carson Green', 'highSchool': 'Southlake Carroll', 'city': 'Southlake', 'state': 'TX', 'position': 'OT', 'height': 77.0, 'weight': '285', 'compRating': '0.8381', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '108', 'stateRank': '161', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '119', '247stateRank': '162'}, {'school': 'texas-am', 'year': '2017', 'playerName': 'Debione Renfro', 'highSchool': 'Pearland', 'city': 'Pearland', 'state': 'TX', 'position': 'S', 'height': 74.0, 'weight': '180', 'compRating': '0.8221', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '117', 'stateRank': '219', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '112', '247stateRank': '192'}, {'school': 'texas-am', 'year': '2017', 'playerName': 'Antonio Howard', 'highSchool': 'Independence C.C.', 'city': 'Independence', 'state': 'KS', 'position': 'CB', 'height': 70.0, 'weight': '186', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '214', 'positionRank': '26', 'stateRank': '30', '247Rating': ' 80 ', '247Stars': 3, '247nationalRank': '199', '247positionRank': '24', '247stateRank': '29'}, {'school': 'alabama', 'year': '2017', 'playerName': 'Najee Harris', 'highSchool': 'Antioch', 'city': 'Antioch', 'state': 'CA', 'position': 'RB', 'height': 75.0, 'weight': '226', 'compRating': '0.9984', 'compStars': 5, 'nationalRank': '2', 'positionRank': '1', 'stateRank': '2', '247Rating': ' 99 ', '247Stars': 5, '247nationalRank': '9', '247positionRank': '2', '247stateRank': '2'}, {'school': 'alabama', 'year': '2017', 'playerName': 'Alex Leatherwood', 'highSchool': 'Booker T. Washington', 'city': 'Pensacola', 'state': 'FL', 'position': 'OT', 'height': 78.0, 'weight': '327', 'compRating': '0.9981', 'compStars': 5, 'nationalRank': '4', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 99 ', '247Stars': 5, '247nationalRank': '3', '247positionRank': '2', '247stateRank': '1'}, {'school': 'alabama', 'year': '2017', 'playerName': 'Dylan Moses', 'highSchool': 'IMG Academy', 'city': 'Bradenton', 'state': 'FL', 'position': 'OLB', 'height': 74.5, 'weight': '235', 'compRating': '0.9922', 'compStars': 5, 'nationalRank': '13', 'positionRank': '2', 'stateRank': '3', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '32', '247positionRank': '2', '247stateRank': '4'}, {'school': 'alabama', 'year': '2017', 'playerName': 'Jerry Jeudy', 'highSchool': 'Deerfield Beach', 'city': 'Deerfield Beach', 'state': 'FL', 'position': 'WR', 'height': 73.0, 'weight': '177', 'compRating': '0.9881', 'compStars': 5, 'nationalRank': '21', 'positionRank': '3', 'stateRank': '5', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '35', '247positionRank': '5', '247stateRank': '5'}, {'school': 'alabama', 'year': '2017', 'playerName': 'LaBryan Ray', 'highSchool': 'James Clemens', 'city': 'Madison', 'state': 'AL', 'position': 'SDE', 'height': 76.0, 'weight': '260', 'compRating': '0.9867', 'compStars': 5, 'nationalRank': '28', 'positionRank': '2', 'stateRank': '1', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '15', '247positionRank': '2', '247stateRank': '1'}, {'school': 'alabama', 'year': '2017', 'playerName': 'Tua Tagovailoa', 'highSchool': 'St. Louis', 'city': 'Honolulu', 'state': 'HI', 'position': 'DUAL', 'height': 73.0, 'weight': '212', 'compRating': '0.9843', 'compStars': 5, 'nationalRank': '32', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '22', '247positionRank': '1', '247stateRank': '1'}, {'school': 'alabama', 'year': '2017', 'playerName': 'Jedrick Wills', 'highSchool': 'Lafayette', 'city': 'Lexington', 'state': 'KY', 'position': 'OT', 'height': 77.0, 'weight': '318', 'compRating': '0.9831', 'compStars': 4, 'nationalRank': '34', 'positionRank': '7', 'stateRank': '1', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '56', '247positionRank': '9', '247stateRank': '1'}, {'school': 'alabama', 'year': '2017', 'playerName': 'Xavier McKinney', 'highSchool': 'Roswell', 'city': 'Roswell', 'state': 'GA', 'position': 'S', 'height': 73.0, 'weight': '192', 'compRating': '0.9723', 'compStars': 4, 'nationalRank': '58', 'positionRank': '6', 'stateRank': '8', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '54', '247positionRank': '6', '247stateRank': '6'}, {'school': 'alabama', 'year': '2017', 'playerName': 'DeVonta Smith', 'highSchool': 'Amite', 'city': 'Amite', 'state': 'LA', 'position': 'WR', 'height': 73.0, 'weight': '160', 'compRating': '0.9717', 'compStars': 4, 'nationalRank': '62', 'positionRank': '9', 'stateRank': '2', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '29', '247positionRank': '3', '247stateRank': '1'}, {'school': 'alabama', 'year': '2017', 'playerName': 'Henry Ruggs III', 'highSchool': 'Robert E. Lee', 'city': 'Montgomery', 'state': 'AL', 'position': 'WR', 'height': 72.0, 'weight': '175', 'compRating': '0.9640', 'compStars': 4, 'nationalRank': '75', 'positionRank': '11', 'stateRank': '2', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '24', '247positionRank': '1', '247stateRank': '3'}, {'school': 'alabama', 'year': '2017', 'playerName': 'VanDarius Cowan', 'highSchool': 'Palm Beach Gardens', 'city': 'Palm Beach Gardens', 'state': 'FL', 'position': 'OLB', 'height': 76.0, 'weight': '226', 'compRating': '0.9628', 'compStars': 4, 'nationalRank': '78', 'positionRank': '4', 'stateRank': '15', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '93', '247positionRank': '4', '247stateRank': '15'}, {'school': 'alabama', 'year': '2017', 'playerName': 'Tyrell Shavers', 'highSchool': 'Lewisville', 'city': 'Lewisville', 'state': 'TX', 'position': 'WR', 'height': 78.0, 'weight': '196', 'compRating': '0.9587', 'compStars': 4, 'nationalRank': '88', 'positionRank': '12', 'stateRank': '11', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '70', '247positionRank': '12', '247stateRank': '9'}, {'school': 'alabama', 'year': '2017', 'playerName': 'Jarez Parks', 'highSchool': 'Sebastian River', 'city': 'Sebastian', 'state': 'FL', 'position': 'WDE', 'height': 74.75, 'weight': '253', 'compRating': '0.9575', 'compStars': 4, 'nationalRank': '91', 'positionRank': '7', 'stateRank': '17', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '145', '247positionRank': '10', '247stateRank': '22'}, {'school': 'alabama', 'year': '2017', 'playerName': 'Isaiah Buggs', 'highSchool': 'Mississippi Gulf Coast C.C.', 'city': 'Perkinston', 'state': 'MS', 'position': 'SDE', 'height': 77.0, 'weight': '280', 'compRating': '0.9551', 'compStars': 4, 'nationalRank': '2', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '68', '247stateRank': '72'}, {'school': 'alabama', 'year': '2017', 'playerName': 'Markail Benton', 'highSchool': 'Central', 'city': 'Phenix City', 'state': 'AL', 'position': 'OLB', 'height': 73.5, 'weight': '237', 'compRating': '0.9532', 'compStars': 4, 'nationalRank': '100', 'positionRank': '7', 'stateRank': '4', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '157', '247positionRank': '7', '247stateRank': '6'}, {'school': 'alabama', 'year': '2017', 'playerName': 'Phidarian Mathis', 'highSchool': 'Neville', 'city': 'Monroe', 'state': 'LA', 'position': 'DT', 'height': 76.0, 'weight': '287', 'compRating': '0.9528', 'compStars': 4, 'nationalRank': '101', 'positionRank': '7', 'stateRank': '4', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '197', '247positionRank': '13', '247stateRank': '7'}, {'school': 'alabama', 'year': '2017', 'playerName': 'Christopher Allen', 'highSchool': 'Southern University Lab School', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'ILB', 'height': 76.0, 'weight': '234', 'compRating': '0.9520', 'compStars': 4, 'nationalRank': '104', 'positionRank': '4', 'stateRank': '5', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '57', '247positionRank': '3', '247stateRank': '2'}, {'school': 'alabama', 'year': '2017', 'playerName': 'Daniel Wright', 'highSchool': 'Boyd Anderson', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'S', 'height': 73.0, 'weight': '187', 'compRating': '0.9436', 'compStars': 4, 'nationalRank': '122', 'positionRank': '16', 'stateRank': '22', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '201', '247positionRank': '20', '247stateRank': '25'}, {'school': 'alabama', 'year': '2017', 'playerName': 'Brian Robinson', 'highSchool': 'Hillcrest', 'city': 'Tuscaloosa', 'state': 'AL', 'position': 'RB', 'height': 73.0, 'weight': '224', 'compRating': '0.9361', 'compStars': 4, 'nationalRank': '145', 'positionRank': '8', 'stateRank': '6', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '224', '247positionRank': '15', '247stateRank': '10'}, {'school': 'alabama', 'year': '2017', 'playerName': 'Chadarius Townsend', 'highSchool': 'Tanner', 'city': 'Tanner', 'state': 'AL', 'position': 'ATH', 'height': 72.0, 'weight': '190', 'compRating': '0.9259', 'compStars': 4, 'nationalRank': '175', 'positionRank': '5', 'stateRank': '7', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '211', '247positionRank': '10', '247stateRank': '9'}, {'school': 'alabama', 'year': '2017', 'playerName': 'Kendall Randolph', 'highSchool': 'Bob Jones', 'city': 'Madison', 'state': 'AL', 'position': 'OG', 'height': 76.0, 'weight': '310', 'compRating': '0.9252', 'compStars': 4, 'nationalRank': '180', 'positionRank': '12', 'stateRank': '9', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '198', '247positionRank': '13', '247stateRank': '7'}, {'school': 'alabama', 'year': '2017', 'playerName': 'Elliot Baker', 'highSchool': 'City College of San Francisco', 'city': 'San Francisco', 'state': 'CA', 'position': 'OT', 'height': 79.0, 'weight': '295', 'compRating': '0.9223', 'compStars': 4, 'nationalRank': '4', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '10', '247positionRank': '2', '247stateRank': '3'}, {'school': 'alabama', 'year': '2017', 'playerName': 'Major Tennison', 'highSchool': 'Bullard', 'city': 'Bullard', 'state': 'TX', 'position': 'TE', 'height': 78.0, 'weight': '230', 'compRating': '0.8985', 'compStars': 4, 'nationalRank': '284', 'positionRank': '9', 'stateRank': '45', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '11', '247stateRank': '53'}, {'school': 'alabama', 'year': '2017', 'playerName': 'Kedrick James', 'highSchool': 'La Vega', 'city': 'Waco', 'state': 'TX', 'position': 'TE', 'height': 76.5, 'weight': '245', 'compRating': '0.8921', 'compStars': 4, 'nationalRank': '319', 'positionRank': '12', 'stateRank': '48', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '30', '247stateRank': '98'}, {'school': 'alabama', 'year': '2017', 'playerName': 'Mac Jones', 'highSchool': 'The Bolles School', 'city': 'Jacksonville', 'state': 'FL', 'position': 'PRO', 'height': 74.0, 'weight': '180', 'compRating': '0.8815', 'compStars': 3, 'nationalRank': '399', 'positionRank': '18', 'stateRank': '52', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '17', '247stateRank': '67'}, {'school': 'alabama', 'year': '2017', 'playerName': 'Kyriq McDonald', 'highSchool': 'James Clemens', 'city': 'Madison', 'state': 'AL', 'position': 'CB', 'height': 71.0, 'weight': '185', 'compRating': '0.8705', 'compStars': 3, 'nationalRank': '477', 'positionRank': '45', 'stateRank': '22', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '49', '247stateRank': '25'}, {'school': 'alabama', 'year': '2017', 'playerName': 'Hunter Brannon', 'highSchool': 'Cullman', 'city': 'Cullman', 'state': 'AL', 'position': 'OC', 'height': 76.0, 'weight': '290', 'compRating': '0.8463', 'compStars': 3, 'nationalRank': '943', 'positionRank': '12', 'stateRank': '42', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '10', '247stateRank': '46'}, {'school': 'alabama', 'year': '2017', 'playerName': 'Joseph Bulovas', 'highSchool': 'Mandeville', 'city': 'Mandeville', 'state': 'LA', 'position': 'K', 'height': 72.0, 'weight': '205', 'compRating': '0.8321', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '6', 'stateRank': '49', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '3', '247stateRank': '76'}, {'school': 'alabama', 'year': '2017', 'playerName': 'Thomas Fletcher', 'highSchool': 'IMG Academy', 'city': 'Bradenton', 'state': 'FL', 'position': 'LS', 'height': 73.0, 'weight': '215', 'compRating': '0.7853', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '3', 'stateRank': '386', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '1', '247stateRank': '315'}, {'school': 'vanderbilt', 'year': '2017', 'playerName': 'Jacob Free', 'highSchool': 'Brantley', 'city': 'Brantley', 'state': 'AL', 'position': 'PRO', 'height': 77.0, 'weight': '200', 'compRating': '0.8609', 'compStars': 3, 'nationalRank': '611', 'positionRank': '24', 'stateRank': '31'}, {'school': 'vanderbilt', 'year': '2017', 'playerName': 'Dayo Odeyingbo', 'highSchool': 'Ranchview', 'city': 'Carrollton', 'state': 'TX', 'position': 'SDE', 'height': 76.0, 'weight': '252', 'compRating': '0.8591', 'compStars': 3, 'nationalRank': '636', 'positionRank': '27', 'stateRank': '88', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '29', '247stateRank': '91'}, {'school': 'vanderbilt', 'year': '2017', 'playerName': 'Bryce Bailey', 'highSchool': 'Castle', 'city': 'Newburgh', 'state': 'IN', 'position': 'OT', 'height': 77.0, 'weight': '290', 'compRating': '0.8590', 'compStars': 3, 'nationalRank': '646', 'positionRank': '67', 'stateRank': '6', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '84', '247stateRank': '15'}, {'school': 'vanderbilt', 'year': '2017', 'playerName': 'Dimitri Moore', 'highSchool': 'Cedar Hill', 'city': 'Cedar Hill', 'state': 'TX', 'position': 'OLB', 'height': 74.0, 'weight': '195', 'compRating': '0.8577', 'compStars': 3, 'nationalRank': '671', 'positionRank': '45', 'stateRank': '94', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '41', '247stateRank': '77'}, {'school': 'vanderbilt', 'year': '2017', 'playerName': 'Randall Haynie', 'highSchool': 'Cardinal Gibbons', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'CB', 'height': 72.0, 'weight': '178', 'compRating': '0.8559', 'compStars': 3, 'nationalRank': '703', 'positionRank': '69', 'stateRank': '92', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '70', '247stateRank': '92'}, {'school': 'vanderbilt', 'year': '2017', 'playerName': 'Jalen Pinkney', 'highSchool': 'Norcross', 'city': 'Norcross', 'state': 'GA', 'position': 'WDE', 'height': 75.5, 'weight': '235', 'compRating': '0.8506', 'compStars': 3, 'nationalRank': '828', 'positionRank': '47', 'stateRank': '83', '247Rating': ' 84 ', '247Stars': 3, '247nationalRank': '136', '247positionRank': '10', '247stateRank': '35'}, {'school': 'vanderbilt', 'year': '2017', 'playerName': 'Colin Anderson', 'highSchool': 'Brooks', 'city': 'Killen', 'state': 'AL', 'position': 'OLB', 'height': 74.0, 'weight': '210', 'compRating': '0.8504', 'compStars': 3, 'nationalRank': '830', 'positionRank': '57', 'stateRank': '39', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '50', '247stateRank': '38'}, {'school': 'vanderbilt', 'year': '2017', 'playerName': 'Tae Daley', 'highSchool': 'Northside', 'city': 'Warner Robins', 'state': 'GA', 'position': 'S', 'height': 71.0, 'weight': '175', 'compRating': '0.8488', 'compStars': 3, 'nationalRank': '871', 'positionRank': '64', 'stateRank': '89', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '64', '247stateRank': '81'}, {'school': 'vanderbilt', 'year': '2017', 'playerName': 'Cole Clemens', 'highSchool': 'Bingham', 'city': 'South Jordan', 'state': 'UT', 'position': 'OT', 'height': 77.0, 'weight': '286', 'compRating': '0.8457', 'compStars': 3, 'nationalRank': '968', 'positionRank': '86', 'stateRank': '14', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '79', '247stateRank': '13'}, {'school': 'vanderbilt', 'year': '2017', 'playerName': 'Stone Edwards', 'highSchool': 'Orange', 'city': 'Hillsborough', 'state': 'NC', 'position': 'SDE', 'height': 76.0, 'weight': '240', 'compRating': '0.8432', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '48', 'stateRank': '33', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '42', '247stateRank': '31'}, {'school': 'vanderbilt', 'year': '2017', 'playerName': 'Michael Owusu', 'highSchool': 'Oaks Christian', 'city': 'Westlake Village', 'state': 'CA', 'position': 'OLB', 'height': 78.0, 'weight': '210', 'compRating': '0.8388', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '74', 'stateRank': '106', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '61', '247stateRank': '74'}, {'school': 'vanderbilt', 'year': '2017', 'playerName': 'Jonathan Stewart', 'highSchool': 'Mountain View', 'city': 'Lawrenceville', 'state': 'GA', 'position': 'OT', 'height': 80.0, 'weight': '292', 'compRating': '0.8360', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '112', 'stateRank': '123', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '81', '247stateRank': '92'}, {'school': 'vanderbilt', 'year': '2017', 'playerName': 'Feleti Afemui', 'highSchool': 'Maui', 'city': 'Kahului', 'state': 'HI', 'position': 'ILB', 'height': 75.0, 'weight': '222', 'compRating': '0.8350', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '53', 'stateRank': '10', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '65', '247stateRank': '10'}, {'school': 'vanderbilt', 'year': '2017', 'playerName': 'Saige Young', 'highSchool': 'Dodge City C.C.', 'city': 'Dodge City', 'state': 'KS', 'position': 'OG', 'height': 76.0, 'weight': '320', 'compRating': '0.8248', 'compStars': 3, 'nationalRank': '151', 'positionRank': '5', 'stateRank': '21'}, {'school': 'vanderbilt', 'year': '2017', 'playerName': 'Chris Pierce', 'highSchool': 'Smithfield', 'city': 'Smithfield', 'state': 'VA', 'position': 'WR', 'height': 76.0, 'weight': '212', 'compRating': '0.8247', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '214', 'stateRank': '36', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '198', '247stateRank': '41'}, {'school': 'vanderbilt', 'year': '2017', 'playerName': 'Grant Miller', 'highSchool': 'St. Thomas Aquinas', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'OT', 'height': 76.0, 'weight': '278', 'compRating': '0.8169', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '162', 'stateRank': '240', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '183', '247stateRank': '316'}, {'school': 'vanderbilt', 'year': '2017', 'playerName': 'James Bostic Jr.', 'highSchool': 'Cardinal Gibbons', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'WR', 'height': 75.0, 'weight': '200', 'compRating': '0.8141', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '252', 'stateRank': '258', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '259', '247stateRank': '288'}, {'school': 'vanderbilt', 'year': '2017', 'playerName': 'Allan George', 'highSchool': 'Andalusia', 'city': 'Andalusia', 'state': 'AL', 'position': 'CB', 'height': 74.0, 'weight': '180', 'compRating': '0.8071', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '197', 'stateRank': '62', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '170', '247stateRank': '62'}, {'school': 'vanderbilt', 'year': '2017', 'playerName': 'Jonah Buchanan', 'highSchool': 'Iolani School', 'city': 'Honolulu', 'state': 'HI', 'position': 'SDE', 'height': 75.5, 'weight': '270', 'compRating': '0.7790', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '134', 'stateRank': '19', '247Rating': ' 76 ', '247Stars': 2, '247positionRank': '143', '247stateRank': '20'}, {'school': 'vanderbilt', 'year': '2017', 'playerName': 'Brayden DeVault-Smith', 'highSchool': 'Pearl-Cohn', 'city': 'Nashville', 'state': 'TN', 'position': 'ILB', 'height': 75.0, 'weight': '205', 'compRating': '0.7731', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '137', 'stateRank': '98', '247Rating': ' 78 ', '247Stars': 2, '247positionRank': '113', '247stateRank': '76'}, {'school': 'arkansas', 'year': '2014', 'playerName': 'Bijhon Jackson', 'highSchool': 'El Dorado', 'city': 'El Dorado', 'state': 'AR', 'position': 'DT', 'height': 73.75, 'weight': '334', 'compRating': '0.9636', 'compStars': 4, 'nationalRank': '81', 'positionRank': '6', 'stateRank': '2', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '108', '247positionRank': '10', '247stateRank': '2'}, {'school': 'arkansas', 'year': '2014', 'playerName': 'Brian Wallace', 'highSchool': 'Christian Brothers College', 'city': 'Saint Louis', 'state': 'MO', 'position': 'OT', 'height': 78.0, 'weight': '305', 'compRating': '0.9596', 'compStars': 4, 'nationalRank': '90', 'positionRank': '8', 'stateRank': '1', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '37', '247positionRank': '2', '247stateRank': '1'}, {'school': 'arkansas', 'year': '2014', 'playerName': 'Jojo Robinson', 'highSchool': 'Northwestern', 'city': 'Miami', 'state': 'FL', 'position': 'ATH', 'height': 72.0, 'weight': '183', 'compRating': '0.9024', 'compStars': 4, 'nationalRank': '255', 'positionRank': '21', 'stateRank': '36', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '40', '247stateRank': '62'}, {'school': 'arkansas', 'year': '2014', 'playerName': 'Frank Ragnow', 'highSchool': 'Chanhassen', 'city': 'Chanhassen', 'state': 'MN', 'position': 'OT', 'height': 78.0, 'weight': '291', 'compRating': '0.8913', 'compStars': 4, 'nationalRank': '324', 'positionRank': '27', 'stateRank': '3', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '32', '247stateRank': '3'}, {'school': 'arkansas', 'year': '2014', 'playerName': 'Rafe Peavey', 'highSchool': 'Bolivar', 'city': 'Bolivar', 'state': 'MO', 'position': 'PRO', 'height': 74.0, 'weight': '212', 'compRating': '0.8844', 'compStars': 3, 'nationalRank': '367', 'positionRank': '20', 'stateRank': '5', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '208', '247positionRank': '13', '247stateRank': '4'}, {'school': 'arkansas', 'year': '2014', 'playerName': 'Josh Allen', 'highSchool': 'University Christian', 'city': 'Jacksonville', 'state': 'FL', 'position': 'OG', 'height': 75.0, 'weight': '285', 'compRating': '0.8721', 'compStars': 3, 'nationalRank': '467', 'positionRank': '25', 'stateRank': '68', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '20', '247stateRank': '54'}, {'school': 'arkansas', 'year': '2014', 'playerName': "Henre' Toliver", 'highSchool': 'Archbishop Rummel', 'city': 'Metairie', 'state': 'LA', 'position': 'CB', 'height': 73.0, 'weight': '165', 'compRating': '0.8700', 'compStars': 3, 'nationalRank': '485', 'positionRank': '34', 'stateRank': '22', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '26', '247stateRank': '18'}, {'school': 'arkansas', 'year': '2014', 'playerName': 'Sebastian Tretola', 'highSchool': 'Iowa Western C.C.', 'city': 'Council Bluffs', 'state': 'IA', 'position': 'OT', 'height': 77.0, 'weight': '315', 'compRating': '0.8660', 'compStars': 3, 'nationalRank': '56', 'positionRank': '11', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2014', 'playerName': 'Chris Murphy', 'highSchool': 'Lassiter', 'city': 'Marietta', 'state': 'GA', 'position': 'CB', 'height': 70.0, 'weight': '178', 'compRating': '0.8593', 'compStars': 3, 'nationalRank': '626', 'positionRank': '42', 'stateRank': '53', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '52', '247stateRank': '61'}, {'school': 'arkansas', 'year': '2014', 'playerName': 'Armon Watts', 'highSchool': 'Christian Brothers College', 'city': 'Saint Louis', 'state': 'MO', 'position': 'DT', 'height': 76.0, 'weight': '260', 'compRating': '0.8534', 'compStars': 3, 'nationalRank': '746', 'positionRank': '50', 'stateRank': '14', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '62', '247stateRank': '15'}, {'school': 'arkansas', 'year': '2014', 'playerName': 'Juan Day', 'highSchool': 'North Little Rock', 'city': 'North Little Rock', 'state': 'AR', 'position': 'RB', 'height': 73.0, 'weight': '210', 'compRating': '0.8527', 'compStars': 3, 'nationalRank': '757', 'positionRank': '46', 'stateRank': '4', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '57', '247stateRank': '8'}, {'school': 'arkansas', 'year': '2014', 'playerName': 'Santos Ramirez', 'highSchool': 'Evangel Christian Academy', 'city': 'Shreveport', 'state': 'LA', 'position': 'S', 'height': 74.0, 'weight': '180', 'compRating': '0.8481', 'compStars': 3, 'nationalRank': '840', 'positionRank': '70', 'stateRank': '31', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '64', '247stateRank': '30'}, {'school': 'arkansas', 'year': '2014', 'playerName': 'Kendrick Edwards', 'highSchool': 'Norland', 'city': 'Miami', 'state': 'FL', 'position': 'WR', 'height': 78.0, 'weight': '205', 'compRating': '0.8458', 'compStars': 3, 'nationalRank': '888', 'positionRank': '118', 'stateRank': '129', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '88', '247stateRank': '89'}, {'school': 'arkansas', 'year': '2014', 'playerName': 'Jared Cornelius', 'highSchool': 'Evangel Christian Academy', 'city': 'Shreveport', 'state': 'LA', 'position': 'WR', 'height': 72.0, 'weight': '175', 'compRating': '0.8440', 'compStars': 3, 'nationalRank': '927', 'positionRank': '123', 'stateRank': '35', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '122', '247stateRank': '34'}, {'school': 'arkansas', 'year': '2014', 'playerName': 'Jack Kraus', 'highSchool': 'Bentonville', 'city': 'Bentonville', 'state': 'AR', 'position': 'TE', 'height': 77.0, 'weight': '260', 'compRating': '0.8416', 'compStars': 3, 'nationalRank': '982', 'positionRank': '46', 'stateRank': '6', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '37', '247stateRank': '9'}, {'school': 'arkansas', 'year': '2014', 'playerName': 'Cornelius Floyd', 'highSchool': 'Gulliver Prep', 'city': 'Miami', 'state': 'FL', 'position': 'WR', 'height': 73.0, 'weight': '190', 'compRating': '0.8391', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '140', 'stateRank': '151', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '149', '247stateRank': '153'}, {'school': 'arkansas', 'year': '2014', 'playerName': 'Jake Hall', 'highSchool': 'Har-Ber', 'city': 'Springdale', 'state': 'AR', 'position': 'SDE', 'height': 77.0, 'weight': '235', 'compRating': '0.8376', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '52', 'stateRank': '7', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '35', '247stateRank': '7'}, {'school': 'arkansas', 'year': '2014', 'playerName': 'Khalia Hackett', 'highSchool': 'South Paulding', 'city': 'Douglasville', 'state': 'GA', 'position': 'S', 'height': 75.0, 'weight': '205', 'compRating': '0.8357', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '94', 'stateRank': '96', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '106', '247stateRank': '108'}, {'school': 'arkansas', 'year': '2014', 'playerName': 'Cole Hedlund', 'highSchool': 'Argyle', 'city': 'Argyle', 'state': 'TX', 'position': 'K', 'height': 70.0, 'weight': '170', 'compRating': '0.8353', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '1', 'stateRank': '142', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '3', '247stateRank': '223'}, {'school': 'arkansas', 'year': '2014', 'playerName': 'Josh Liddell', 'highSchool': 'Dollarway', 'city': 'White Hall', 'state': 'AR', 'position': 'S', 'height': 72.0, 'weight': '193', 'compRating': '0.8341', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '97', 'stateRank': '9', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '36', '247stateRank': '3'}, {'school': 'arkansas', 'year': '2014', 'playerName': 'Dwayne Eugene', 'highSchool': 'Archbishop Rummel', 'city': 'Metairie', 'state': 'LA', 'position': 'S', 'height': 73.0, 'weight': '222', 'compRating': '0.8274', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '112', 'stateRank': '47', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '70', '247stateRank': '32'}, {'school': 'arkansas', 'year': '2014', 'playerName': 'Randy Ramsey', 'highSchool': 'Dillard', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'S', 'height': 75.5, 'weight': '210', 'compRating': '0.8153', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '130', 'stateRank': '213', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '98', '247stateRank': '149'}, {'school': 'arkansas', 'year': '2014', 'playerName': 'Cody Hollister', 'highSchool': 'Arizona Western College', 'city': 'Yuma', 'state': 'AZ', 'position': 'WR', 'height': 76.0, 'weight': '205', 'compRating': '0.8069', 'compStars': 3, 'nationalRank': '204', 'positionRank': '25', 'stateRank': '16', '247Rating': ' 80 ', '247Stars': 3, '247nationalRank': '204', '247positionRank': '26', '247stateRank': '16'}, {'school': 'arkansas', 'year': '2014', 'playerName': 'Anthony Brown', 'highSchool': 'Killian', 'city': 'Miami', 'state': 'FL', 'position': 'WDE', 'height': 76.0, 'weight': '235', 'compRating': '0.7841', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '107', 'stateRank': '316', '247Rating': ' 76 ', '247Stars': 2, '247positionRank': '110', '247stateRank': '328'}, {'school': 'arkansas', 'year': '2014', 'playerName': 'Josh Williams', 'highSchool': 'Dodge City C.C.', 'city': 'Dodge City', 'state': 'KS', 'position': 'ILB', 'height': 73.0, 'weight': '225', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2014', 'playerName': 'Lane Saling', 'highSchool': 'Owasso', 'city': 'Owasso', 'state': 'OK', 'position': 'K', 'height': 68.0, 'weight': '152', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2014', 'playerName': 'Jovan Pruitt', 'highSchool': 'Bishop Dunne', 'city': 'Dallas', 'state': 'TX', 'position': 'OT', 'height': 78.0, 'weight': '290', 'compRating': '0.8861', 'compStars': 3, 'nationalRank': '358', 'positionRank': '30', 'stateRank': '45'}, {'school': 'arkansas', 'year': '2002', 'playerName': 'Marcus Whitmore', 'highSchool': 'Independence C.C.', 'city': 'Independence', 'state': 'KS', 'position': 'OLB', 'height': 74.0, 'weight': '220', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '39', 'positionRank': '1', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2002', 'playerName': 'Vickiel Vaughn', 'highSchool': 'Plano West', 'city': 'Plano', 'state': 'TX', 'position': 'S', 'height': 73.0, 'weight': '187', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '198', 'positionRank': '10', 'stateRank': '30', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2002', 'playerName': 'Cedric Washington', 'highSchool': 'Bryan', 'city': 'Bryan', 'state': 'TX', 'position': 'DUAL', 'height': 72.0, 'weight': '183', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '231', 'positionRank': '9', 'stateRank': '37', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2002', 'playerName': 'Lucas Jackson', 'highSchool': 'West Monroe', 'city': 'West Monroe', 'state': 'LA', 'position': 'ILB', 'height': 73.0, 'weight': '220', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '323', 'positionRank': '19', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2002', 'playerName': 'Gene Perry', 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'OG', 'height': 76.0, 'weight': '296', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '81', 'positionRank': '6', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2002', 'playerName': 'Reggie Banks', 'highSchool': 'Evangel Christian Academy', 'city': 'Shreveport', 'state': 'LA', 'position': 'SDE', 'height': 76.0, 'weight': '260', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '364', 'positionRank': '20', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2002', 'playerName': 'Adrian Campbell', 'highSchool': 'Berkner', 'city': 'Richardson', 'state': 'TX', 'position': 'DT', 'height': 78.0, 'weight': '255', 'compRating': '0.8451', 'compStars': 3, 'nationalRank': '383', 'positionRank': '36', 'stateRank': '57', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2002', 'playerName': 'Desmond Sims', 'highSchool': 'New Madrid', 'city': 'New Madrid', 'state': 'MO', 'position': 'WR', 'height': 74.0, 'weight': '195', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '508', 'positionRank': '49', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2002', 'playerName': 'Dedric Poole', 'highSchool': 'Little Rock Central', 'city': 'Little Rock', 'state': 'AR', 'position': 'APB', 'height': 69.0, 'weight': '184', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '520', 'positionRank': '17', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2002', 'playerName': 'Wes Murphy', 'highSchool': 'Shiloh Christian', 'city': 'Springdale', 'state': 'AR', 'position': 'WDE', 'height': 76.0, 'weight': '230', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '555', 'positionRank': '25', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2002', 'playerName': 'Chase Pressley', 'highSchool': 'Southside', 'city': 'Fort Smith', 'state': 'AR', 'position': 'DT', 'height': 76.0, 'weight': '270', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '646', 'positionRank': '46', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2002', 'playerName': 'Zac Tubbs', 'highSchool': 'Cullman', 'city': 'Cullman', 'state': 'AL', 'position': 'OT', 'height': 79.0, 'weight': '330', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '892', 'positionRank': '79', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2002', 'playerName': 'Michael Coe', 'highSchool': 'Cordova', 'city': 'Cordova', 'state': 'TN', 'position': 'WR', 'height': 74.0, 'weight': '175', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '157', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2002', 'playerName': 'Sam Olajubutu', 'highSchool': 'Keyes To Learning Charter', 'city': 'La Grange', 'state': 'CA', 'position': 'ILB', 'height': 70.0, 'weight': '205', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '85', 'stateRank': '173', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2002', 'playerName': 'Chris Baker', 'highSchool': 'Osceola', 'city': 'Osceola', 'state': 'AR', 'position': 'WR', 'height': 74.0, 'weight': '185', 'compRating': '0.9717', 'compStars': 4, 'nationalRank': '66', 'positionRank': '7', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2002', 'playerName': 'Tony Ugoh', 'highSchool': 'Westfield', 'city': 'Houston', 'state': 'TX', 'position': 'OT', 'height': 78.0, 'weight': '275', 'compRating': '0.9373', 'compStars': 4, 'nationalRank': '99', 'positionRank': '9', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2009', 'playerName': 'Morgan Newton', 'highSchool': 'Carmel', 'city': 'Carmel', 'state': 'IN', 'position': 'DUAL', 'height': 76.0, 'weight': '220', 'compRating': '0.9364', 'compStars': 4, 'nationalRank': '137', 'positionRank': '6', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2009', 'playerName': 'DeQuin Evans', 'highSchool': 'Los Angeles Harbor College', 'city': 'Wilmington', 'state': 'CA', 'position': 'WDE', 'height': 75.0, 'weight': '256', 'compRating': '0.9111', 'compStars': 4, 'nationalRank': '9', 'positionRank': '1', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2009', 'playerName': 'Ryan Mossakowski', 'highSchool': 'Centennial', 'city': 'Frisco', 'state': 'TX', 'position': 'PRO', 'height': 76.0, 'weight': '201', 'compRating': '0.8938', 'compStars': 4, 'nationalRank': '300', 'positionRank': '15', 'stateRank': '36', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2009', 'playerName': 'Chris Matthews', 'highSchool': 'Los Angeles Harbor College', 'city': 'Wilmington', 'state': 'CA', 'position': 'WR', 'height': 77.0, 'weight': '210', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '30', 'positionRank': '5', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2009', 'playerName': 'Donald Russell', 'highSchool': 'Dwyer', 'city': 'Palm Beach Gardens', 'state': 'FL', 'position': 'RB', 'height': 71.0, 'weight': '205', 'compRating': '0.8653', 'compStars': 3, 'nationalRank': '639', 'positionRank': '57', 'stateRank': '95', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2009', 'playerName': 'Larry Warford', 'highSchool': 'Madison Central', 'city': 'Richmond', 'state': 'KY', 'position': 'OG', 'height': 76.0, 'weight': '349', 'compRating': '0.8622', 'compStars': 3, 'nationalRank': '673', 'positionRank': '44', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2009', 'playerName': 'Anthony Kendrick', 'highSchool': 'Seven Lakes', 'city': 'Katy', 'state': 'TX', 'position': 'TE', 'height': 76.0, 'weight': '220', 'compRating': '0.8622', 'compStars': 3, 'nationalRank': '688', 'positionRank': '27', 'stateRank': '95', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2009', 'playerName': 'Sam Simpson', 'highSchool': 'Henry Clay', 'city': 'Lexington', 'state': 'KY', 'position': 'OC', 'height': 76.0, 'weight': '292', 'compRating': '0.8590', 'compStars': 3, 'nationalRank': '749', 'positionRank': '7', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2009', 'playerName': 'Qua Huzzie', 'highSchool': 'LaGrange Academy', 'city': 'Lagrange', 'state': 'GA', 'position': 'OLB', 'height': 71.0, 'weight': '205', 'compRating': '0.8559', 'compStars': 3, 'nationalRank': '788', 'positionRank': '65', 'stateRank': '61', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2009', 'playerName': 'Mark Crawford', 'highSchool': 'Coffeyville C.C.', 'city': 'Coffeyville', 'state': 'KS', 'position': 'DT', 'height': 73.0, 'weight': '305', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '47', 'positionRank': '12', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2009', 'playerName': "La'Rod King", 'highSchool': 'North Hardin', 'city': 'Radcliff', 'state': 'KY', 'position': 'WR', 'height': '0.0', 'weight': '0', 'compRating': '0.8448', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '123', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2009', 'playerName': 'Tristian Johnson', 'highSchool': 'LaGrange', 'city': 'Lagrange', 'state': 'GA', 'position': 'WDE', 'height': 75.0, 'weight': '222', 'compRating': '0.8385', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '45', 'stateRank': '85', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2009', 'playerName': 'Ryan Mosby', 'highSchool': 'Rockwall-Heath', 'city': 'Rockwall', 'state': 'TX', 'position': 'OLB', 'height': 72.0, 'weight': '197', 'compRating': '0.8385', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '92', 'stateRank': '179', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2009', 'playerName': 'Brian Adams', 'highSchool': 'South Forsyth', 'city': 'Cumming', 'state': 'GA', 'position': 'ATH', 'height': 76.0, 'weight': '210', 'compRating': '0.8368', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '70', 'stateRank': '86', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2009', 'playerName': 'Donte Rumph', 'highSchool': 'Fork Union Military Academy', 'city': 'Fork Union', 'state': 'VA', 'position': 'SDE', 'height': 75.0, 'weight': '260', 'compRating': '0.8324', 'compStars': 3, 'nationalRank': '30', 'positionRank': '3', 'stateRank': '25', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2009', 'playerName': 'Mister Cobble', 'highSchool': 'Louisville Central', 'city': 'Louisville', 'state': 'KY', 'position': 'DT', 'height': 72.0, 'weight': '270', 'compRating': '0.8149', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '98', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2009', 'playerName': 'Jordan Aumiller', 'highSchool': 'Boyle County', 'city': 'Danville', 'state': 'KY', 'position': 'TE', 'height': 76.0, 'weight': '199', 'compRating': '0.8118', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '63', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2009', 'playerName': 'Justin Bean', 'highSchool': 'Tupelo', 'city': 'Tupelo', 'state': 'MS', 'position': 'WR', 'height': 74.0, 'weight': '185', 'compRating': '0.8115', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '163', 'stateRank': '38', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2009', 'playerName': 'Kevin Mitchell', 'highSchool': 'Alexander', 'city': 'Douglasville', 'state': 'GA', 'position': 'OT', 'height': 79.0, 'weight': '280', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '123', 'stateRank': '108', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2009', 'playerName': 'Demetri Merritt', 'highSchool': 'LaGrange', 'city': 'Lagrange', 'state': 'GA', 'position': 'OLB', 'height': 75.0, 'weight': '200', 'compRating': '0.8083', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '123', 'stateRank': '112', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2009', 'playerName': 'Patrick Ligon', 'highSchool': 'Christian Brothers', 'city': 'Memphis', 'state': 'TN', 'position': 'SDE', 'height': 77.0, 'weight': '255', 'compRating': '0.8003', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '84', 'stateRank': '35', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2009', 'playerName': 'Martavius Neloms', 'highSchool': 'Fairley', 'city': 'Memphis', 'state': 'TN', 'position': 'CB', 'height': 74.0, 'weight': '175', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '135', 'stateRank': '36', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2009', 'playerName': 'Jonathan George', 'highSchool': 'Lincoln Sch', 'city': 'Lincoln', 'state': 'AL', 'position': 'RB', 'height': 70.0, 'weight': '204', 'compRating': '0.7000', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '136', 'stateRank': '67', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2009', 'playerName': 'Jarvis Walker', 'highSchool': 'Archbishop Rummel', 'city': 'Metairie', 'state': 'LA', 'position': 'S', 'height': 74.0, 'weight': '202', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2009', 'playerName': 'Dakotah Tyler', 'highSchool': 'Pike', 'city': 'Indianapolis', 'state': 'IN', 'position': 'S', 'height': 72.0, 'weight': '205', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2009', 'playerName': 'Myron Walker Jr.', 'highSchool': 'Archbishop Rummel', 'city': 'Metairie', 'state': 'LA', 'position': 'DT', 'height': 71.0, 'weight': '264', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2009', 'playerName': 'Ridge Wilson', 'highSchool': 'Louisville Central', 'city': 'Louisville', 'state': 'KY', 'position': 'ILB', 'height': 75.0, 'weight': '207', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2017', 'playerName': 'Willie Gay Jr.', 'highSchool': 'Starkville', 'city': 'Starkville', 'state': 'MS', 'position': 'OLB', 'height': 73.5, 'weight': '223', 'compRating': '0.9670', 'compStars': 4, 'nationalRank': '70', 'positionRank': '3', 'stateRank': '2', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '33', '247positionRank': '3', '247stateRank': '2'}, {'school': 'mississippi-state', 'year': '2017', 'playerName': 'Keytaon Thompson', 'highSchool': 'Landry-Walker', 'city': 'New Orleans', 'state': 'LA', 'position': 'DUAL', 'height': 76.0, 'weight': '225', 'compRating': '0.9258', 'compStars': 4, 'nationalRank': '176', 'positionRank': '5', 'stateRank': '7', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '142', '247positionRank': '3', '247stateRank': '5'}, {'school': 'mississippi-state', 'year': '2017', 'playerName': 'Kylin Hill', 'highSchool': 'Columbus', 'city': 'Columbus', 'state': 'MS', 'position': 'RB', 'height': 71.0, 'weight': '210', 'compRating': '0.9184', 'compStars': 4, 'nationalRank': '210', 'positionRank': '14', 'stateRank': '5', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '124', '247positionRank': '6', '247stateRank': '5'}, {'school': 'mississippi-state', 'year': '2017', 'playerName': 'Chauncey Rivers', 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'WDE', 'height': 74.0, 'weight': '258', 'compRating': '0.8965', 'compStars': 4, 'nationalRank': '12', 'positionRank': '1', 'stateRank': '4', '247Rating': ' 87 ', '247Stars': 3, '247nationalRank': '49', '247positionRank': '5', '247stateRank': '18'}, {'school': 'mississippi-state', 'year': '2017', 'playerName': 'Johnathan Abram', 'highSchool': 'Jones College', 'city': 'Ellisville', 'state': 'MS', 'position': 'S', 'height': 73.0, 'weight': '200', 'compRating': '0.8899', 'compStars': 3, 'nationalRank': '16', 'positionRank': '2', 'stateRank': '6', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '22', '247stateRank': '12'}, {'school': 'mississippi-state', 'year': '2017', 'playerName': 'Deion Pope', 'highSchool': 'Copiah-Lincoln C.C.', 'city': 'Wesson', 'state': 'MS', 'position': 'DT', 'height': 76.0, 'weight': '280', 'compRating': '0.8787', 'compStars': 3, 'nationalRank': '23', 'positionRank': '1', 'stateRank': '8', '247Rating': ' 90 ', '247Stars': 4, '247nationalRank': '18', '247positionRank': '2', '247stateRank': '6'}, {'school': 'mississippi-state', 'year': '2017', 'playerName': 'Lee Autry', 'highSchool': 'Itawamba C.C.', 'city': 'Fulton', 'state': 'MS', 'position': 'DT', 'height': 75.0, 'weight': '310', 'compRating': '0.8762', 'compStars': 3, 'nationalRank': '27', 'positionRank': '2', 'stateRank': '11', '247Rating': ' 90 ', '247Stars': 4, '247nationalRank': '17', '247positionRank': '1', '247stateRank': '5'}, {'school': 'mississippi-state', 'year': '2017', 'playerName': 'Tommy Champion', 'highSchool': 'Copiah-Lincoln C.C.', 'city': 'Wesson', 'state': 'MS', 'position': 'OT', 'height': 77.0, 'weight': '320', 'compRating': '0.8687', 'compStars': 3, 'nationalRank': '37', 'positionRank': '5', 'stateRank': '13'}, {'school': 'mississippi-state', 'year': '2017', 'playerName': 'Brian Cole', 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'S', 'height': 74.0, 'weight': '200', 'compRating': '0.8663', 'compStars': 3, 'nationalRank': '44', 'positionRank': '4', 'stateRank': '16', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '65', '247positionRank': '5', '247stateRank': '1'}, {'school': 'mississippi-state', 'year': '2017', 'playerName': 'Tyler Dunning', 'highSchool': 'St. Thomas Aquinas', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'OLB', 'height': 72.0, 'weight': '245', 'compRating': '0.8661', 'compStars': 3, 'nationalRank': '537', 'positionRank': '32', 'stateRank': '71', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '63', '247stateRank': '119'}, {'school': 'mississippi-state', 'year': '2017', 'playerName': 'Aaron Odom', 'highSchool': 'Callaway', 'city': 'Jackson', 'state': 'MS', 'position': 'WDE', 'height': 75.0, 'weight': '250', 'compRating': '0.8623', 'compStars': 3, 'nationalRank': '592', 'positionRank': '39', 'stateRank': '10', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '56', '247stateRank': '24'}, {'school': 'mississippi-state', 'year': '2017', 'playerName': 'Montez Sweat', 'highSchool': 'Copiah-Lincoln C.C.', 'city': 'Wesson', 'state': 'MS', 'position': 'WDE', 'height': 78.0, 'weight': '250', 'compRating': '0.8617', 'compStars': 3, 'nationalRank': '51', 'positionRank': '6', 'stateRank': '18', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '66', '247stateRank': '136'}, {'school': 'mississippi-state', 'year': '2017', 'playerName': 'Austin Williams', 'highSchool': 'Ocean Springs', 'city': 'Pascagoula', 'state': 'MS', 'position': 'WR', 'height': 75.0, 'weight': '202', 'compRating': '0.8529', 'compStars': 3, 'nationalRank': '760', 'positionRank': '110', 'stateRank': '15', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '79', '247stateRank': '13'}, {'school': 'mississippi-state', 'year': '2017', 'playerName': 'Tyler Williams', 'highSchool': 'Lafayette', 'city': 'Oxford', 'state': 'MS', 'position': 'CB', 'height': 75.0, 'weight': '175', 'compRating': '0.8510', 'compStars': 3, 'nationalRank': '818', 'positionRank': '82', 'stateRank': '16', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '105', '247stateRank': '27'}, {'school': 'mississippi-state', 'year': '2017', 'playerName': 'Tyre Phillips', 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'OG', 'height': 78.0, 'weight': '335', 'compRating': '0.8492', 'compStars': 3, 'nationalRank': '86', 'positionRank': '2', 'stateRank': '29', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '26', '247positionRank': '2', '247stateRank': '9'}, {'school': 'mississippi-state', 'year': '2017', 'playerName': 'Landon Guidry', 'highSchool': 'Independence', 'city': "Thompson's Station", 'state': 'TN', 'position': 'S', 'height': 73.0, 'weight': '185', 'compRating': '0.8476', 'compStars': 3, 'nationalRank': '911', 'positionRank': '67', 'stateRank': '27', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '33', '247stateRank': '15'}, {'school': 'mississippi-state', 'year': '2017', 'playerName': 'Jaquarius Landrews', 'highSchool': 'Copiah-Lincoln C.C.', 'city': 'Wesson', 'state': 'MS', 'position': 'S', 'height': 74.0, 'weight': '210', 'compRating': '0.8445', 'compStars': 3, 'nationalRank': '102', 'positionRank': '7', 'stateRank': '34', '247Rating': ' 83 ', '247Stars': 3, '247nationalRank': '124', '247positionRank': '11', '247stateRank': '39'}, {'school': 'mississippi-state', 'year': '2017', 'playerName': 'Cordavien Suggs', 'highSchool': 'Duncan U. Fletcher', 'city': 'Neptune Beach', 'state': 'FL', 'position': 'OT', 'height': 78.0, 'weight': '300', 'compRating': '0.8416', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '97', 'stateRank': '151', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '82', '247stateRank': '120'}, {'school': 'mississippi-state', 'year': '2017', 'playerName': 'James Jackson', 'highSchool': 'Pascagoula', 'city': 'Pascagoula', 'state': 'MS', 'position': 'DT', 'height': 75.5, 'weight': '345', 'compRating': '0.8405', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '74', 'stateRank': '25', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '34', '247stateRank': '9'}, {'school': 'mississippi-state', 'year': '2017', 'playerName': 'Tucker Day', 'highSchool': 'Brentwood', 'city': 'Brentwood', 'state': 'TN', 'position': 'P', 'height': 74.0, 'weight': '195', 'compRating': '0.7907', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '10', 'stateRank': '66', '247Rating': ' 73 ', '247Stars': 2, '247positionRank': '14', '247stateRank': '119'}, {'school': 'mississippi-state', 'year': '2017', 'playerName': 'Powers Warren', 'highSchool': 'Minnetonka Senior', 'city': 'Minnetonka', 'state': 'MN', 'position': 'TE', 'height': 75.0, 'weight': '221', 'compRating': '0.7597', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '174', 'stateRank': '39', '247Rating': ' 76 ', '247Stars': 2, '247positionRank': '140', '247stateRank': '35'}, {'school': 'mississippi-state', 'year': '2017', 'playerName': 'Noah Elliss', 'highSchool': 'Valor Christian', 'city': 'Littleton', 'state': 'CO', 'position': 'DT', 'height': 76.0, 'weight': '330', 'compRating': '0.8893', 'compStars': 3, 'nationalRank': '346', 'positionRank': '22', 'stateRank': '6'}, {'school': 'mississippi-state', 'year': '2017', 'playerName': 'Josh Cooper', 'highSchool': 'Haughton', 'city': 'Haughton', 'state': 'LA', 'position': 'OG', 'height': 79.0, 'weight': '355', 'compRating': '0.8466', 'compStars': 3, 'nationalRank': '932', 'positionRank': '46', 'stateRank': '39'}, {'school': 'mississippi-state', 'year': '2017', 'playerName': 'Montravious Richardson', 'highSchool': 'Westover', 'city': 'Albany', 'state': 'GA', 'position': 'OT', 'height': 79.0, 'weight': '320', 'compRating': '0.8219', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '145', 'stateRank': '162', '247Rating': ' 85 ', '247Stars': 3, '247nationalRank': '81', '247positionRank': '12', '247stateRank': '3'}, {'school': 'mississippi-state', 'year': '2017', 'playerName': 'Jaquavious Collins', 'highSchool': 'Jackson', 'city': 'Jackson', 'state': 'GA', 'position': 'DT', 'height': 76.0, 'weight': '288', 'compRating': '0.8133', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '102', 'stateRank': '185'}, {'school': 'florida', 'year': '2018', 'playerName': 'Jacob Copeland', 'highSchool': 'Escambia', 'city': 'Pensacola', 'state': 'FL', 'position': 'WR', 'height': 72.0, 'weight': '192', 'compRating': '0.9651', 'compStars': 4, 'nationalRank': '69', 'positionRank': '12', 'stateRank': '14', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '98', '247positionRank': '13', '247stateRank': '15'}, {'school': 'florida', 'year': '2018', 'playerName': 'Richard Gouraige', 'highSchool': 'Cambridge Christian School', 'city': 'Tampa', 'state': 'FL', 'position': 'OT', 'height': 77.0, 'weight': '271', 'compRating': '0.9603', 'compStars': 4, 'nationalRank': '81', 'positionRank': '7', 'stateRank': '18', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '145', '247positionRank': '13', '247stateRank': '19'}, {'school': 'florida', 'year': '2018', 'playerName': 'Emory Jones', 'highSchool': 'Heard County', 'city': 'Franklin', 'state': 'GA', 'position': 'DUAL', 'height': 74.5, 'weight': '195', 'compRating': '0.9587', 'compStars': 4, 'nationalRank': '85', 'positionRank': '5', 'stateRank': '11', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '173', '247positionRank': '7', '247stateRank': '19'}, {'school': 'florida', 'year': '2018', 'playerName': 'Justin Watkins', 'highSchool': 'East Ridge', 'city': 'Clermont', 'state': 'FL', 'position': 'WR', 'height': 71.0, 'weight': '172', 'compRating': '0.9567', 'compStars': 4, 'nationalRank': '89', 'positionRank': '16', 'stateRank': '20', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '116', '247positionRank': '17', '247stateRank': '17'}, {'school': 'florida', 'year': '2018', 'playerName': 'Kyle Pitts', 'highSchool': 'Archbishop Wood', 'city': 'Warminster', 'state': 'PA', 'position': 'TE', 'height': 77.5, 'weight': '235', 'compRating': '0.9334', 'compStars': 4, 'nationalRank': '162', 'positionRank': '5', 'stateRank': '4', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '122', '247positionRank': '5', '247stateRank': '4'}, {'school': 'florida', 'year': '2018', 'playerName': 'Amari Burney', 'highSchool': 'Calvary Christian', 'city': 'Clearwater', 'state': 'FL', 'position': 'S', 'height': 73.0, 'weight': '215', 'compRating': '0.9293', 'compStars': 4, 'nationalRank': '178', 'positionRank': '14', 'stateRank': '31', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '36', '247stateRank': '64'}, {'school': 'florida', 'year': '2018', 'playerName': 'Trey Dean', 'highSchool': 'Dutchtown', 'city': 'Hampton', 'state': 'GA', 'position': 'S', 'height': 74.0, 'weight': '180', 'compRating': '0.9222', 'compStars': 4, 'nationalRank': '195', 'positionRank': '17', 'stateRank': '23', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '217', '247positionRank': '17', '247stateRank': '25'}, {'school': 'florida', 'year': '2018', 'playerName': 'Dameon Pierce', 'highSchool': 'Bainbridge', 'city': 'Bainbridge', 'state': 'GA', 'position': 'RB', 'height': 71.0, 'weight': '205', 'compRating': '0.9209', 'compStars': 4, 'nationalRank': '201', 'positionRank': '8', 'stateRank': '25', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '13', '247stateRank': '32'}, {'school': 'florida', 'year': '2018', 'playerName': 'Lucas Krull', 'highSchool': 'Jefferson College', 'city': 'Hillsboro', 'state': 'MO', 'position': 'TE', 'height': 79.0, 'weight': '255', 'compRating': '0.9200', 'compStars': 4, 'nationalRank': '3', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '4', '247positionRank': '1', '247stateRank': '1'}, {'school': 'florida', 'year': '2018', 'playerName': 'Andrew Chatfield', 'highSchool': 'American Heritage', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'WDE', 'height': 74.0, 'weight': '221', 'compRating': '0.9180', 'compStars': 4, 'nationalRank': '213', 'positionRank': '13', 'stateRank': '38', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '21', '247stateRank': '50'}, {'school': 'florida', 'year': '2018', 'playerName': 'David Reese', 'highSchool': 'Vero Beach', 'city': 'Vero Beach', 'state': 'FL', 'position': 'OLB', 'height': 74.0, 'weight': '213', 'compRating': '0.9003', 'compStars': 4, 'nationalRank': '297', 'positionRank': '20', 'stateRank': '53', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '43', '247stateRank': '87'}, {'school': 'florida', 'year': '2018', 'playerName': 'Malik Langham', 'highSchool': 'Lee', 'city': 'Huntsville', 'state': 'AL', 'position': 'SDE', 'height': 77.5, 'weight': '269', 'compRating': '0.8975', 'compStars': 4, 'nationalRank': '315', 'positionRank': '14', 'stateRank': '11', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '222', '247positionRank': '9', '247stateRank': '6'}, {'school': 'florida', 'year': '2018', 'playerName': 'Iverson Clement', 'highSchool': 'Rancocas Valley Reg H', 'city': 'Mount Holly', 'state': 'NJ', 'position': 'ATH', 'height': 71.0, 'weight': '199', 'compRating': '0.8958', 'compStars': 4, 'nationalRank': '329', 'positionRank': '16', 'stateRank': '7', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '20', '247stateRank': '7'}, {'school': 'florida', 'year': '2018', 'playerName': 'Noah Banks', 'highSchool': 'Iowa Western C.C.', 'city': 'Council Bluffs', 'state': 'IA', 'position': 'OT', 'height': 79.0, 'weight': '305', 'compRating': '0.8871', 'compStars': 3, 'nationalRank': '22', 'positionRank': '5', 'stateRank': '2', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '34', '247positionRank': '6', '247stateRank': '2'}, {'school': 'florida', 'year': '2018', 'playerName': 'John Huggins', 'highSchool': 'Mainland', 'city': 'Daytona Beach', 'state': 'FL', 'position': 'S', 'height': 72.0, 'weight': '200', 'compRating': '0.8858', 'compStars': 3, 'nationalRank': '419', 'positionRank': '28', 'stateRank': '73', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '41', '247stateRank': '77'}, {'school': 'florida', 'year': '2018', 'playerName': 'Chris Bleich', 'highSchool': 'Wyoming Valley West', 'city': 'Plymouth', 'state': 'PA', 'position': 'OT', 'height': 78.0, 'weight': '305', 'compRating': '0.8817', 'compStars': 3, 'nationalRank': '458', 'positionRank': '34', 'stateRank': '13', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '35', '247stateRank': '10'}, {'school': 'florida', 'year': '2018', 'playerName': 'Randy Russell', 'highSchool': 'Miami Carol City', 'city': 'Opa Locka', 'state': 'FL', 'position': 'S', 'height': 70.0, 'weight': '180', 'compRating': '0.8789', 'compStars': 3, 'nationalRank': '501', 'positionRank': '35', 'stateRank': '82', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '25', '247stateRank': '46'}, {'school': 'florida', 'year': '2018', 'playerName': 'Dante Lang', 'highSchool': 'Boca Raton', 'city': 'Boca Raton', 'state': 'FL', 'position': 'TE', 'height': 77.0, 'weight': '220', 'compRating': '0.8709', 'compStars': 3, 'nationalRank': '636', 'positionRank': '29', 'stateRank': '99', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '38', '247stateRank': '137'}, {'school': 'florida', 'year': '2018', 'playerName': 'Griffin McDowell', 'highSchool': 'Lee County', 'city': 'Leesburg', 'state': 'GA', 'position': 'OC', 'height': 76.0, 'weight': '280', 'compRating': '0.8342', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '22', 'stateRank': '146', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '29', '247stateRank': '170'}, {'school': 'florida', 'year': '2018', 'playerName': 'Evan McPherson', 'highSchool': 'Fort Payne', 'city': 'Fort Payne', 'state': 'AL', 'position': 'K', 'height': 72.0, 'weight': '165', 'compRating': '0.8339', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '1', 'stateRank': '52', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '1', '247stateRank': '66'}, {'school': 'ole-miss', 'year': '2005', 'playerName': 'Quentin Taylor', 'highSchool': 'Apopka', 'city': 'Apopka', 'state': 'FL', 'position': 'OLB', 'height': 73.0, 'weight': '215', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '182', 'positionRank': '22', 'stateRank': '25', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2005', 'playerName': 'Kendrick Perry', 'highSchool': 'Amite', 'city': 'Amite', 'state': 'LA', 'position': 'RB', 'height': 74.0, 'weight': '216', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '440', 'positionRank': '29', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2005', 'playerName': 'Dustin Forston', 'highSchool': 'Northwestern', 'city': 'Miami', 'state': 'FL', 'position': 'OLB', 'height': 71.0, 'weight': '208', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '540', 'positionRank': '47', 'stateRank': '67', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2005', 'playerName': 'Jada Brown', 'highSchool': 'Banneker', 'city': 'Atlanta', 'state': 'GA', 'position': 'WDE', 'height': 74.0, 'weight': '243', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '574', 'positionRank': '21', 'stateRank': '33', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2005', 'playerName': 'Rogers Loche', 'highSchool': 'Bastrop', 'city': 'Bastrop', 'state': 'LA', 'position': 'ILB', 'height': 73.0, 'weight': '230', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '580', 'positionRank': '31', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2005', 'playerName': 'Marcus Green', 'highSchool': 'Bastrop', 'city': 'Bastrop', 'state': 'LA', 'position': 'APB', 'height': 70.0, 'weight': '170', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '657', 'positionRank': '11', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2005', 'playerName': 'Gary Riggs', 'highSchool': 'Jennings', 'city': 'Jennings', 'state': 'LA', 'position': 'S', 'height': 73.0, 'weight': '184', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '716', 'positionRank': '47', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2005', 'playerName': 'Peria Jerry', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'SDE', 'height': 74.0, 'weight': '270', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '29', 'positionRank': '5', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2005', 'playerName': 'Tyson Andrus', 'highSchool': 'Northside', 'city': 'Lafayette', 'state': 'LA', 'position': 'CB', 'height': 73.0, 'weight': '183', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '863', 'positionRank': '75', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2005', 'playerName': 'Lamark Armour', 'highSchool': 'Hunters Lane Comprehensive', 'city': 'Nashville', 'state': 'TN', 'position': 'SDE', 'height': 75.0, 'weight': '230', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '899', 'positionRank': '52', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2005', 'playerName': 'Reid Neely', 'highSchool': 'Jackson Academy', 'city': 'Jackson', 'state': 'MS', 'position': 'OT', 'height': 78.0, 'weight': '289', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '931', 'positionRank': '71', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2005', 'playerName': 'Lance Lee', 'highSchool': 'Oxford', 'city': 'Oxford', 'state': 'MS', 'position': 'OT', 'height': 78.0, 'weight': '270', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': '949', 'positionRank': '73', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2005', 'playerName': 'J.D. Lawhorn', 'highSchool': 'Memphis University School', 'city': 'Memphis', 'state': 'TN', 'position': 'WR', 'height': 73.0, 'weight': '175', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': '966', 'positionRank': '96', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2005', 'playerName': 'Jabarre Mitchell', 'highSchool': 'John Ehret', 'city': 'Marrero', 'state': 'LA', 'position': 'S', 'height': 72.0, 'weight': '190', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': '996', 'positionRank': '62', 'stateRank': '28', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2005', 'playerName': 'Justin Sparks', 'highSchool': 'Briarcrest Christian', 'city': 'Memphis', 'state': 'TN', 'position': 'K', 'height': 75.0, 'weight': '175', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '11', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2005', 'playerName': 'Antonio Turner', 'highSchool': 'Edgewater', 'city': 'Orlando', 'state': 'FL', 'position': 'FB', 'height': 73.0, 'weight': '220', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '20', 'stateRank': '117', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2005', 'playerName': 'Michael Hicks', 'highSchool': 'Andrew Jackson', 'city': 'Jacksonville', 'state': 'FL', 'position': 'ATH', 'height': 76.0, 'weight': '206', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '82', 'stateRank': '120', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2005', 'playerName': 'Burnell Wallace', 'highSchool': 'O Perry Walker', 'city': 'New Orleans', 'state': 'LA', 'position': 'WR', 'height': 74.0, 'weight': '195', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '114', 'stateRank': '36', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2005', 'playerName': 'Rob Park', 'highSchool': 'Memphis University School', 'city': 'Memphis', 'state': 'TN', 'position': 'K', 'height': 73.0, 'weight': '185', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '16', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2005', 'playerName': 'Milton Collins', 'highSchool': 'Jones College', 'city': 'Ellisville', 'state': 'MS', 'position': 'WR', 'height': 72.0, 'weight': '180', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': '157', 'positionRank': '14', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2005', 'playerName': 'Billy Tapp', 'highSchool': 'St. Petersburg', 'city': 'Saint Petersburg', 'state': 'FL', 'position': 'PRO', 'height': 77.0, 'weight': '215', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '46', 'stateRank': '144', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2005', 'playerName': 'Mike Wallace', 'highSchool': 'O Perry Walker', 'city': 'New Orleans', 'state': 'LA', 'position': 'WR', 'height': 72.0, 'weight': '180', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '146', 'stateRank': '48', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2005', 'playerName': 'Gary Albury', 'highSchool': 'Edgewater', 'city': 'Orlando', 'state': 'FL', 'position': 'CB', 'height': 71.0, 'weight': '171', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '144', 'stateRank': '185', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2005', 'playerName': 'Leron King', 'highSchool': 'Northwestern', 'city': 'Miami', 'state': 'FL', 'position': 'OLB', 'height': 73.0, 'weight': '197', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '124', 'stateRank': '214', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2005', 'playerName': 'Rob Russell', 'highSchool': 'L.B. Landry', 'city': 'New Orleans', 'state': 'LA', 'position': 'OLB', 'height': 71.0, 'weight': '220', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '129', 'stateRank': '69', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2005', 'playerName': 'Jerrell Powe', 'highSchool': 'Wayne County', 'city': 'Waynesboro', 'state': 'MS', 'position': 'DT', 'height': 75.0, 'weight': '350', 'compRating': '0.9890', 'compStars': 5, 'nationalRank': '24', 'positionRank': '3', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2005', 'playerName': 'Michael Oher', 'highSchool': 'Briarcrest Christian', 'city': 'Memphis', 'state': 'TN', 'position': 'OT', 'height': 77.0, 'weight': '330', 'compRating': '0.9833', 'compStars': 5, 'nationalRank': '38', 'positionRank': '6', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2019', 'playerName': 'Zacch Pickens', 'highSchool': 'T L Hanna', 'city': 'Anderson', 'state': 'SC', 'position': 'DT', 'height': 75.0, 'weight': '293', 'compRating': '0.9946', 'compStars': 5, 'nationalRank': '8', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '18', '247positionRank': '3', '247stateRank': '1'}, {'school': 'south-carolina', 'year': '2019', 'playerName': 'Ryan Hilinski', 'highSchool': 'Orange Lutheran', 'city': 'Orange', 'state': 'CA', 'position': 'PRO', 'height': 75.0, 'weight': '230', 'compRating': '0.9695', 'compStars': 4, 'nationalRank': '64', 'positionRank': '2', 'stateRank': '12', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '131', '247positionRank': '2', '247stateRank': '20'}, {'school': 'south-carolina', 'year': '2019', 'playerName': 'Joseph Anderson', 'highSchool': 'Oakland', 'city': 'Murfreesboro', 'state': 'TN', 'position': 'SDE', 'height': 76.0, 'weight': '268', 'compRating': '0.9412', 'compStars': 4, 'nationalRank': '134', 'positionRank': '8', 'stateRank': '2', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '140', '247positionRank': '9', '247stateRank': '4'}, {'school': 'south-carolina', 'year': '2019', 'playerName': 'Cam Smith', 'highSchool': 'Westwood', 'city': 'Blythewood', 'state': 'SC', 'position': 'CB', 'height': 73.0, 'weight': '168', 'compRating': '0.9366', 'compStars': 4, 'nationalRank': '150', 'positionRank': '19', 'stateRank': '2', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '39', '247positionRank': '4', '247stateRank': '2'}, {'school': 'south-carolina', 'year': '2019', 'playerName': 'Keveon Mullins', 'highSchool': 'Whitehaven', 'city': 'Memphis', 'state': 'TN', 'position': 'ATH', 'height': 74.0, 'weight': '207', 'compRating': '0.8986', 'compStars': 4, 'nationalRank': '315', 'positionRank': '18', 'stateRank': '9', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '30', '247stateRank': '10'}, {'school': 'south-carolina', 'year': '2019', 'playerName': 'Jammie Robinson', 'highSchool': 'Lee County', 'city': 'Leesburg', 'state': 'GA', 'position': 'S', 'height': 71.0, 'weight': '200', 'compRating': '0.8891', 'compStars': 3, 'nationalRank': '393', 'positionRank': '32', 'stateRank': '41', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '35', '247stateRank': '43'}, {'school': 'south-carolina', 'year': '2019', 'playerName': 'John Dixon', 'highSchool': 'Chamberlain', 'city': 'Tampa', 'state': 'FL', 'position': 'CB', 'height': 72.0, 'weight': '170', 'compRating': '0.8858', 'compStars': 3, 'nationalRank': '436', 'positionRank': '44', 'stateRank': '51', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '64', '247stateRank': '75'}, {'school': 'south-carolina', 'year': '2019', 'playerName': 'Traevon Kenion', 'highSchool': 'Wake Forest', 'city': 'Wake Forest', 'state': 'NC', 'position': 'TE', 'height': 75.0, 'weight': '245', 'compRating': '0.8851', 'compStars': 3, 'nationalRank': '450', 'positionRank': '19', 'stateRank': '19', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '22', '247stateRank': '23'}, {'school': 'south-carolina', 'year': '2019', 'playerName': 'Rodricus Fitten', 'highSchool': 'Washington', 'city': 'Atlanta', 'state': 'GA', 'position': 'WDE', 'height': 75.0, 'weight': '235', 'compRating': '0.8817', 'compStars': 3, 'nationalRank': '494', 'positionRank': '36', 'stateRank': '51', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '36', '247stateRank': '54'}, {'school': 'south-carolina', 'year': '2019', 'playerName': 'Jakai Moore', 'highSchool': 'Patriot', 'city': 'Nokesville', 'state': 'VA', 'position': 'OG', 'height': 78.0, 'weight': '295', 'compRating': '0.8810', 'compStars': 3, 'nationalRank': '504', 'positionRank': '29', 'stateRank': '13', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '21', '247stateRank': '9'}, {'school': 'south-carolina', 'year': '2019', 'playerName': 'Derek Boykins', 'highSchool': 'Central Cabarrus', 'city': 'Concord', 'state': 'NC', 'position': 'OLB', 'height': 73.0, 'weight': '224', 'compRating': '0.8789', 'compStars': 3, 'nationalRank': '532', 'positionRank': '32', 'stateRank': '24', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '27', '247stateRank': '20'}, {'school': 'south-carolina', 'year': '2019', 'playerName': 'Vincent Murphy', 'highSchool': 'St. Thomas Aquinas', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'OC', 'height': 74.0, 'weight': '290', 'compRating': '0.8784', 'compStars': 3, 'nationalRank': '540', 'positionRank': '7', 'stateRank': '66', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '9', '247stateRank': '73'}, {'school': 'south-carolina', 'year': '2019', 'playerName': 'Devontae Davis', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'SDE', 'height': 77.0, 'weight': '250', 'compRating': '0.8751', 'compStars': 3, 'nationalRank': '31', 'positionRank': '3', 'stateRank': '2', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '55', '247positionRank': '4', '247stateRank': '2'}, {'school': 'south-carolina', 'year': '2019', 'playerName': 'Mark Fox', 'highSchool': 'Northwestern', 'city': 'Miami', 'state': 'FL', 'position': 'OT', 'height': 76.0, 'weight': '290', 'compRating': '0.8749', 'compStars': 3, 'nationalRank': '591', 'positionRank': '44', 'stateRank': '74', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '90', '247stateRank': '129'}, {'school': 'south-carolina', 'year': '2019', 'playerName': 'Shilo Sanders', 'highSchool': 'Trinity Christian School', 'city': 'Cedar Hill', 'state': 'TX', 'position': 'CB', 'height': 72.0, 'weight': '185', 'compRating': '0.8706', 'compStars': 3, 'nationalRank': '665', 'positionRank': '62', 'stateRank': '83', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '153', '247stateRank': '200'}, {'school': 'south-carolina', 'year': '2019', 'playerName': 'Keshawn Toney', 'highSchool': 'Williston Elko', 'city': 'Williston', 'state': 'SC', 'position': 'TE', 'height': 75.0, 'weight': '240', 'compRating': '0.8689', 'compStars': 3, 'nationalRank': '685', 'positionRank': '29', 'stateRank': '10', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '89', '247stateRank': '16'}, {'school': 'south-carolina', 'year': '2019', 'playerName': 'Kevin Harris', 'highSchool': 'Bradwell Institute', 'city': 'Hinesville', 'state': 'GA', 'position': 'RB', 'height': 71.0, 'weight': '229', 'compRating': '0.8688', 'compStars': 3, 'nationalRank': '702', 'positionRank': '44', 'stateRank': '68', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '60', '247stateRank': '93'}, {'school': 'south-carolina', 'year': '2019', 'playerName': 'Xavier Legette', 'highSchool': 'Mullins', 'city': 'Mullins', 'state': 'SC', 'position': 'ATH', 'height': 75.0, 'weight': '190', 'compRating': '0.8685', 'compStars': 3, 'nationalRank': '704', 'positionRank': '39', 'stateRank': '11', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '17', '247stateRank': '3'}, {'school': 'south-carolina', 'year': '2019', 'playerName': 'Jahmar Brown', 'highSchool': 'St. Thomas Aquinas', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'OLB', 'height': 73.0, 'weight': '200', 'compRating': '0.8682', 'compStars': 3, 'nationalRank': '708', 'positionRank': '48', 'stateRank': '86', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '31', '247stateRank': '43'}, {'school': 'south-carolina', 'year': '2019', 'playerName': 'Jaylen Nichols', 'highSchool': 'Myers Park', 'city': 'Charlotte', 'state': 'NC', 'position': 'OT', 'height': 77.0, 'weight': '300', 'compRating': '0.8540', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '84', 'stateRank': '42', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '69', '247stateRank': '37'}, {'school': 'south-carolina', 'year': '2019', 'playerName': 'Tyquan Johnson', 'highSchool': 'Fork Union Military Academy', 'city': 'Fork Union', 'state': 'VA', 'position': 'WR', 'height': 75.0, 'weight': '180', 'compRating': '0.8487', 'compStars': 3, 'nationalRank': '2', 'positionRank': '1', 'stateRank': '2', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '1', '247positionRank': '1', '247stateRank': '1'}, {'school': 'south-carolina', 'year': '2019', 'playerName': 'William Rogers', 'highSchool': 'Lovejoy', 'city': 'Hampton', 'state': 'GA', 'position': 'OT', 'height': 76.0, 'weight': '295', 'compRating': '0.8402', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '112', 'stateRank': '129', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '100', '247stateRank': '110'}, {'school': 'lsu', 'year': '2009', 'playerName': 'Russell Shepard', 'highSchool': 'Cy Ridge', 'city': 'Houston', 'state': 'TX', 'position': 'DUAL', 'height': 73.0, 'weight': '179', 'compRating': '0.9986', 'compStars': 5, 'nationalRank': '3', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2009', 'playerName': 'Rueben Randle', 'highSchool': 'Bastrop', 'city': 'Bastrop', 'state': 'LA', 'position': 'WR', 'height': 75.0, 'weight': '195', 'compRating': '0.9967', 'compStars': 5, 'nationalRank': '8', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2009', 'playerName': 'Craig Loston', 'highSchool': 'Aldine Eisenhower', 'city': 'Houston', 'state': 'TX', 'position': 'S', 'height': 74.0, 'weight': '193', 'compRating': '0.9956', 'compStars': 5, 'nationalRank': '9', 'positionRank': '1', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2009', 'playerName': 'Chris Davenport', 'highSchool': 'Mansfield', 'city': 'Mansfield', 'state': 'LA', 'position': 'DT', 'height': 76.0, 'weight': '318', 'compRating': '0.9850', 'compStars': 5, 'nationalRank': '29', 'positionRank': '5', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2009', 'playerName': 'Michael Ford', 'highSchool': 'Leesville', 'city': 'Leesville', 'state': 'LA', 'position': 'RB', 'height': 70.0, 'weight': '200', 'compRating': '0.9766', 'compStars': 4, 'nationalRank': '44', 'positionRank': '5', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2009', 'playerName': 'Sam Montgomery', 'highSchool': 'Greenwood', 'city': 'Greenwood', 'state': 'SC', 'position': 'WDE', 'height': 76.0, 'weight': '230', 'compRating': '0.9745', 'compStars': 4, 'nationalRank': '50', 'positionRank': '3', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2009', 'playerName': 'Josh Downs', 'highSchool': 'Bastrop', 'city': 'Bastrop', 'state': 'LA', 'position': 'DT', 'height': 73.0, 'weight': '275', 'compRating': '0.9668', 'compStars': 4, 'nationalRank': '71', 'positionRank': '8', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2009', 'playerName': 'Kevin Minter', 'highSchool': 'Peachtree Ridge', 'city': 'Suwanee', 'state': 'GA', 'position': 'ILB', 'height': 72.0, 'weight': '231', 'compRating': '0.9419', 'compStars': 4, 'nationalRank': '124', 'positionRank': '9', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2009', 'playerName': 'Drayton Calhoun', 'highSchool': 'Tucker', 'city': 'Tucker', 'state': 'GA', 'position': 'RB', 'height': 72.0, 'weight': '175', 'compRating': '0.9332', 'compStars': 4, 'nationalRank': '138', 'positionRank': '14', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2009', 'playerName': 'Stavion Lowe', 'highSchool': 'Brownwood', 'city': 'Brownwood', 'state': 'TX', 'position': 'OG', 'height': 77.0, 'weight': '295', 'compRating': '0.9216', 'compStars': 4, 'nationalRank': '168', 'positionRank': '9', 'stateRank': '22'}, {'school': 'lsu', 'year': '2009', 'playerName': 'Barkevious Mingo', 'highSchool': 'West Monroe', 'city': 'West Monroe', 'state': 'LA', 'position': 'OLB', 'height': 77.0, 'weight': '209', 'compRating': '0.9194', 'compStars': 4, 'nationalRank': '180', 'positionRank': '13', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2009', 'playerName': 'Michael Brockers', 'highSchool': 'Chavez', 'city': 'Houston', 'state': 'TX', 'position': 'SDE', 'height': 78.0, 'weight': '255', 'compRating': '0.9169', 'compStars': 4, 'nationalRank': '191', 'positionRank': '10', 'stateRank': '25', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2009', 'playerName': 'Chris Faulk', 'highSchool': 'Northshore', 'city': 'Slidell', 'state': 'LA', 'position': 'OT', 'height': 77.0, 'weight': '310', 'compRating': '0.9126', 'compStars': 4, 'nationalRank': '208', 'positionRank': '16', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2009', 'playerName': 'Akiem Hicks', 'highSchool': 'Sacramento City College', 'city': 'Sacramento', 'state': 'CA', 'position': 'DT', 'height': 78.0, 'weight': '300', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '16', 'positionRank': '4', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2009', 'playerName': 'Carneal Ainsworth', 'highSchool': 'Parkview Baptist School', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'OG', 'height': 76.0, 'weight': '296', 'compRating': '0.8875', 'compStars': 3, 'nationalRank': '342', 'positionRank': '19', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2009', 'playerName': 'Dominique Allen', 'highSchool': 'Henry County', 'city': 'Paris', 'state': 'TN', 'position': 'FB', 'height': 71.0, 'weight': '250', 'compRating': '0.8764', 'compStars': 3, 'nationalRank': '460', 'positionRank': '4', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2009', 'playerName': 'Chris Garrett', 'highSchool': 'Tupelo', 'city': 'Tupelo', 'state': 'MS', 'position': 'PRO', 'height': 76.0, 'weight': '220', 'compRating': '0.8764', 'compStars': 3, 'nationalRank': '471', 'positionRank': '19', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2009', 'playerName': 'Morris Claiborne', 'highSchool': 'Fair Park', 'city': 'Shreveport', 'state': 'LA', 'position': 'ATH', 'height': 72.0, 'weight': '180', 'compRating': '0.8715', 'compStars': 3, 'nationalRank': '540', 'positionRank': '26', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2009', 'playerName': 'Lamin Barrow', 'highSchool': 'John Ehret', 'city': 'Marrero', 'state': 'LA', 'position': 'OLB', 'height': 74.0, 'weight': '209', 'compRating': '0.8701', 'compStars': 3, 'nationalRank': '563', 'positionRank': '43', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2009', 'playerName': 'Tahj Jones', 'highSchool': 'Sulphur', 'city': 'Sulphur', 'state': 'LA', 'position': 'OLB', 'height': 74.0, 'weight': '205', 'compRating': '0.8653', 'compStars': 3, 'nationalRank': '610', 'positionRank': '50', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2009', 'playerName': 'Bennie Logan', 'highSchool': 'Red River', 'city': 'Coushatta', 'state': 'LA', 'position': 'DT', 'height': 75.0, 'weight': '272', 'compRating': '0.8590', 'compStars': 3, 'nationalRank': '728', 'positionRank': '59', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2009', 'playerName': 'Josh Johns', 'highSchool': 'Central', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'S', 'height': 74.0, 'weight': '210', 'compRating': '0.8510', 'compStars': 3, 'nationalRank': '946', 'positionRank': '77', 'stateRank': '32', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2009', 'playerName': 'Josh Williford', 'highSchool': 'Houston Academy', 'city': 'Dothan', 'state': 'AL', 'position': 'OG', 'height': 79.0, 'weight': '345', 'compRating': '0.8448', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '76', 'stateRank': '34', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2009', 'playerName': 'Derek Helton', 'highSchool': 'Fort Scott C.C.', 'city': 'Fort Scott', 'state': 'KS', 'position': 'K', 'height': 74.0, 'weight': '170', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '93', 'positionRank': '1', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2009', 'playerName': 'Seth Fruge', 'highSchool': 'Notre Dame', 'city': 'Crowley', 'state': 'LA', 'position': 'ILB', 'height': 71.0, 'weight': '189', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2013', 'playerName': 'Robert Nkemdiche', 'highSchool': 'Grayson', 'city': 'Loganville', 'state': 'GA', 'position': 'SDE', 'height': 76.0, 'weight': '285', 'compRating': '1.0000', 'compStars': 5, 'nationalRank': '1', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 101 ', '247Stars': 5, '247nationalRank': '1', '247positionRank': '1', '247stateRank': '1'}, {'school': 'ole-miss', 'year': '2013', 'playerName': 'Laremy Tunsil', 'highSchool': 'Columbia', 'city': 'Lake City', 'state': 'FL', 'position': 'OT', 'height': 78.0, 'weight': '295', 'compRating': '0.9976', 'compStars': 5, 'nationalRank': '4', 'positionRank': '1', 'stateRank': '2', '247Rating': ' 100 ', '247Stars': 5, '247nationalRank': '3', '247positionRank': '1', '247stateRank': '1'}, {'school': 'ole-miss', 'year': '2013', 'playerName': 'Laquon Treadwell', 'highSchool': 'Crete-Monee', 'city': 'Crete', 'state': 'IL', 'position': 'WR', 'height': 75.0, 'weight': '195', 'compRating': '0.9925', 'compStars': 5, 'nationalRank': '14', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '28', '247positionRank': '3', '247stateRank': '1'}, {'school': 'ole-miss', 'year': '2013', 'playerName': 'Tony Conner', 'highSchool': 'South Panola', 'city': 'Batesville', 'state': 'MS', 'position': 'S', 'height': 73.5, 'weight': '203', 'compRating': '0.9841', 'compStars': 5, 'nationalRank': '33', 'positionRank': '5', 'stateRank': '2', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '25', '247positionRank': '2', '247stateRank': '2'}, {'school': 'ole-miss', 'year': '2013', 'playerName': 'Austin Golson', 'highSchool': 'Prattville', 'city': 'Prattville', 'state': 'AL', 'position': 'OT', 'height': 78.0, 'weight': '285', 'compRating': '0.9562', 'compStars': 4, 'nationalRank': '94', 'positionRank': '8', 'stateRank': '6', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '139', '247positionRank': '13', '247stateRank': '8'}, {'school': 'ole-miss', 'year': '2013', 'playerName': 'Kailo Moore', 'highSchool': 'West Bolivar Dist', 'city': 'Rosedale', 'state': 'MS', 'position': 'APB', 'height': 70.0, 'weight': '190', 'compRating': '0.9341', 'compStars': 4, 'nationalRank': '147', 'positionRank': '7', 'stateRank': '3', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '93', '247positionRank': '6', '247stateRank': '3'}, {'school': 'ole-miss', 'year': '2013', 'playerName': 'Lavon Hooks', 'highSchool': 'Northeast Mississippi C.C.', 'city': 'Booneville', 'state': 'MS', 'position': 'DT', 'height': 76.0, 'weight': '295', 'compRating': '0.9311', 'compStars': 4, 'nationalRank': '1', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '1', '247positionRank': '1', '247stateRank': '1'}, {'school': 'ole-miss', 'year': '2013', 'playerName': 'Nickolas Brassell', 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'ATH', 'height': 72.0, 'weight': '175', 'compRating': '0.9199', 'compStars': 4, 'nationalRank': '6', 'positionRank': '1', 'stateRank': '3'}, {'school': 'ole-miss', 'year': '2013', 'playerName': 'Jordan Wilkins', 'highSchool': 'St. Benedict at Auburndale', 'city': 'Cordova', 'state': 'TN', 'position': 'APB', 'height': 73.0, 'weight': '212', 'compRating': '0.9139', 'compStars': 4, 'nationalRank': '221', 'positionRank': '10', 'stateRank': '6', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '167', '247positionRank': '9', '247stateRank': '4'}, {'school': 'ole-miss', 'year': '2013', 'playerName': 'Mark Dodson', 'highSchool': 'Whitehaven', 'city': 'Memphis', 'state': 'TN', 'position': 'RB', 'height': 70.0, 'weight': '185', 'compRating': '0.9120', 'compStars': 4, 'nationalRank': '227', 'positionRank': '17', 'stateRank': '7', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '23', '247stateRank': '9'}, {'school': 'ole-miss', 'year': '2013', 'playerName': 'Ryan Buchanan', 'highSchool': 'Jackson Prep', 'city': 'Flowood', 'state': 'MS', 'position': 'PRO', 'height': 76.0, 'weight': '205', 'compRating': '0.9038', 'compStars': 4, 'nationalRank': '267', 'positionRank': '16', 'stateRank': '5', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '23', '247stateRank': '6'}, {'school': 'ole-miss', 'year': '2013', 'playerName': 'DeVante Kincade', 'highSchool': 'Skyline', 'city': 'Dallas', 'state': 'TX', 'position': 'DUAL', 'height': 72.0, 'weight': '180', 'compRating': '0.8918', 'compStars': 4, 'nationalRank': '323', 'positionRank': '14', 'stateRank': '45', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '18', '247stateRank': '74'}, {'school': 'ole-miss', 'year': '2013', 'playerName': 'Christian Morgan', 'highSchool': 'Prestonwood Christian', 'city': 'Plano', 'state': 'TX', 'position': 'TE', 'height': 77.0, 'weight': '250', 'compRating': '0.8751', 'compStars': 3, 'nationalRank': '429', 'positionRank': '15', 'stateRank': '60', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '26', '247stateRank': '103'}, {'school': 'ole-miss', 'year': '2013', 'playerName': 'Quincy Adeboyejo', 'highSchool': 'Cedar Hill', 'city': 'Cedar Hill', 'state': 'TX', 'position': 'WR', 'height': 75.0, 'weight': '180', 'compRating': '0.8696', 'compStars': 3, 'nationalRank': '484', 'positionRank': '67', 'stateRank': '67', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '71', '247stateRank': '89'}, {'school': 'ole-miss', 'year': '2013', 'playerName': 'Eugene Brazley', 'highSchool': 'G.W. Carver', 'city': 'New Orleans', 'state': 'LA', 'position': 'APB', 'height': 70.0, 'weight': '185', 'compRating': '0.8641', 'compStars': 3, 'nationalRank': '557', 'positionRank': '13', 'stateRank': '24', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '17', '247stateRank': '23'}, {'school': 'ole-miss', 'year': '2013', 'playerName': 'Quadarias Mireles', 'highSchool': 'Hinds C.C.', 'city': 'Raymond', 'state': 'MS', 'position': 'WR', 'height': 71.0, 'weight': '185', 'compRating': '0.8638', 'compStars': 3, 'nationalRank': '53', 'positionRank': '12', 'stateRank': '12', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '87', '247positionRank': '14', '247stateRank': '18'}, {'school': 'ole-miss', 'year': '2013', 'playerName': 'Ray Ray Smith', 'highSchool': 'Florence', 'city': 'Florence', 'state': 'AL', 'position': 'OLB', 'height': 75.0, 'weight': '200', 'compRating': '0.8493', 'compStars': 3, 'nationalRank': '832', 'positionRank': '67', 'stateRank': '26', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '89', '247stateRank': '32'}, {'school': 'ole-miss', 'year': '2013', 'playerName': 'Daronte Bouldin', 'highSchool': 'Canton', 'city': 'Canton', 'state': 'MS', 'position': 'OT', 'height': 77.0, 'weight': '300', 'compRating': '0.8452', 'compStars': 3, 'nationalRank': '899', 'positionRank': '71', 'stateRank': '12', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '95', '247stateRank': '20'}, {'school': 'ole-miss', 'year': '2013', 'playerName': 'Evan Engram', 'highSchool': 'Hillgrove', 'city': 'Powder Springs', 'state': 'GA', 'position': 'WR', 'height': 75.0, 'weight': '210', 'compRating': '0.8435', 'compStars': 3, 'nationalRank': '920', 'positionRank': '124', 'stateRank': '83', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '94', '247stateRank': '64'}, {'school': 'ole-miss', 'year': '2013', 'playerName': 'Herbert Moore', 'highSchool': 'East', 'city': 'Memphis', 'state': 'TN', 'position': 'DT', 'height': 74.0, 'weight': '330', 'compRating': '0.8427', 'compStars': 3, 'nationalRank': '937', 'positionRank': '59', 'stateRank': '19', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '80', '247stateRank': '29'}, {'school': 'ole-miss', 'year': '2013', 'playerName': 'Davion Johnson', 'highSchool': 'Byhalia', 'city': 'Byhalia', 'state': 'MS', 'position': 'OG', 'height': 76.0, 'weight': '315', 'compRating': '0.8397', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '60', 'stateRank': '15', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '68', '247stateRank': '23'}, {'school': 'ole-miss', 'year': '2013', 'playerName': 'Derrick Jones', 'highSchool': 'Eupora', 'city': 'Eupora', 'state': 'MS', 'position': 'WR', 'height': 75.0, 'weight': '195', 'compRating': '0.8392', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '142', 'stateRank': '16', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '137', '247stateRank': '16'}, {'school': 'ole-miss', 'year': '2013', 'playerName': 'Bobby Hill', 'highSchool': 'Colquitt County', 'city': 'Moultrie', 'state': 'GA', 'position': 'WR', 'height': 72.0, 'weight': '175', 'compRating': '0.8349', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '158', 'stateRank': '100', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '196', '247stateRank': '105'}, {'school': 'ole-miss', 'year': '2013', 'playerName': 'Tayler Polk', 'highSchool': 'Brandon', 'city': 'Brandon', 'state': 'MS', 'position': 'OLB', 'height': 71.0, 'weight': '215', 'compRating': '0.8299', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '100', 'stateRank': '21', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '97', '247stateRank': '19'}, {'school': 'ole-miss', 'year': '2013', 'playerName': 'Trey Bledsoe', 'highSchool': 'Grenada', 'city': 'Grenada', 'state': 'MS', 'position': 'S', 'height': 75.0, 'weight': '195', 'compRating': '0.8281', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '88', 'stateRank': '22', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '140', '247stateRank': '32'}, {'school': 'ole-miss', 'year': '2013', 'playerName': 'Will Gleeson', 'highSchool': 'Australian Institute of Sport', 'city': 'Canberra', 'state': 'SW', 'position': 'P', 'height': 75.0, 'weight': '200', 'compRating': '0.7831', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '8', 'stateRank': '2', '247Rating': ' 75 ', '247Stars': 2, '247positionRank': '7', '247stateRank': '3'}, {'school': 'ole-miss', 'year': '2013', 'playerName': 'Fadol Brown', 'highSchool': 'Itawamba C.C.', 'city': 'Fulton', 'state': 'MS', 'position': 'SDE', 'height': 77.0, 'weight': '270', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2013', 'playerName': 'Arshad Jackson', 'highSchool': 'Lovejoy', 'city': 'Hampton', 'state': 'GA', 'position': 'TE', 'height': 78.0, 'weight': '240', 'compRating': '0.8690', 'compStars': 3, 'nationalRank': '487', 'positionRank': '18', 'stateRank': '43'}, {'school': 'ole-miss', 'year': '2013', 'playerName': 'Marcus Robinson', 'highSchool': 'East', 'city': 'Memphis', 'state': 'TN', 'position': 'OLB', 'height': 75.0, 'weight': '210', 'compRating': '0.8478', 'compStars': 3, 'nationalRank': '851', 'positionRank': '68', 'stateRank': '18'}, {'school': 'ole-miss', 'year': '2013', 'playerName': 'David Kamara', 'highSchool': 'Grayson', 'city': 'Loganville', 'state': 'GA', 'position': 'CB', 'height': 69.0, 'weight': '185', 'compRating': '0.8240', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '105', 'stateRank': '119'}, {'school': 'missouri', 'year': '2020', 'playerName': 'Elijah Young', 'highSchool': 'South-Doyle', 'city': 'Knoxville', 'state': 'TN', 'position': 'APB', 'height': 69.0, 'weight': '175', 'compRating': '0.8748', 'compStars': 3, 'nationalRank': '545', 'positionRank': '10', 'stateRank': '14', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '8', '247stateRank': '9'}, {'school': 'missouri', 'year': '2020', 'playerName': 'Jay Maclin', 'highSchool': 'Kirkwood', 'city': 'Saint Louis', 'state': 'MO', 'position': 'WR', 'height': 71.0, 'weight': '178', 'compRating': '0.8742', 'compStars': 3, 'nationalRank': '557', 'positionRank': '90', 'stateRank': '10', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '114', '247stateRank': '10'}, {'school': 'missouri', 'year': '2020', 'playerName': 'Brady Cook', 'highSchool': 'Chaminade College Prep', 'city': 'Saint Louis', 'state': 'MO', 'position': 'PRO', 'height': 75.0, 'weight': '210', 'compRating': '0.8646', 'compStars': 3, 'nationalRank': '743', 'positionRank': '29', 'stateRank': '16', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '28', '247stateRank': '18'}, {'school': 'missouri', 'year': '2020', 'playerName': 'Harrison Mevis', 'highSchool': 'Warsaw Community', 'city': 'Warsaw', 'state': 'IN', 'position': 'K', 'height': 73.0, 'weight': '200', 'compRating': '0.8170', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '8', 'stateRank': '29', '247Rating': ' 75 ', '247Stars': 2, '247positionRank': '16', '247stateRank': '45'}, {'school': 'missouri', 'year': '2020', 'playerName': 'Javian Hester', 'highSchool': 'Booker T. Washington', 'city': 'Tulsa', 'state': 'OK', 'position': 'WR', 'height': 75.5, 'weight': '181', 'compRating': '0.8974', 'compStars': 4, 'nationalRank': '314', 'positionRank': '54', 'stateRank': '3'}, {'school': 'missouri', 'year': '2020', 'playerName': 'Kris Abrams-Draine', 'highSchool': 'Spanish Fort', 'city': 'Spanish Fort', 'state': 'AL', 'position': 'WR', 'height': 73.0, 'weight': '170', 'compRating': '0.8851', 'compStars': 3, 'nationalRank': '420', 'positionRank': '72', 'stateRank': '19'}, {'school': 'missouri', 'year': '2020', 'playerName': 'Drake Heismeyer', 'highSchool': 'Francis Howell', 'city': 'Saint Charles', 'state': 'MO', 'position': 'OG', 'height': 75.0, 'weight': '283', 'compRating': '0.8714', 'compStars': 3, 'nationalRank': '599', 'positionRank': '35', 'stateRank': '12'}, {'school': 'missouri', 'year': '2020', 'playerName': 'Mitchell Walters', 'highSchool': 'Mehlville', 'city': 'Saint Louis', 'state': 'MO', 'position': 'OT', 'height': 80.0, 'weight': '275', 'compRating': '0.8680', 'compStars': 3, 'nationalRank': '661', 'positionRank': '49', 'stateRank': '13'}, {'school': 'missouri', 'year': '2020', 'playerName': 'Montra Edwards', 'highSchool': 'Holmes County Central', 'city': 'Lexington', 'state': 'MS', 'position': 'DT', 'height': 75.0, 'weight': '293', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '684', 'positionRank': '58', 'stateRank': '20', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '79', '247stateRank': '26'}, {'school': 'missouri', 'year': '2020', 'playerName': 'Ennis Rakestraw', 'highSchool': 'Duncanville', 'city': 'Duncanville', 'state': 'TX', 'position': 'CB', 'height': 72.0, 'weight': '170', 'compRating': '0.8581', 'compStars': 3, 'nationalRank': '895', 'positionRank': '70', 'stateRank': '107'}, {'school': 'missouri', 'year': '2020', 'playerName': 'Benjamin Key', 'highSchool': 'East Los Angeles College', 'city': 'Monterey Park', 'state': 'CA', 'position': 'SDE', 'height': 77.0, 'weight': '280', 'compRating': '0.8528', 'compStars': 3, 'nationalRank': '86', 'positionRank': '13', 'stateRank': '18'}, {'school': 'missouri', 'year': '2020', 'playerName': 'Jaylon Carlies', 'highSchool': 'West Orange', 'city': 'Winter Garden', 'state': 'FL', 'position': 'ATH', 'height': 74.0, 'weight': '184', 'compRating': '0.8526', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '63', 'stateRank': '134'}, {'school': 'missouri', 'year': '2020', 'playerName': 'Will Norris', 'highSchool': 'Rock Bridge', 'city': 'Columbia', 'state': 'MO', 'position': 'ILB', 'height': 73.0, 'weight': '216', 'compRating': '0.8471', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '56', 'stateRank': '22'}, {'school': 'missouri', 'year': '2020', 'playerName': 'Tyler Jones', 'highSchool': 'West Orange', 'city': 'Winter Garden', 'state': 'FL', 'position': 'S', 'height': 72.0, 'weight': '180', 'compRating': '0.8452', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '89', 'stateRank': '164'}, {'school': 'missouri', 'year': '2020', 'playerName': 'Johnny Walker', 'highSchool': 'Chamberlain', 'city': 'Tampa', 'state': 'FL', 'position': 'OLB', 'height': 75.0, 'weight': '204', 'compRating': '0.8452', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '85', 'stateRank': '165'}, {'school': 'missouri', 'year': '2020', 'playerName': 'Dylan Spencer', 'highSchool': 'Madison Central', 'city': 'Madison', 'state': 'MS', 'position': 'OT', 'height': 76.0, 'weight': '300', 'compRating': '0.8265', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '157', 'stateRank': '47', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '100', '247stateRank': '33'}, {'school': 'ole-miss', 'year': '2012', 'playerName': 'Channing Ward', 'highSchool': 'Aberdeen', 'city': 'Aberdeen', 'state': 'MS', 'position': 'WDE', 'height': 75.0, 'weight': '250', 'compRating': '0.9842', 'compStars': 5, 'nationalRank': '35', 'positionRank': '5', 'stateRank': '1', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '36', '247positionRank': '6', '247stateRank': '1'}, {'school': 'ole-miss', 'year': '2012', 'playerName': "I'Tavius Mathers", 'highSchool': 'Blackman', 'city': 'Murfreesboro', 'state': 'TN', 'position': 'RB', 'height': 71.0, 'weight': '195', 'compRating': '0.8965', 'compStars': 4, 'nationalRank': '336', 'positionRank': '18', 'stateRank': '7', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '210', '247positionRank': '12', '247stateRank': '3'}, {'school': 'ole-miss', 'year': '2012', 'playerName': 'Isaac Gross', 'highSchool': 'South Panola', 'city': 'Batesville', 'state': 'MS', 'position': 'SDE', 'height': 75.0, 'weight': '265', 'compRating': '0.8950', 'compStars': 4, 'nationalRank': '342', 'positionRank': '18', 'stateRank': '6', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '24', '247stateRank': '7'}, {'school': 'ole-miss', 'year': '2012', 'playerName': 'Trae Elston', 'highSchool': 'Oxford', 'city': 'Oxford', 'state': 'AL', 'position': 'S', 'height': 71.0, 'weight': '180', 'compRating': '0.8820', 'compStars': 3, 'nationalRank': '458', 'positionRank': '27', 'stateRank': '17', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '32', '247stateRank': '19'}, {'school': 'ole-miss', 'year': '2012', 'playerName': 'Anthony Standifer', 'highSchool': 'Crete-Monee', 'city': 'Crete', 'state': 'IL', 'position': 'CB', 'height': 73.0, 'weight': '180', 'compRating': '0.8796', 'compStars': 3, 'nationalRank': '482', 'positionRank': '35', 'stateRank': '12', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '41', '247stateRank': '12'}, {'school': 'ole-miss', 'year': '2012', 'playerName': 'Jaylen Walton', 'highSchool': 'Ridgeway', 'city': 'Memphis', 'state': 'TN', 'position': 'APB', 'height': 68.0, 'weight': '170', 'compRating': '0.8772', 'compStars': 3, 'nationalRank': '525', 'positionRank': '12', 'stateRank': '12', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '11', '247stateRank': '9'}, {'school': 'ole-miss', 'year': '2012', 'playerName': 'Kenno Loyal', 'highSchool': 'Columbia', 'city': 'Decatur', 'state': 'GA', 'position': 'RB', 'height': 71.0, 'weight': '220', 'compRating': '0.8709', 'compStars': 3, 'nationalRank': '617', 'positionRank': '34', 'stateRank': '48'}, {'school': 'ole-miss', 'year': '2012', 'playerName': 'Bo Wallace', 'highSchool': 'East Mississippi C.C.', 'city': 'Scooba', 'state': 'MS', 'position': 'DUAL', 'height': 76.0, 'weight': '220', 'compRating': '0.8630', 'compStars': 3, 'nationalRank': '36', 'positionRank': '1', 'stateRank': '10', '247Rating': ' 90 ', '247Stars': 4, '247nationalRank': '30', '247positionRank': '2', '247stateRank': '10'}, {'school': 'ole-miss', 'year': '2012', 'playerName': 'Ben Still', 'highSchool': 'Memphis University School', 'city': 'Memphis', 'state': 'TN', 'position': 'OG', 'height': 75.0, 'weight': '285', 'compRating': '0.8562', 'compStars': 3, 'nationalRank': '789', 'positionRank': '43', 'stateRank': '21', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '42', '247stateRank': '20'}, {'school': 'ole-miss', 'year': '2012', 'playerName': 'Temario Strong', 'highSchool': 'South Panola', 'city': 'Batesville', 'state': 'MS', 'position': 'OLB', 'height': 73.0, 'weight': '205', 'compRating': '0.8487', 'compStars': 3, 'nationalRank': '885', 'positionRank': '78', 'stateRank': '16', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '72', '247stateRank': '14'}, {'school': 'ole-miss', 'year': '2012', 'playerName': 'Mike Hilton', 'highSchool': 'Sandy Creek', 'city': 'Tyrone', 'state': 'GA', 'position': 'RB', 'height': 69.0, 'weight': '185', 'compRating': '0.8431', 'compStars': 3, 'nationalRank': '975', 'positionRank': '57', 'stateRank': '81', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '53', '247stateRank': '70'}, {'school': 'ole-miss', 'year': '2012', 'playerName': 'Pierce Burton', 'highSchool': 'City College of San Francisco', 'city': 'San Francisco', 'state': 'CA', 'position': 'OT', 'height': 78.0, 'weight': '305', 'compRating': '0.8363', 'compStars': 3, 'nationalRank': '70', 'positionRank': '13', 'stateRank': '22', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2012', 'playerName': 'Robert Conyers', 'highSchool': 'G. Holmes Braddock Senior', 'city': 'Miami', 'state': 'FL', 'position': 'OT', 'height': 77.0, 'weight': '288', 'compRating': '0.8217', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '123', 'stateRank': '166', '247Rating': ' 73 ', '247Stars': 2, '247positionRank': '205', '247stateRank': '324'}, {'school': 'ole-miss', 'year': '2012', 'playerName': 'Darone Bailey', 'highSchool': 'Coahoma C.C.', 'city': 'Clarksdale', 'state': 'MS', 'position': 'OG', 'height': 78.0, 'weight': '315', 'compRating': '0.8100', 'compStars': 3, 'nationalRank': '115', 'positionRank': '5', 'stateRank': '18', '247Rating': ' 83 ', '247Stars': 3, '247nationalRank': '90', '247positionRank': '3', '247stateRank': '15'}, {'school': 'ole-miss', 'year': '2012', 'playerName': 'Cody Core', 'highSchool': 'Auburn', 'city': 'Auburn', 'state': 'AL', 'position': 'WR', 'height': 75.0, 'weight': '190', 'compRating': '0.8018', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '228', 'stateRank': '55', '247Rating': ' 78 ', '247Stars': 2, '247positionRank': '222', '247stateRank': '47'}, {'school': 'ole-miss', 'year': '2012', 'playerName': 'Quintavius Burdette', 'highSchool': 'Senatobia', 'city': 'Senatobia', 'state': 'MS', 'position': 'RB', 'height': 70.0, 'weight': '180', 'compRating': '0.7857', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '123', 'stateRank': '40', '247Rating': ' 76 ', '247Stars': 2, '247positionRank': '121', '247stateRank': '42'}, {'school': 'ole-miss', 'year': '2012', 'playerName': 'John Youngblood', 'highSchool': 'Hewitt-Trussville', 'city': 'Trussville', 'state': 'AL', 'position': 'TE', 'height': 77.0, 'weight': '235', 'compRating': '0.7724', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '108', 'stateRank': '72', '247Rating': ' 74 ', '247Stars': 2, '247positionRank': '100', '247stateRank': '81'}, {'school': 'ole-miss', 'year': '2012', 'playerName': 'Andy Pappanastos', 'highSchool': 'Trinity Presbyterian School', 'city': 'Montgomery', 'state': 'AL', 'position': 'K', 'height': 71.0, 'weight': '160', 'compRating': '0.7000', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '42', 'stateRank': '111', '247Rating': ' 70 ', '247Stars': 2, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2004', 'playerName': 'Chris Herring', 'highSchool': 'Northwest Mississippi C.C.', 'city': 'Senatobia', 'state': 'MS', 'position': 'DT', 'height': 74.0, 'weight': '311', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '13', 'positionRank': '3', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2004', 'playerName': 'Corey Kizer', 'highSchool': 'Melrose', 'city': 'Memphis', 'state': 'TN', 'position': 'WR', 'height': 75.0, 'weight': '190', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '302', 'positionRank': '37', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2004', 'playerName': 'Larry Kendrick', 'highSchool': 'Pearl River C.C.', 'city': 'Poplarville', 'state': 'MS', 'position': 'WR', 'height': 72.0, 'weight': '205', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '33', 'positionRank': '3', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2004', 'playerName': 'Corey Mills', 'highSchool': 'Christian Brothers', 'city': 'Memphis', 'state': 'TN', 'position': 'DT', 'height': 77.0, 'weight': '260', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '351', 'positionRank': '30', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2004', 'playerName': 'Chris Bowers', 'highSchool': 'Evangel Christian Academy', 'city': 'Shreveport', 'state': 'LA', 'position': 'WDE', 'height': 75.0, 'weight': '240', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '362', 'positionRank': '19', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2004', 'playerName': 'Terrell Jackson', 'highSchool': 'Puckett Attendance Center', 'city': 'Pulaski', 'state': 'MS', 'position': 'CB', 'height': 71.0, 'weight': '185', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '376', 'positionRank': '25', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2004', 'playerName': 'Lavarus Giles', 'highSchool': 'Ray Brooks School', 'city': 'Benoit', 'state': 'MS', 'position': 'RB', 'height': 73.0, 'weight': '205', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '508', 'positionRank': '37', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2004', 'playerName': 'Tony Burks', 'highSchool': 'Harrison Central', 'city': 'Gulfport', 'state': 'MS', 'position': 'WR', 'height': 76.0, 'weight': '200', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '520', 'positionRank': '62', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2004', 'playerName': 'James McCoy', 'highSchool': 'Mississippi Gulf Coast C.C.', 'city': 'Perkinston', 'state': 'MS', 'position': 'OT', 'height': 75.0, 'weight': '290', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '51', 'positionRank': '6', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2004', 'playerName': 'Gremico McSwain', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'S', 'height': 74.0, 'weight': '205', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '15', 'positionRank': '1', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2004', 'playerName': 'Dustin Mouzon', 'highSchool': 'Edgewater', 'city': 'Orlando', 'state': 'FL', 'position': 'CB', 'height': 72.0, 'weight': '175', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '686', 'positionRank': '50', 'stateRank': '76', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2004', 'playerName': 'Tim Henderson', 'highSchool': 'Evangel Christian Academy', 'city': 'Shreveport', 'state': 'LA', 'position': 'OG', 'height': 76.0, 'weight': '321', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '743', 'positionRank': '58', 'stateRank': '27', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2004', 'playerName': 'Alton Pettway', 'highSchool': 'Itawamba C.C.', 'city': 'Fulton', 'state': 'MS', 'position': 'DT', 'height': 74.0, 'weight': '275', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '99', 'positionRank': '17', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2004', 'playerName': 'Peria Jerry', 'highSchool': 'South Panola', 'city': 'Batesville', 'state': 'MS', 'position': 'SDE', 'height': 74.0, 'weight': '260', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '811', 'positionRank': '49', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2004', 'playerName': 'Brandon Thomas', 'highSchool': 'North Augusta', 'city': 'North Augusta', 'state': 'SC', 'position': 'ILB', 'height': 73.0, 'weight': '230', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': '847', 'positionRank': '49', 'stateRank': '22', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2004', 'playerName': 'Paul Eck', 'highSchool': 'Andale', 'city': 'Andale', 'state': 'KS', 'position': 'PRO', 'height': 77.0, 'weight': '205', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '50', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2004', 'playerName': 'Reterio Brown', 'highSchool': 'South Panola', 'city': 'Batesville', 'state': 'MS', 'position': 'ILB', 'height': 75.0, 'weight': '210', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '73', 'stateRank': '27', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2004', 'playerName': 'Corvelli Haynes', 'highSchool': 'Mississippi Delta C.C.', 'city': 'Moorhead', 'state': 'MS', 'position': 'SDE', 'height': 75.0, 'weight': '245', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': '219', 'positionRank': '21', 'stateRank': '38', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2004', 'playerName': 'JaMarca Sanford', 'highSchool': 'South Panola', 'city': 'Batesville', 'state': 'MS', 'position': 'OLB', 'height': 71.0, 'weight': '192', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '119', 'stateRank': '36', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2004', 'playerName': 'David Traxler', 'highSchool': 'Jackson Academy', 'city': 'Jackson', 'state': 'MS', 'position': 'OT', 'height': 78.0, 'weight': '260', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '132', 'stateRank': '38', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2004', 'playerName': 'Maurice Miller', 'highSchool': 'Helena-West Helena Central', 'city': 'West Helena', 'state': 'AR', 'position': 'OG', 'height': 76.0, 'weight': '330', 'compRating': '0.7444', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '198', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2004', 'playerName': 'Jason Cook', 'highSchool': 'North Gwinnett', 'city': 'Suwanee', 'state': 'GA', 'position': 'OLB', 'height': 76.0, 'weight': '200', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '133', 'stateRank': '120', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2004', 'playerName': 'Garry Pack', 'highSchool': 'Oak Grove', 'city': 'Hattiesburg', 'state': 'MS', 'position': 'ILB', 'height': 73.0, 'weight': '215', 'compRating': '0.9699', 'compStars': 4, 'nationalRank': '80', 'positionRank': '7', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2018', 'playerName': 'Rick Sandidge', 'highSchool': 'Concord', 'city': 'Concord', 'state': 'NC', 'position': 'DT', 'height': 77.0, 'weight': '285', 'compRating': '0.9416', 'compStars': 4, 'nationalRank': '141', 'positionRank': '14', 'stateRank': '6', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '113', '247positionRank': '11', '247stateRank': '7'}, {'school': 'south-carolina', 'year': '2018', 'playerName': 'Josh Vann', 'highSchool': 'Tucker', 'city': 'Tucker', 'state': 'GA', 'position': 'WR', 'height': 70.5, 'weight': '175', 'compRating': '0.9388', 'compStars': 4, 'nationalRank': '146', 'positionRank': '25', 'stateRank': '19', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '75', '247positionRank': '10', '247stateRank': '9'}, {'school': 'south-carolina', 'year': '2018', 'playerName': 'Dylan Wonnum', 'highSchool': 'Tucker', 'city': 'Tucker', 'state': 'GA', 'position': 'OT', 'height': 77.0, 'weight': '323', 'compRating': '0.9385', 'compStars': 4, 'nationalRank': '148', 'positionRank': '12', 'stateRank': '20', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '24', '247stateRank': '33'}, {'school': 'south-carolina', 'year': '2018', 'playerName': 'Dakereon Joyner', 'highSchool': 'Fort Dorchester', 'city': 'North Charleston', 'state': 'SC', 'position': 'DUAL', 'height': 74.0, 'weight': '206', 'compRating': '0.9199', 'compStars': 4, 'nationalRank': '206', 'positionRank': '9', 'stateRank': '4', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '10', '247stateRank': '5'}, {'school': 'south-carolina', 'year': '2018', 'playerName': 'Jaycee Horn', 'highSchool': 'Alpharetta', 'city': 'Alpharetta', 'state': 'GA', 'position': 'CB', 'height': 72.0, 'weight': '190', 'compRating': '0.9188', 'compStars': 4, 'nationalRank': '209', 'positionRank': '22', 'stateRank': '26', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '42', '247stateRank': '41'}, {'school': 'south-carolina', 'year': '2018', 'playerName': 'Kingsley Enagbare', 'highSchool': 'Hapeville Charter', 'city': 'Atlanta', 'state': 'GA', 'position': 'SDE', 'height': 76.0, 'weight': '257', 'compRating': '0.9061', 'compStars': 4, 'nationalRank': '269', 'positionRank': '10', 'stateRank': '29', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '11', '247stateRank': '28'}, {'school': 'south-carolina', 'year': '2018', 'playerName': 'Jovaughn Gwyn', 'highSchool': 'Harding University High', 'city': 'Charlotte', 'state': 'NC', 'position': 'OG', 'height': 74.0, 'weight': '291', 'compRating': '0.8937', 'compStars': 4, 'nationalRank': '347', 'positionRank': '15', 'stateRank': '13', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '16', '247stateRank': '14'}, {'school': 'south-carolina', 'year': '2018', 'playerName': 'Rosendo Louis', 'highSchool': 'Deerfield Beach', 'city': 'Deerfield Beach', 'state': 'FL', 'position': 'ILB', 'height': 73.0, 'weight': '225', 'compRating': '0.8927', 'compStars': 4, 'nationalRank': '352', 'positionRank': '19', 'stateRank': '62', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '24', '247stateRank': '55'}, {'school': 'south-carolina', 'year': '2018', 'playerName': 'Jonathan Gipson', 'highSchool': 'Mill Creek', 'city': 'Hoschton', 'state': 'GA', 'position': 'CB', 'height': 74.0, 'weight': '182', 'compRating': '0.8887', 'compStars': 3, 'nationalRank': '387', 'positionRank': '37', 'stateRank': '42', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '33', '247stateRank': '34'}, {'school': 'south-carolina', 'year': '2018', 'playerName': 'Maxwell Iyama', 'highSchool': 'Siegel', 'city': 'Murfreesboro', 'state': 'TN', 'position': 'OT', 'height': 77.0, 'weight': '299', 'compRating': '0.8795', 'compStars': 3, 'nationalRank': '497', 'positionRank': '40', 'stateRank': '15', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '77', '247stateRank': '27'}, {'school': 'south-carolina', 'year': '2018', 'playerName': 'Hank Manos', 'highSchool': 'Chapin', 'city': 'Chapin', 'state': 'SC', 'position': 'OC', 'height': 76.0, 'weight': '275', 'compRating': '0.8789', 'compStars': 3, 'nationalRank': '502', 'positionRank': '9', 'stateRank': '8', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '6', '247stateRank': '7'}, {'school': 'south-carolina', 'year': '2018', 'playerName': 'Deshaun Fenwick', 'highSchool': 'Braden River', 'city': 'Bradenton', 'state': 'FL', 'position': 'APB', 'height': 75.0, 'weight': '208', 'compRating': '0.8763', 'compStars': 3, 'nationalRank': '536', 'positionRank': '15', 'stateRank': '84', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '20', '247stateRank': '94'}, {'school': 'south-carolina', 'year': '2018', 'playerName': 'Lavonte Valentine', 'highSchool': 'Melbourne Central Catholic', 'city': 'Melbourne', 'state': 'FL', 'position': 'APB', 'height': 72.0, 'weight': '188', 'compRating': '0.8721', 'compStars': 3, 'nationalRank': '608', 'positionRank': '18', 'stateRank': '94', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '19', '247stateRank': '89'}, {'school': 'south-carolina', 'year': '2018', 'playerName': 'Jabari Ellis', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'DT', 'height': 74.0, 'weight': '280', 'compRating': '0.8697', 'compStars': 3, 'nationalRank': '52', 'positionRank': '14', 'stateRank': '1', '247Rating': ' 85 ', '247Stars': 3, '247nationalRank': '82', '247positionRank': '17', '247stateRank': '1'}, {'school': 'south-carolina', 'year': '2018', 'playerName': 'Israel Mukuamu', 'highSchool': 'Parkway', 'city': 'Bossier City', 'state': 'LA', 'position': 'S', 'height': 77.0, 'weight': '187', 'compRating': '0.8688', 'compStars': 3, 'nationalRank': '655', 'positionRank': '47', 'stateRank': '27', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '62', '247stateRank': '35'}, {'school': 'south-carolina', 'year': '2018', 'playerName': 'Jesus Gibbs', 'highSchool': 'Potomac', 'city': 'Dumfries', 'state': 'VA', 'position': 'OT', 'height': 75.0, 'weight': '283', 'compRating': '0.8615', 'compStars': 3, 'nationalRank': '781', 'positionRank': '60', 'stateRank': '18', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '49', '247stateRank': '16'}, {'school': 'south-carolina', 'year': '2018', 'playerName': 'Ernest Jones', 'highSchool': 'Ware County', 'city': 'Waycross', 'state': 'GA', 'position': 'OLB', 'height': 74.0, 'weight': '205', 'compRating': '0.8552', 'compStars': 3, 'nationalRank': '926', 'positionRank': '62', 'stateRank': '85', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '47', '247stateRank': '56'}, {'school': 'south-carolina', 'year': '2018', 'playerName': 'Wyatt Campbell', 'highSchool': 'Lugoff-Elgin', 'city': 'Lugoff', 'state': 'SC', 'position': 'OT', 'height': 79.0, 'weight': '290', 'compRating': '0.8552', 'compStars': 3, 'nationalRank': '928', 'positionRank': '78', 'stateRank': '17', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '55', '247stateRank': '10'}, {'school': 'south-carolina', 'year': '2018', 'playerName': 'Darius Rush', 'highSchool': 'C E Murray Hi', 'city': 'Greeleyville', 'state': 'SC', 'position': 'WR', 'height': 74.0, 'weight': '172', 'compRating': '0.8506', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '154', 'stateRank': '21', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '138', '247stateRank': '15'}, {'school': 'south-carolina', 'year': '2018', 'playerName': 'R.J. Roderick', 'highSchool': 'Cane Bay', 'city': 'Summerville', 'state': 'SC', 'position': 'S', 'height': 72.0, 'weight': '207', 'compRating': '0.8438', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '98', 'stateRank': '24', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '128', '247stateRank': '31'}, {'school': 'south-carolina', 'year': '2018', 'playerName': 'Tyquan Johnson', 'highSchool': 'Screven County', 'city': 'Sylvania', 'state': 'GA', 'position': 'WR', 'height': 75.0, 'weight': '195', 'compRating': '0.8702', 'compStars': 3, 'nationalRank': '639', 'positionRank': '99', 'stateRank': '66', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '1', '247positionRank': '1', '247stateRank': '1'}, {'school': 'lsu', 'year': '2008', 'playerName': 'Chancey Aghayere', 'highSchool': 'Garland', 'city': 'Garland', 'state': 'TX', 'position': 'SDE', 'height': 77.0, 'weight': '244', 'compRating': '0.9735', 'compStars': 4, 'nationalRank': '58', 'positionRank': '4', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2008', 'playerName': 'Ryan Baker', 'highSchool': 'Blountstown', 'city': 'Blountstown', 'state': 'FL', 'position': 'OLB', 'height': 72.0, 'weight': '210', 'compRating': '0.9340', 'compStars': 4, 'nationalRank': '135', 'positionRank': '14', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2008', 'playerName': 'Chase Clement', 'highSchool': 'E D White Catholic', 'city': 'Thibodaux', 'state': 'LA', 'position': 'SDE', 'height': 77.0, 'weight': '241', 'compRating': '0.9280', 'compStars': 4, 'nationalRank': '155', 'positionRank': '8', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2008', 'playerName': 'Karnell Hatcher', 'highSchool': 'Atlantic', 'city': 'Delray Beach', 'state': 'FL', 'position': 'S', 'height': 74.0, 'weight': '186', 'compRating': '0.9258', 'compStars': 4, 'nationalRank': '167', 'positionRank': '12', 'stateRank': '31', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2008', 'playerName': 'Brandon Taylor', 'highSchool': 'Franklinton', 'city': 'Franklinton', 'state': 'LA', 'position': 'S', 'height': 72.0, 'weight': '176', 'compRating': '0.9249', 'compStars': 4, 'nationalRank': '168', 'positionRank': '13', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2008', 'playerName': 'DeAngelo Peterson', 'highSchool': 'Desire Street Academy', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'ATH', 'height': 75.0, 'weight': '195', 'compRating': '0.9177', 'compStars': 4, 'nationalRank': '186', 'positionRank': '12', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2008', 'playerName': 'Matt Branch', 'highSchool': 'Sterlington', 'city': 'Monroe', 'state': 'LA', 'position': 'OT', 'height': 79.0, 'weight': '240', 'compRating': '0.9081', 'compStars': 4, 'nationalRank': '223', 'positionRank': '21', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2008', 'playerName': 'Jordan Jefferson', 'highSchool': 'Destrehan', 'city': 'Destrehan', 'state': 'LA', 'position': 'PRO', 'height': 77.0, 'weight': '200', 'compRating': '0.9022', 'compStars': 4, 'nationalRank': '250', 'positionRank': '11', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2008', 'playerName': 'Tyler Edwards', 'highSchool': 'Ouachita Parish', 'city': 'Monroe', 'state': 'LA', 'position': 'TE', 'height': 75.0, 'weight': '222', 'compRating': '0.8942', 'compStars': 4, 'nationalRank': '291', 'positionRank': '15', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2008', 'playerName': 'Greg Shaw', 'highSchool': 'Monsignor Pace', 'city': 'Opa Locka', 'state': 'FL', 'position': 'OT', 'height': 77.0, 'weight': '267', 'compRating': '0.8934', 'compStars': 4, 'nationalRank': '309', 'positionRank': '30', 'stateRank': '45', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2008', 'playerName': 'Kyle Prater', 'highSchool': 'Tivy', 'city': 'Kerrville', 'state': 'TX', 'position': 'OLB', 'height': 74.0, 'weight': '215', 'compRating': '0.8925', 'compStars': 4, 'nationalRank': '315', 'positionRank': '26', 'stateRank': '47', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2008', 'playerName': 'Clay Spencer', 'highSchool': 'Parkview Baptist School', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'OG', 'height': 77.0, 'weight': '285', 'compRating': '0.8813', 'compStars': 3, 'nationalRank': '387', 'positionRank': '19', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2008', 'playerName': 'Thomas Parsons', 'highSchool': 'Smithson Valley', 'city': 'Spring Branch', 'state': 'TX', 'position': 'OT', 'height': 78.0, 'weight': '270', 'compRating': '0.8764', 'compStars': 3, 'nationalRank': '447', 'positionRank': '42', 'stateRank': '65', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2008', 'playerName': 'Cordian Hagans', 'highSchool': 'Northview', 'city': 'Duluth', 'state': 'GA', 'position': 'OT', 'height': 77.0, 'weight': '300', 'compRating': '0.8733', 'compStars': 3, 'nationalRank': '469', 'positionRank': '46', 'stateRank': '33', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2008', 'playerName': 'Derrick Bryant', 'highSchool': 'Peachtree Ridge', 'city': 'Suwanee', 'state': 'GA', 'position': 'CB', 'height': 73.0, 'weight': '186', 'compRating': '0.8701', 'compStars': 3, 'nationalRank': '500', 'positionRank': '32', 'stateRank': '37', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2008', 'playerName': 'Kellen Theriot', 'highSchool': 'Episcopal', 'city': 'Bellaire', 'state': 'TX', 'position': 'ATH', 'height': 74.0, 'weight': '225', 'compRating': '0.8701', 'compStars': 3, 'nationalRank': '503', 'positionRank': '25', 'stateRank': '76', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2008', 'playerName': 'Rockey Duplessis', 'highSchool': 'Belle Chasse', 'city': 'Belle Chasse', 'state': 'LA', 'position': 'S', 'height': 73.0, 'weight': '184', 'compRating': '0.8684', 'compStars': 3, 'nationalRank': '516', 'positionRank': '44', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2008', 'playerName': 'Ryan St. Julien', 'highSchool': 'Catholic', 'city': 'New Iberia', 'state': 'LA', 'position': 'CB', 'height': 73.0, 'weight': '169', 'compRating': '0.8653', 'compStars': 3, 'nationalRank': '566', 'positionRank': '37', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2008', 'playerName': 'Jhyryn Taylor', 'highSchool': 'Franklinton', 'city': 'Franklinton', 'state': 'LA', 'position': 'ATH', 'height': 73.0, 'weight': '172', 'compRating': '0.8639', 'compStars': 3, 'nationalRank': '580', 'positionRank': '33', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2008', 'playerName': 'Tim Molton', 'highSchool': 'Destrehan', 'city': 'Destrehan', 'state': 'LA', 'position': 'WR', 'height': 75.0, 'weight': '185', 'compRating': '0.8639', 'compStars': 3, 'nationalRank': '582', 'positionRank': '73', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2008', 'playerName': 'P.J. Lonergan', 'highSchool': 'Archbishop Rummel', 'city': 'Metairie', 'state': 'LA', 'position': 'OG', 'height': 76.0, 'weight': '288', 'compRating': '0.8573', 'compStars': 3, 'nationalRank': '642', 'positionRank': '44', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2008', 'playerName': 'Alex Hurst', 'highSchool': 'Arlington', 'city': 'Arlington', 'state': 'TN', 'position': 'OT', 'height': 78.0, 'weight': '312', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '679', 'positionRank': '57', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2008', 'playerName': 'Lavar Edwards', 'highSchool': 'Desire Street Academy', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'SDE', 'height': 76.0, 'weight': '300', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '959', 'positionRank': '52', 'stateRank': '32', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2008', 'playerName': 'Patrick Peterson', 'highSchool': 'Blanche Ely', 'city': 'Pompano Beach', 'state': 'FL', 'position': 'CB', 'height': 73.0, 'weight': '195', 'compRating': '0.9977', 'compStars': 5, 'nationalRank': '6', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2008', 'playerName': 'Chris Tolliver', 'highSchool': 'Rayville', 'city': 'Rayville', 'state': 'LA', 'position': 'WR', 'height': 73.0, 'weight': '180', 'compRating': '0.9273', 'compStars': 4, 'nationalRank': '159', 'positionRank': '23', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2019', 'playerName': 'Chris Steele', 'highSchool': 'St. John Bosco', 'city': 'Bellflower', 'state': 'CA', 'position': 'CB', 'height': 73.5, 'weight': '187', 'compRating': '0.9782', 'compStars': 4, 'nationalRank': '42', 'positionRank': '5', 'stateRank': '6', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '68', '247positionRank': '9', '247stateRank': '13'}, {'school': 'florida', 'year': '2019', 'playerName': 'Kaiir Elam', 'highSchool': 'The Benjamin School', 'city': 'North Palm Beach', 'state': 'FL', 'position': 'CB', 'height': 73.0, 'weight': '182', 'compRating': '0.9755', 'compStars': 4, 'nationalRank': '48', 'positionRank': '6', 'stateRank': '7', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '74', '247positionRank': '10', '247stateRank': '9'}, {'school': 'florida', 'year': '2019', 'playerName': 'Khris Bogle', 'highSchool': 'Cardinal Gibbons', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'WDE', 'height': 75.5, 'weight': '212', 'compRating': '0.9677', 'compStars': 4, 'nationalRank': '71', 'positionRank': '3', 'stateRank': '10', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '49', '247positionRank': '3', '247stateRank': '6'}, {'school': 'florida', 'year': '2019', 'playerName': "Ty'Ron Hopper", 'highSchool': 'Roswell', 'city': 'Roswell', 'state': 'GA', 'position': 'OLB', 'height': 74.0, 'weight': '197', 'compRating': '0.9595', 'compStars': 4, 'nationalRank': '88', 'positionRank': '4', 'stateRank': '11', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '84', '247positionRank': '6', '247stateRank': '11'}, {'school': 'florida', 'year': '2019', 'playerName': 'Keon Zipperer', 'highSchool': 'Lakeland', 'city': 'Lakeland', 'state': 'FL', 'position': 'TE', 'height': 74.0, 'weight': '240', 'compRating': '0.9543', 'compStars': 4, 'nationalRank': '104', 'positionRank': '2', 'stateRank': '15', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '133', '247positionRank': '3', '247stateRank': '15'}, {'school': 'florida', 'year': '2019', 'playerName': 'Mohamoud Diabate', 'highSchool': 'Auburn', 'city': 'Auburn', 'state': 'AL', 'position': 'OLB', 'height': 75.0, 'weight': '215', 'compRating': '0.9510', 'compStars': 4, 'nationalRank': '109', 'positionRank': '6', 'stateRank': '6', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '127', '247positionRank': '9', '247stateRank': '6'}, {'school': 'florida', 'year': '2019', 'playerName': 'Lloyd Summerall', 'highSchool': 'Lakeland', 'city': 'Lakeland', 'state': 'FL', 'position': 'WDE', 'height': 77.0, 'weight': '220', 'compRating': '0.9100', 'compStars': 4, 'nationalRank': '243', 'positionRank': '15', 'stateRank': '36', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '30', '247stateRank': '50'}, {'school': 'florida', 'year': '2019', 'playerName': "Nay'Quan Wright", 'highSchool': 'Miami Carol City', 'city': 'Opa Locka', 'state': 'FL', 'position': 'RB', 'height': 68.0, 'weight': '188', 'compRating': '0.9061', 'compStars': 4, 'nationalRank': '261', 'positionRank': '16', 'stateRank': '37', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '24', '247stateRank': '36'}, {'school': 'florida', 'year': '2019', 'playerName': 'Jaelin Humphries', 'highSchool': 'Mountain View', 'city': 'Lawrenceville', 'state': 'GA', 'position': 'DT', 'height': 75.0, 'weight': '303', 'compRating': '0.9059', 'compStars': 4, 'nationalRank': '264', 'positionRank': '20', 'stateRank': '29', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '33', '247stateRank': '40'}, {'school': 'florida', 'year': '2019', 'playerName': 'Michael Tarquin', 'highSchool': 'North Marion', 'city': 'Citra', 'state': 'FL', 'position': 'OT', 'height': 78.0, 'weight': '290', 'compRating': '0.9041', 'compStars': 4, 'nationalRank': '277', 'positionRank': '22', 'stateRank': '39', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '55', '247stateRank': '72'}, {'school': 'florida', 'year': '2019', 'playerName': 'Jalon Jones', 'highSchool': 'Henrico', 'city': 'Richmond', 'state': 'VA', 'position': 'DUAL', 'height': 75.0, 'weight': '205', 'compRating': '0.9001', 'compStars': 4, 'nationalRank': '306', 'positionRank': '10', 'stateRank': '9', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '9', '247stateRank': '12'}, {'school': 'florida', 'year': '2019', 'playerName': 'Jaydon Hill', 'highSchool': 'Bob Jones', 'city': 'Madison', 'state': 'AL', 'position': 'CB', 'height': 72.0, 'weight': '174', 'compRating': '0.8969', 'compStars': 4, 'nationalRank': '323', 'positionRank': '32', 'stateRank': '13', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '187', '247positionRank': '18', '247stateRank': '8'}, {'school': 'florida', 'year': '2019', 'playerName': 'William Harrod', 'highSchool': 'National Christian Academy', 'city': 'Fort Washington', 'state': 'MD', 'position': 'OT', 'height': 77.0, 'weight': '312', 'compRating': '0.8904', 'compStars': 4, 'nationalRank': '384', 'positionRank': '33', 'stateRank': '7', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '76', '247stateRank': '11'}, {'school': 'florida', 'year': '2019', 'playerName': 'Chester Kimbrough', 'highSchool': 'Warren Easton', 'city': 'New Orleans', 'state': 'LA', 'position': 'CB', 'height': 70.0, 'weight': '167', 'compRating': '0.8850', 'compStars': 3, 'nationalRank': '452', 'positionRank': '45', 'stateRank': '19', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '50', '247stateRank': '21'}, {'school': 'florida', 'year': '2019', 'playerName': 'Dionte Marks', 'highSchool': 'Deland', 'city': 'Deland', 'state': 'FL', 'position': 'WR', 'height': 71.0, 'weight': '178', 'compRating': '0.8817', 'compStars': 3, 'nationalRank': '489', 'positionRank': '57', 'stateRank': '61', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '68', '247stateRank': '57'}, {'school': 'florida', 'year': '2019', 'playerName': 'Riley Simonds', 'highSchool': 'Buford', 'city': 'Buford', 'state': 'GA', 'position': 'OG', 'height': 75.5, 'weight': '324', 'compRating': '0.8809', 'compStars': 3, 'nationalRank': '511', 'positionRank': '30', 'stateRank': '53', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '27', '247stateRank': '39'}, {'school': 'florida', 'year': '2019', 'playerName': "Ja'markis Weston", 'highSchool': 'Clewiston', 'city': 'Clewiston', 'state': 'FL', 'position': 'WR', 'height': 75.0, 'weight': '205', 'compRating': '0.8763', 'compStars': 3, 'nationalRank': '562', 'positionRank': '69', 'stateRank': '70', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '81', '247stateRank': '66'}, {'school': 'florida', 'year': '2019', 'playerName': 'Kingsley Eguakun', 'highSchool': 'Sandalwood', 'city': 'Jacksonville', 'state': 'FL', 'position': 'OG', 'height': 75.0, 'weight': '293', 'compRating': '0.8689', 'compStars': 3, 'nationalRank': '686', 'positionRank': '40', 'stateRank': '84', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '43', '247stateRank': '70'}, {'school': 'florida', 'year': '2019', 'playerName': 'Jesiah Pierre', 'highSchool': 'Mount Dora Christian Academy', 'city': 'Mount Dora', 'state': 'FL', 'position': 'OLB', 'height': 74.0, 'weight': '220', 'compRating': '0.8676', 'compStars': 3, 'nationalRank': '718', 'positionRank': '49', 'stateRank': '87', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '64', '247stateRank': '94'}, {'school': 'florida', 'year': '2019', 'playerName': 'Trent Whittemore', 'highSchool': 'F. W. Buchholz', 'city': 'Gainesville', 'state': 'FL', 'position': 'WR', 'height': 75.0, 'weight': '190', 'compRating': '0.8643', 'compStars': 3, 'nationalRank': '794', 'positionRank': '99', 'stateRank': '103', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '130', '247stateRank': '127'}, {'school': 'florida', 'year': '2019', 'playerName': 'Ethan White', 'highSchool': 'Clearwater', 'city': 'Clearwater', 'state': 'FL', 'position': 'OT', 'height': 77.0, 'weight': '390', 'compRating': '0.8643', 'compStars': 3, 'nationalRank': '795', 'positionRank': '63', 'stateRank': '104', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '99', '247stateRank': '147'}, {'school': 'florida', 'year': '2019', 'playerName': 'Diwun Black', 'highSchool': 'Osceola', 'city': 'Kissimmee', 'state': 'FL', 'position': 'ILB', 'height': 75.5, 'weight': '216', 'compRating': '0.9356', 'compStars': 4, 'nationalRank': '151', 'positionRank': '9', 'stateRank': '20'}, {'school': 'florida', 'year': '2019', 'playerName': 'Deyavie Hammond', 'highSchool': 'Lakeland', 'city': 'Lakeland', 'state': 'FL', 'position': 'OG', 'height': 75.0, 'weight': '353', 'compRating': '0.9104', 'compStars': 4, 'nationalRank': '242', 'positionRank': '15', 'stateRank': '35'}, {'school': 'florida', 'year': '2019', 'playerName': 'Wardrick Wilson', 'highSchool': 'Miami Carol City', 'city': 'Opa Locka', 'state': 'FL', 'position': 'OG', 'height': 76.0, 'weight': '305', 'compRating': '0.8917', 'compStars': 4, 'nationalRank': '372', 'positionRank': '22', 'stateRank': '45'}, {'school': 'mississippi-state', 'year': '2016', 'playerName': 'Jeffery Simmons', 'highSchool': 'Noxubee County', 'city': 'Macon', 'state': 'MS', 'position': 'SDE', 'height': 75.5, 'weight': '277', 'compRating': '0.9876', 'compStars': 5, 'nationalRank': '18', 'positionRank': '2', 'stateRank': '1', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '33', '247positionRank': '3', '247stateRank': '1'}, {'school': 'mississippi-state', 'year': '2016', 'playerName': 'Kobe Jones', 'highSchool': 'Starkville', 'city': 'Starkville', 'state': 'MS', 'position': 'DT', 'height': 76.0, 'weight': '265', 'compRating': '0.9056', 'compStars': 4, 'nationalRank': '271', 'positionRank': '29', 'stateRank': '9', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '236', '247positionRank': '23', '247stateRank': '9'}, {'school': 'mississippi-state', 'year': '2016', 'playerName': 'Marquiss Spencer', 'highSchool': 'Greenwood', 'city': 'Greenwood', 'state': 'MS', 'position': 'WDE', 'height': 77.0, 'weight': '243', 'compRating': '0.9047', 'compStars': 4, 'nationalRank': '276', 'positionRank': '20', 'stateRank': '10', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '22', '247stateRank': '10'}, {'school': 'mississippi-state', 'year': '2016', 'playerName': 'Jamal Couch', 'highSchool': 'Central', 'city': 'Phenix City', 'state': 'AL', 'position': 'ATH', 'height': 77.0, 'weight': '217', 'compRating': '0.8863', 'compStars': 3, 'nationalRank': '356', 'positionRank': '16', 'stateRank': '11', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '37', '247stateRank': '19'}, {'school': 'mississippi-state', 'year': '2016', 'playerName': 'Erroll Thompson', 'highSchool': 'Florence', 'city': 'Florence', 'state': 'AL', 'position': 'ILB', 'height': 74.0, 'weight': '235', 'compRating': '0.8807', 'compStars': 3, 'nationalRank': '398', 'positionRank': '13', 'stateRank': '13', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '15', '247stateRank': '12'}, {'school': 'mississippi-state', 'year': '2016', 'playerName': 'Stewart Reese', 'highSchool': 'Fort Pierce Central', 'city': 'Fort Pierce', 'state': 'FL', 'position': 'OG', 'height': 77.0, 'weight': '340', 'compRating': '0.8793', 'compStars': 3, 'nationalRank': '409', 'positionRank': '19', 'stateRank': '57', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '70', '247stateRank': '178'}, {'school': 'mississippi-state', 'year': '2016', 'playerName': 'C.J. Morgan', 'highSchool': 'Parkway', 'city': 'Bossier City', 'state': 'LA', 'position': 'CB', 'height': 71.0, 'weight': '187', 'compRating': '0.8721', 'compStars': 3, 'nationalRank': '475', 'positionRank': '45', 'stateRank': '26', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '35', '247stateRank': '21'}, {'school': 'mississippi-state', 'year': '2016', 'playerName': 'Korey Charles', 'highSchool': 'North Florida Christian', 'city': 'Tallahassee', 'state': 'FL', 'position': 'ATH', 'height': 71.0, 'weight': '173', 'compRating': '0.8696', 'compStars': 3, 'nationalRank': '498', 'positionRank': '26', 'stateRank': '69', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '28', '247stateRank': '56'}, {'school': 'mississippi-state', 'year': '2016', 'playerName': 'Dontea Jones', 'highSchool': 'Jireh Prep', 'city': 'Matthews', 'state': 'NC', 'position': 'TE', 'height': 76.0, 'weight': '260', 'compRating': '0.8641', 'compStars': 3, 'nationalRank': '2', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 87 ', '247Stars': 3, '247nationalRank': '2', '247positionRank': '1', '247stateRank': '1'}, {'school': 'mississippi-state', 'year': '2016', 'playerName': 'Lashard Durr', 'highSchool': 'Copiah-Lincoln C.C.', 'city': 'Wesson', 'state': 'MS', 'position': 'CB', 'height': 71.0, 'weight': '190', 'compRating': '0.8626', 'compStars': 3, 'nationalRank': '60', 'positionRank': '7', 'stateRank': '11', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '34', '247positionRank': '3', '247stateRank': '7'}, {'school': 'mississippi-state', 'year': '2016', 'playerName': 'Jordan Thomas', 'highSchool': 'East Central C.C.', 'city': 'Decatur', 'state': 'MS', 'position': 'TE', 'height': 78.0, 'weight': '275', 'compRating': '0.8626', 'compStars': 3, 'nationalRank': '61', 'positionRank': '1', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'mississippi-state', 'year': '2016', 'playerName': 'Christian Roberson', 'highSchool': 'McEachern', 'city': 'Powder Springs', 'state': 'GA', 'position': 'TE', 'height': 78.0, 'weight': '230', 'compRating': '0.8559', 'compStars': 3, 'nationalRank': '702', 'positionRank': '38', 'stateRank': '65', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '34', '247stateRank': '63'}, {'school': 'mississippi-state', 'year': '2016', 'playerName': 'Tre Brown', 'highSchool': 'Copiah-Lincoln C.C.', 'city': 'Wesson', 'state': 'MS', 'position': 'DT', 'height': 76.0, 'weight': '290', 'compRating': '0.8544', 'compStars': 3, 'nationalRank': '81', 'positionRank': '12', 'stateRank': '17', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '67', '247positionRank': '8', '247stateRank': '13'}, {'school': 'mississippi-state', 'year': '2016', 'playerName': 'Cameron Dantzler', 'highSchool': 'St. Thomas Aquinas', 'city': 'Hammond', 'state': 'LA', 'position': 'ATH', 'height': 74.0, 'weight': '170', 'compRating': '0.8531', 'compStars': 3, 'nationalRank': '760', 'positionRank': '53', 'stateRank': '41', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '32', '247stateRank': '24'}, {'school': 'mississippi-state', 'year': '2016', 'playerName': 'Greg Eiland', 'highSchool': 'Philadelphia', 'city': 'Philadelphia', 'state': 'MS', 'position': 'OT', 'height': 79.0, 'weight': '320', 'compRating': '0.8529', 'compStars': 3, 'nationalRank': '764', 'positionRank': '67', 'stateRank': '22', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '58', '247stateRank': '22'}, {'school': 'mississippi-state', 'year': '2016', 'playerName': 'John Michael Hankerson', 'highSchool': 'Washington', 'city': 'South Bend', 'state': 'IN', 'position': 'S', 'height': 73.0, 'weight': '170', 'compRating': '0.8422', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '66', 'stateRank': '14', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '62', '247stateRank': '12'}, {'school': 'mississippi-state', 'year': '2016', 'playerName': 'Dareuan Parker', 'highSchool': 'DeSoto Central', 'city': 'Southaven', 'state': 'MS', 'position': 'OT', 'height': 77.0, 'weight': '320', 'compRating': '0.8416', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '87', 'stateRank': '27', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '87', '247stateRank': '28'}, {'school': 'mississippi-state', 'year': '2016', 'playerName': 'Reggie Todd', 'highSchool': 'Blount', 'city': 'Eight Mile', 'state': 'AL', 'position': 'WR', 'height': 77.0, 'weight': '192', 'compRating': '0.8383', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '162', 'stateRank': '39'}, {'school': 'mississippi-state', 'year': '2016', 'playerName': 'Osirus Mitchell', 'highSchool': 'Booker', 'city': 'Sarasota', 'state': 'FL', 'position': 'WR', 'height': 77.0, 'weight': '200', 'compRating': '0.8366', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '169', 'stateRank': '160', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '191', '247stateRank': '172'}, {'school': 'mississippi-state', 'year': '2016', 'playerName': 'Nero Nelson', 'highSchool': 'Simmons', 'city': 'Hollandale', 'state': 'MS', 'position': 'ATH', 'height': 72.0, 'weight': '170', 'compRating': '0.8721', 'compStars': 3, 'nationalRank': '473', 'positionRank': '24', 'stateRank': '13'}, {'school': 'tennessee', 'year': '2020', 'playerName': 'Keshawn Lawrence', 'highSchool': 'Ensworth', 'city': 'Nashville', 'state': 'TN', 'position': 'S', 'height': 74.0, 'weight': '202', 'compRating': '0.9648', 'compStars': 4, 'nationalRank': '81', 'positionRank': '6', 'stateRank': '1', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '84', '247positionRank': '5', '247stateRank': '1'}, {'school': 'tennessee', 'year': '2020', 'playerName': 'Omari Thomas', 'highSchool': 'Briarcrest Christian', 'city': 'Memphis', 'state': 'TN', 'position': 'DT', 'height': 76.0, 'weight': '319', 'compRating': '0.9579', 'compStars': 4, 'nationalRank': '91', 'positionRank': '10', 'stateRank': '2', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '97', '247positionRank': '12', '247stateRank': '2'}, {'school': 'tennessee', 'year': '2020', 'playerName': 'Harrison Bailey', 'highSchool': 'Marietta', 'city': 'Marietta', 'state': 'GA', 'position': 'PRO', 'height': 77.0, 'weight': '211', 'compRating': '0.9557', 'compStars': 4, 'nationalRank': '99', 'positionRank': '3', 'stateRank': '15', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '101', '247positionRank': '3', '247stateRank': '13'}, {'school': 'tennessee', 'year': '2020', 'playerName': 'Malachi Wideman', 'highSchool': 'Venice', 'city': 'Venice', 'state': 'FL', 'position': 'WR', 'height': 76.5, 'weight': '197', 'compRating': '0.9490', 'compStars': 4, 'nationalRank': '117', 'positionRank': '22', 'stateRank': '19', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '117', '247positionRank': '20', '247stateRank': '19'}, {'school': 'tennessee', 'year': '2020', 'playerName': 'Tyler Baron', 'highSchool': 'Knoxville Catholic', 'city': 'Knoxville', 'state': 'TN', 'position': 'SDE', 'height': 77.0, 'weight': '256', 'compRating': '0.9488', 'compStars': 4, 'nationalRank': '118', 'positionRank': '4', 'stateRank': '4', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '130', '247positionRank': '5', '247stateRank': '4'}, {'school': 'tennessee', 'year': '2020', 'playerName': 'Jalin Hyatt', 'highSchool': 'Dutch Fork', 'city': 'Irmo', 'state': 'SC', 'position': 'WR', 'height': 72.0, 'weight': '164', 'compRating': '0.9217', 'compStars': 4, 'nationalRank': '197', 'positionRank': '33', 'stateRank': '3', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '114', '247positionRank': '19', '247stateRank': '3'}, {'school': 'tennessee', 'year': '2020', 'playerName': 'Jimmy Calloway', 'highSchool': 'Morrow', 'city': 'Morrow', 'state': 'GA', 'position': 'WR', 'height': 72.0, 'weight': '207', 'compRating': '0.9196', 'compStars': 4, 'nationalRank': '209', 'positionRank': '36', 'stateRank': '21', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '146', '247positionRank': '24', '247stateRank': '18'}, {'school': 'tennessee', 'year': '2020', 'playerName': "Len'Neth Whitehead", 'highSchool': 'Athens Academy', 'city': 'Athens', 'state': 'GA', 'position': 'ILB', 'height': 74.0, 'weight': '230', 'compRating': '0.9187', 'compStars': 4, 'nationalRank': '214', 'positionRank': '11', 'stateRank': '22', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '143', '247positionRank': '10', '247stateRank': '17'}, {'school': 'tennessee', 'year': '2020', 'playerName': 'Dominic Bailey', 'highSchool': 'St. Frances Academy', 'city': 'Baltimore', 'state': 'MD', 'position': 'DT', 'height': 75.0, 'weight': '293', 'compRating': '0.9182', 'compStars': 4, 'nationalRank': '216', 'positionRank': '21', 'stateRank': '9', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '26', '247stateRank': '11'}, {'school': 'tennessee', 'year': '2020', 'playerName': 'Morven Joseph', 'highSchool': 'Lake Gibson', 'city': 'Lakeland', 'state': 'FL', 'position': 'WDE', 'height': 74.0, 'weight': '220', 'compRating': '0.9104', 'compStars': 4, 'nationalRank': '246', 'positionRank': '12', 'stateRank': '38', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '141', '247positionRank': '8', '247stateRank': '21'}, {'school': 'tennessee', 'year': '2020', 'playerName': 'Cooper Mays', 'highSchool': 'Knoxville Catholic', 'city': 'Knoxville', 'state': 'TN', 'position': 'OC', 'height': 75.0, 'weight': '295', 'compRating': '0.9002', 'compStars': 4, 'nationalRank': '294', 'positionRank': '6', 'stateRank': '8', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '6', '247stateRank': '8'}, {'school': 'tennessee', 'year': '2020', 'playerName': 'Bryson Eason', 'highSchool': 'Whitehaven', 'city': 'Memphis', 'state': 'TN', 'position': 'ILB', 'height': 74.0, 'weight': '270', 'compRating': '0.8993', 'compStars': 4, 'nationalRank': '301', 'positionRank': '16', 'stateRank': '9', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '17', '247stateRank': '7'}, {'school': 'tennessee', 'year': '2020', 'playerName': 'Martavius French', 'highSchool': 'Whitehaven', 'city': 'Memphis', 'state': 'TN', 'position': 'ILB', 'height': 74.0, 'weight': '240', 'compRating': '0.8959', 'compStars': 4, 'nationalRank': '322', 'positionRank': '17', 'stateRank': '10', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '25', '247stateRank': '18'}, {'school': 'tennessee', 'year': '2020', 'playerName': 'Damarcus Beckwith', 'highSchool': 'Florence', 'city': 'Florence', 'state': 'AL', 'position': 'ATH', 'height': 76.0, 'weight': '215', 'compRating': '0.8884', 'compStars': 3, 'nationalRank': '395', 'positionRank': '18', 'stateRank': '17', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '19', '247stateRank': '14'}, {'school': 'tennessee', 'year': '2020', 'playerName': 'Doneiko Slaughter', 'highSchool': 'Roswell', 'city': 'Roswell', 'state': 'GA', 'position': 'S', 'height': 71.0, 'weight': '178', 'compRating': '0.8808', 'compStars': 3, 'nationalRank': '471', 'positionRank': '39', 'stateRank': '48', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '39', '247stateRank': '46'}, {'school': 'tennessee', 'year': '2020', 'playerName': 'Jimmy Holiday', 'highSchool': 'Madison Central', 'city': 'Madison', 'state': 'MS', 'position': 'ATH', 'height': 72.0, 'weight': '190', 'compRating': '0.8755', 'compStars': 3, 'nationalRank': '537', 'positionRank': '26', 'stateRank': '15', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '38', '247stateRank': '16'}, {'school': 'tennessee', 'year': '2020', 'playerName': 'Javontez Spraggins', 'highSchool': 'East St. Louis', 'city': 'East Saint Louis', 'state': 'IL', 'position': 'OC', 'height': 75.0, 'weight': '338', 'compRating': '0.8747', 'compStars': 3, 'nationalRank': '548', 'positionRank': '12', 'stateRank': '8', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '9', '247stateRank': '7'}, {'school': 'tennessee', 'year': '2020', 'playerName': 'Tamarion McDonald', 'highSchool': 'Whitehaven', 'city': 'Memphis', 'state': 'TN', 'position': 'OLB', 'height': 74.0, 'weight': '214', 'compRating': '0.8720', 'compStars': 3, 'nationalRank': '594', 'positionRank': '38', 'stateRank': '15', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '57', '247stateRank': '26'}, {'school': 'tennessee', 'year': '2020', 'playerName': 'Jabari Small', 'highSchool': 'Briarcrest Christian', 'city': 'Memphis', 'state': 'TN', 'position': 'APB', 'height': 70.0, 'weight': '193', 'compRating': '0.8688', 'compStars': 3, 'nationalRank': '637', 'positionRank': '12', 'stateRank': '17', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '13', '247stateRank': '25'}, {'school': 'tennessee', 'year': '2020', 'playerName': 'Reginald Perry', 'highSchool': 'Fairfield Preparatory School', 'city': 'Fairfield', 'state': 'AL', 'position': 'DT', 'height': 78.0, 'weight': '301', 'compRating': '0.8647', 'compStars': 3, 'nationalRank': '726', 'positionRank': '61', 'stateRank': '30', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '62', '247stateRank': '21'}, {'school': 'tennessee', 'year': '2020', 'playerName': 'James Robinson', 'highSchool': 'Carver', 'city': 'Montgomery', 'state': 'AL', 'position': 'OG', 'height': 76.0, 'weight': '323', 'compRating': '0.8646', 'compStars': 3, 'nationalRank': '737', 'positionRank': '47', 'stateRank': '31', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '47', '247stateRank': '28'}, {'school': 'tennessee', 'year': '2020', 'playerName': 'Tee Hodge', 'highSchool': 'Maryville', 'city': 'Maryville', 'state': 'TN', 'position': 'RB', 'height': 72.0, 'weight': '216', 'compRating': '0.8593', 'compStars': 3, 'nationalRank': '858', 'positionRank': '57', 'stateRank': '25', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '52', '247stateRank': '24'}, {'school': 'tennessee', 'year': '2020', 'playerName': 'Will Albright', 'highSchool': 'Greeneville', 'city': 'Greeneville', 'state': 'TN', 'position': 'LS', 'height': 72.0, 'weight': '212', 'compRating': '0.7706', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '8', 'stateRank': '102', '247Rating': ' 74 ', '247Stars': 2, '247positionRank': '6', '247stateRank': '117'}, {'school': 'kentucky', 'year': '2008', 'playerName': 'Aaron Boyd', 'highSchool': 'Henry Clay', 'city': 'Lexington', 'state': 'KY', 'position': 'WR', 'height': 76.0, 'weight': '195', 'compRating': '0.9080', 'compStars': 4, 'nationalRank': '224', 'positionRank': '31', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2008', 'playerName': 'Winston Guy', 'highSchool': 'Lexington Catholic', 'city': 'Lexington', 'state': 'KY', 'position': 'S', 'height': 73.0, 'weight': '215', 'compRating': '0.9033', 'compStars': 4, 'nationalRank': '248', 'positionRank': '19', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2008', 'playerName': 'Donte Rumph', 'highSchool': 'Calhoun County', 'city': 'Saint Matthews', 'state': 'SC', 'position': 'SDE', 'height': 75.0, 'weight': '265', 'compRating': '0.8542', 'compStars': 3, 'nationalRank': '714', 'positionRank': '37', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2008', 'playerName': 'Randall Cobb', 'highSchool': 'Alcoa', 'city': 'Alcoa', 'state': 'TN', 'position': 'ATH', 'height': 71.0, 'weight': '176', 'compRating': '0.8417', 'compStars': 3, 'nationalRank': '852', 'positionRank': '55', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2008', 'playerName': 'Deaunte Mason', 'highSchool': 'Pearl-Cohn', 'city': 'Nashville', 'state': 'TN', 'position': 'ATH', 'height': 76.0, 'weight': '215', 'compRating': '0.8399', 'compStars': 3, 'nationalRank': '866', 'positionRank': '59', 'stateRank': '25', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2008', 'playerName': 'EJ Fields', 'highSchool': 'Frankfort', 'city': 'Frankfort', 'state': 'KY', 'position': 'ATH', 'height': 74.0, 'weight': '180', 'compRating': '0.8340', 'compStars': 3, 'nationalRank': '930', 'positionRank': '64', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2008', 'playerName': 'Dave Ulinski', 'highSchool': 'Dupont Manual', 'city': 'Louisville', 'state': 'KY', 'position': 'OT', 'height': 78.0, 'weight': '280', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '72', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2008', 'playerName': 'Matt Roark', 'highSchool': 'North Cobb', 'city': 'Kennesaw', 'state': 'GA', 'position': 'ATH', 'height': 79.0, 'weight': '190', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '79', 'stateRank': '73', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2008', 'playerName': 'Osaze Idumwonyi', 'highSchool': 'Cedar Hill', 'city': 'Cedar Hill', 'state': 'TX', 'position': 'OC', 'height': 73.0, 'weight': '260', 'compRating': '0.8295', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '14', 'stateRank': '169', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2008', 'playerName': 'Sean Stackhouse', 'highSchool': 'Mandarin', 'city': 'Jacksonville', 'state': 'FL', 'position': 'TE', 'height': 76.0, 'weight': '240', 'compRating': '0.8274', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '53', 'stateRank': '128', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2008', 'playerName': 'Taylor Wyndham', 'highSchool': 'Swansea', 'city': 'Swansea', 'state': 'SC', 'position': 'WDE', 'height': 76.0, 'weight': '238', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '40', 'stateRank': '29', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2008', 'playerName': 'William Johnson', 'highSchool': 'Pearl-Cohn', 'city': 'Nashville', 'state': 'TN', 'position': 'ATH', 'height': 75.0, 'weight': '190', 'compRating': '0.7972', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '111', 'stateRank': '36', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2008', 'playerName': 'Danny Trevathan', 'highSchool': 'Leesburg', 'city': 'Leesburg', 'state': 'FL', 'position': 'ILB', 'height': 73.0, 'weight': '223', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '62', 'stateRank': '171', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2008', 'playerName': 'Collins Ukwu', 'highSchool': 'LaVergne', 'city': 'LaVergne', 'state': 'TN', 'position': 'SDE', 'height': 77.0, 'weight': '249', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '77', 'stateRank': '38', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2008', 'playerName': 'Matt Smith', 'highSchool': 'St. Xavier', 'city': 'Louisville', 'state': 'KY', 'position': 'OT', 'height': 76.0, 'weight': '270', 'compRating': '0.7771', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '119', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2008', 'playerName': 'Chandler Burden', 'highSchool': 'LaSalle', 'city': 'Cincinnati', 'state': 'OH', 'position': 'OT', 'height': 76.0, 'weight': '180', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '130', 'stateRank': '85', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2008', 'playerName': 'Trevino Woods', 'highSchool': 'Clarke Central', 'city': 'Athens', 'state': 'GA', 'position': 'OT', 'height': 78.0, 'weight': '275', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '141', 'stateRank': '115', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2008', 'playerName': 'Gene McCaskill', 'highSchool': 'Chester', 'city': 'Chester', 'state': 'SC', 'position': 'WR', 'height': 72.0, 'weight': '170', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '224', 'stateRank': '36', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2008', 'playerName': 'Eric Adeyemi', 'highSchool': 'Miami Southridge', 'city': 'Miami', 'state': 'FL', 'position': 'WR', 'height': 73.0, 'weight': '156', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '225', 'stateRank': '237', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2020', 'playerName': 'Jaylon Jones', 'highSchool': 'Steele', 'city': 'Cibolo', 'state': 'TX', 'position': 'S', 'height': 73.5, 'weight': '190', 'compRating': '0.9907', 'compStars': 5, 'nationalRank': '21', 'positionRank': '1', 'stateRank': '2', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '16', '247positionRank': '1', '247stateRank': '3'}, {'school': 'texas-am', 'year': '2020', 'playerName': 'Demond Demas', 'highSchool': 'Tomball', 'city': 'Tomball', 'state': 'TX', 'position': 'WR', 'height': 75.0, 'weight': '182', 'compRating': '0.9890', 'compStars': 5, 'nationalRank': '25', 'positionRank': '3', 'stateRank': '4', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '31', '247positionRank': '4', '247stateRank': '4'}, {'school': 'texas-am', 'year': '2020', 'playerName': 'Donell Harris', 'highSchool': 'Gulliver Prep', 'city': 'Miami', 'state': 'FL', 'position': 'WDE', 'height': 76.0, 'weight': '216', 'compRating': '0.9746', 'compStars': 4, 'nationalRank': '49', 'positionRank': '5', 'stateRank': '8', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '53', '247positionRank': '4', '247stateRank': '9'}, {'school': 'texas-am', 'year': '2020', 'playerName': 'McKinnley Jackson', 'highSchool': 'George County', 'city': 'Lucedale', 'state': 'MS', 'position': 'DT', 'height': 74.0, 'weight': '327', 'compRating': '0.9710', 'compStars': 4, 'nationalRank': '62', 'positionRank': '9', 'stateRank': '1', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '66', '247positionRank': '8', '247stateRank': '1'}, {'school': 'texas-am', 'year': '2020', 'playerName': 'Antonio Johnson', 'highSchool': 'East St. Louis', 'city': 'East Saint Louis', 'state': 'IL', 'position': 'S', 'height': 75.0, 'weight': '182', 'compRating': '0.9651', 'compStars': 4, 'nationalRank': '78', 'positionRank': '4', 'stateRank': '1', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '47', '247positionRank': '2', '247stateRank': '2'}, {'school': 'texas-am', 'year': '2020', 'playerName': 'Antonio Doyle', 'highSchool': 'Lutheran North', 'city': 'Saint Louis', 'state': 'MO', 'position': 'ILB', 'height': 75.0, 'weight': '229', 'compRating': '0.9617', 'compStars': 4, 'nationalRank': '89', 'positionRank': '5', 'stateRank': '3', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '120', '247positionRank': '8', '247stateRank': '3'}, {'school': 'texas-am', 'year': '2020', 'playerName': 'Chris Morris', 'highSchool': 'West Memphis', 'city': 'West Memphis', 'state': 'AR', 'position': 'OG', 'height': 75.5, 'weight': '287', 'compRating': '0.9485', 'compStars': 4, 'nationalRank': '119', 'positionRank': '5', 'stateRank': '1', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '243', '247positionRank': '10', '247stateRank': '1'}, {'school': 'texas-am', 'year': '2020', 'playerName': 'Haynes King', 'highSchool': 'Longview', 'city': 'Longview', 'state': 'TX', 'position': 'DUAL', 'height': 74.5, 'weight': '189', 'compRating': '0.9397', 'compStars': 4, 'nationalRank': '131', 'positionRank': '5', 'stateRank': '19', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '110', '247positionRank': '7', '247stateRank': '16'}, {'school': 'texas-am', 'year': '2020', 'playerName': 'Devon Achane', 'highSchool': 'Fort Bend Marshall', 'city': 'Missouri City', 'state': 'TX', 'position': 'APB', 'height': 69.0, 'weight': '170', 'compRating': '0.9373', 'compStars': 4, 'nationalRank': '137', 'positionRank': '4', 'stateRank': '21', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '55', '247positionRank': '1', '247stateRank': '8'}, {'school': 'texas-am', 'year': '2020', 'playerName': 'Fadil Diggs', 'highSchool': 'Woodrow Wilson', 'city': 'Camden', 'state': 'NJ', 'position': 'WDE', 'height': 77.0, 'weight': '230', 'compRating': '0.9323', 'compStars': 4, 'nationalRank': '153', 'positionRank': '9', 'stateRank': '4', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '177', '247positionRank': '11', '247stateRank': '4'}, {'school': 'texas-am', 'year': '2020', 'playerName': 'Moose Muhammad III', 'highSchool': 'Myers Park', 'city': 'Charlotte', 'state': 'NC', 'position': 'WR', 'height': 72.0, 'weight': '185', 'compRating': '0.9307', 'compStars': 4, 'nationalRank': '159', 'positionRank': '28', 'stateRank': '7', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '189', '247positionRank': '34', '247stateRank': '8'}, {'school': 'texas-am', 'year': '2020', 'playerName': 'Edgerrin Cooper', 'highSchool': 'Covington', 'city': 'Covington', 'state': 'LA', 'position': 'OLB', 'height': 73.5, 'weight': '205', 'compRating': '0.9300', 'compStars': 4, 'nationalRank': '162', 'positionRank': '11', 'stateRank': '5', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '115', '247positionRank': '9', '247stateRank': '5'}, {'school': 'texas-am', 'year': '2020', 'playerName': 'Akinola Ogunbiyi', 'highSchool': 'Kempner', 'city': 'Sugar Land', 'state': 'TX', 'position': 'OG', 'height': 75.5, 'weight': '331', 'compRating': '0.9143', 'compStars': 4, 'nationalRank': '230', 'positionRank': '9', 'stateRank': '36', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '13', '247stateRank': '46'}, {'school': 'texas-am', 'year': '2020', 'playerName': 'Brian George', 'highSchool': 'Highland C.C.', 'city': 'Highland', 'state': 'KS', 'position': 'CB', 'height': 74.0, 'weight': '190', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '6', 'positionRank': '2', 'stateRank': '3', '247Rating': ' 90 ', '247Stars': 4, '247nationalRank': '5', '247positionRank': '2', '247stateRank': '3'}, {'school': 'texas-am', 'year': '2020', 'playerName': 'Joshuah Moten', 'highSchool': 'National Christian Academy', 'city': 'Fort Washington', 'state': 'MD', 'position': 'CB', 'height': 71.0, 'weight': '165', 'compRating': '0.8910', 'compStars': 4, 'nationalRank': '369', 'positionRank': '30', 'stateRank': '16', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '42', '247stateRank': '18'}, {'school': 'texas-am', 'year': '2020', 'playerName': 'Isaiah Raikes', 'highSchool': 'St. Augustine Prep', 'city': 'Richland', 'state': 'NJ', 'position': 'DT', 'height': 72.5, 'weight': '324', 'compRating': '0.8874', 'compStars': 3, 'nationalRank': '400', 'positionRank': '41', 'stateRank': '9', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '61', '247stateRank': '15'}, {'school': 'texas-am', 'year': '2020', 'playerName': 'Dallas Walker', 'highSchool': 'Smyrna', 'city': 'Smyrna', 'state': 'TN', 'position': 'DT', 'height': 75.0, 'weight': '321', 'compRating': '0.8795', 'compStars': 3, 'nationalRank': '486', 'positionRank': '46', 'stateRank': '13', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '66', '247stateRank': '21'}, {'school': 'texas-am', 'year': '2020', 'playerName': 'Darvon Hubbard', 'highSchool': 'Willow Canyon', 'city': 'Surprise', 'state': 'AZ', 'position': 'RB', 'height': 72.0, 'weight': '195', 'compRating': '0.8750', 'compStars': 3, 'nationalRank': '542', 'positionRank': '39', 'stateRank': '14', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '64', '247stateRank': '20'}, {'school': 'texas-am', 'year': '2020', 'playerName': 'Devin Price', 'highSchool': 'A&M Consolidated', 'city': 'College Station', 'state': 'TX', 'position': 'WR', 'height': 74.5, 'weight': '201', 'compRating': '0.8743', 'compStars': 3, 'nationalRank': '551', 'positionRank': '89', 'stateRank': '71', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '90', '247stateRank': '63'}, {'school': 'texas-am', 'year': '2020', 'playerName': 'Blake Smith', 'highSchool': 'Southlake Carroll', 'city': 'Southlake', 'state': 'TX', 'position': 'TE', 'height': 76.0, 'weight': '257', 'compRating': '0.8721', 'compStars': 3, 'nationalRank': '588', 'positionRank': '24', 'stateRank': '74', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '24', '247stateRank': '78'}, {'school': 'texas-am', 'year': '2020', 'playerName': 'Josh Bankhead', 'highSchool': 'College Park', 'city': 'The Woodlands', 'state': 'TX', 'position': 'OG', 'height': 76.5, 'weight': '310', 'compRating': '0.8709', 'compStars': 3, 'nationalRank': '608', 'positionRank': '36', 'stateRank': '77', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '49', '247stateRank': '118'}, {'school': 'texas-am', 'year': '2020', 'playerName': 'Smart Chibuzo', 'highSchool': 'Hightower', 'city': 'Missouri City', 'state': 'TX', 'position': 'OG', 'height': 76.0, 'weight': '350', 'compRating': '0.8696', 'compStars': 3, 'nationalRank': '623', 'positionRank': '37', 'stateRank': '80', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '61', '247stateRank': '144'}, {'school': 'texas-am', 'year': '2020', 'playerName': 'Deondre Jackson', 'highSchool': 'Stephenson', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'RB', 'height': 70.5, 'weight': '211', 'compRating': '0.8593', 'compStars': 3, 'nationalRank': '857', 'positionRank': '56', 'stateRank': '91', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '49', '247stateRank': '79'}, {'school': 'texas-am', 'year': '2020', 'playerName': 'Earnest Crownover', 'highSchool': 'Kilgore J.C.', 'city': 'Kilgore', 'state': 'TX', 'position': 'RB', 'height': 73.0, 'weight': '220', 'compRating': '0.8404', 'compStars': 3, 'nationalRank': '117', 'positionRank': '8', 'stateRank': '18', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '49', '247positionRank': '4', '247stateRank': '6'}, {'school': 'texas-am', 'year': '2020', 'playerName': 'Jordan Jefferson', 'highSchool': 'Navasota', 'city': 'Navasota', 'state': 'TX', 'position': 'OC', 'height': 72.0, 'weight': '325', 'compRating': '0.8386', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '29', 'stateRank': '200', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '33', '247stateRank': '236'}, {'school': 'arkansas', 'year': '2003', 'playerName': 'Farod Jackson', 'highSchool': 'Wilbur D. Mills', 'city': 'Little Rock', 'state': 'AR', 'position': 'FB', 'height': 73.0, 'weight': '235', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '251', 'positionRank': '4', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2003', 'playerName': 'Rodney Giles', 'highSchool': 'Fountain Lake', 'city': 'Hot Springs National Park', 'state': 'AR', 'position': 'OLB', 'height': 76.0, 'weight': '230', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '260', 'positionRank': '16', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2003', 'playerName': 'Duston Moore', 'highSchool': 'Brenham', 'city': 'Brenham', 'state': 'TX', 'position': 'OG', 'height': 77.0, 'weight': '340', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '354', 'positionRank': '24', 'stateRank': '55', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2003', 'playerName': 'Terrance Hampton', 'highSchool': 'Warren', 'city': 'Warren', 'state': 'AR', 'position': 'WR', 'height': 71.0, 'weight': '190', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '382', 'positionRank': '34', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2003', 'playerName': 'Derek Moore', 'highSchool': 'Muncie Southside', 'city': 'Muncie', 'state': 'IN', 'position': 'ILB', 'height': 76.0, 'weight': '228', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '409', 'positionRank': '30', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2003', 'playerName': 'Jeremy Harrell', 'highSchool': 'Texas High', 'city': 'Texarkana', 'state': 'TX', 'position': 'OG', 'height': 74.0, 'weight': '285', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '430', 'positionRank': '34', 'stateRank': '71', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2003', 'playerName': 'Robert Felton', 'highSchool': 'Cy Creek', 'city': 'Houston', 'state': 'TX', 'position': 'OG', 'height': 76.0, 'weight': '320', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '508', 'positionRank': '40', 'stateRank': '82', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2003', 'playerName': 'Willie Hordge', 'highSchool': 'Forest Brook', 'city': 'Houston', 'state': 'TX', 'position': 'ATH', 'height': 69.0, 'weight': '181', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '629', 'positionRank': '34', 'stateRank': '109', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2003', 'playerName': 'Chris Houston', 'highSchool': 'LBJ', 'city': 'Austin', 'state': 'TX', 'position': 'CB', 'height': 71.0, 'weight': '175', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '633', 'positionRank': '46', 'stateRank': '111', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2003', 'playerName': 'Keith Jackson Jr.', 'highSchool': 'Mcclellan Magnet', 'city': 'Little Rock', 'state': 'AR', 'position': 'DT', 'height': 74.0, 'weight': '260', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '658', 'positionRank': '49', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2003', 'playerName': 'Landon Leach', 'highSchool': 'Russellville', 'city': 'Russellville', 'state': 'AR', 'position': 'PRO', 'height': 74.0, 'weight': '187', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '750', 'positionRank': '35', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2003', 'playerName': 'Matt Gilbow', 'highSchool': 'Jonesboro', 'city': 'Jonesboro', 'state': 'AR', 'position': 'OT', 'height': 78.0, 'weight': '280', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '867', 'positionRank': '65', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2003', 'playerName': 'Mason Templeton', 'highSchool': 'Burnet', 'city': 'Burnet', 'state': 'TX', 'position': 'TE', 'height': 79.0, 'weight': '235', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '984', 'positionRank': '57', 'stateRank': '144', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2003', 'playerName': 'Titus Peebles', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'DT', 'height': 74.0, 'weight': '295', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '141', 'positionRank': '15', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2003', 'playerName': 'Jonathan Barry', 'highSchool': 'The Oakridge School', 'city': 'Arlington', 'state': 'TX', 'position': 'SDE', 'height': 77.0, 'weight': '220', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '67', 'stateRank': '212', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2003', 'playerName': 'Brannon Kidd', 'highSchool': 'Crossett', 'city': 'Crossett', 'state': 'AR', 'position': 'WR', 'height': 71.0, 'weight': '175', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '139', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2003', 'playerName': 'Nate Garner', 'highSchool': 'Joe T. Robinson', 'city': 'Little Rock', 'state': 'AR', 'position': 'OT', 'height': 79.0, 'weight': '310', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '143', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2003', 'playerName': 'Jacob Skinner', 'highSchool': 'Texas High', 'city': 'Texarkana', 'state': 'TX', 'position': 'K', 'height': 75.0, 'weight': '200', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '40', 'stateRank': '288', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2003', 'playerName': 'Ivora Hall', 'highSchool': 'Hamilton', 'city': 'Memphis', 'state': 'TN', 'position': 'DT', 'height': 74.0, 'weight': '295', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '135', 'stateRank': '39', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2003', 'playerName': 'Kevin Woods', 'highSchool': 'Fairley', 'city': 'Memphis', 'state': 'TN', 'position': 'S', 'height': 71.0, 'weight': '190', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '166', 'stateRank': '42', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2003', 'playerName': 'Chris Baker', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'WR', 'height': 74.0, 'weight': '185', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '2', 'positionRank': '1', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'arkansas', 'year': '2015', 'playerName': 'Hjalte Froholdt', 'highSchool': 'IMG Academy', 'city': 'Bradenton', 'state': 'FL', 'position': 'DT', 'height': 76.0, 'weight': '282', 'compRating': '0.9356', 'compStars': 4, 'nationalRank': '144', 'positionRank': '15', 'stateRank': '7', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '93', '247positionRank': '13', '247stateRank': '5'}, {'school': 'arkansas', 'year': '2015', 'playerName': "Cheyenne O'Grady", 'highSchool': 'Fayetteville', 'city': 'Fayetteville', 'state': 'AR', 'position': 'TE', 'height': 76.0, 'weight': '230', 'compRating': '0.9204', 'compStars': 4, 'nationalRank': '191', 'positionRank': '6', 'stateRank': '2', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '130', '247positionRank': '2', '247stateRank': '1'}, {'school': 'arkansas', 'year': '2015', 'playerName': 'Will Gragg', 'highSchool': 'Dumas', 'city': 'Dumas', 'state': 'AR', 'position': 'TE', 'height': 76.0, 'weight': '245', 'compRating': '0.9196', 'compStars': 4, 'nationalRank': '198', 'positionRank': '7', 'stateRank': '3', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '12', '247stateRank': '6'}, {'school': 'arkansas', 'year': '2015', 'playerName': 'Jamario Bell', 'highSchool': 'Junction City', 'city': 'Junction City', 'state': 'AR', 'position': 'SDE', 'height': 78.0, 'weight': '225', 'compRating': '0.9137', 'compStars': 4, 'nationalRank': '214', 'positionRank': '13', 'stateRank': '4', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '15', '247stateRank': '4'}, {'school': 'arkansas', 'year': '2015', 'playerName': 'Jalen Merrick', 'highSchool': 'New Smyrna Beach', 'city': 'New Smyrna Beach', 'state': 'FL', 'position': 'OG', 'height': 77.0, 'weight': '295', 'compRating': '0.9096', 'compStars': 4, 'nationalRank': '232', 'positionRank': '12', 'stateRank': '30', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '15', '247stateRank': '36'}, {'school': 'arkansas', 'year': '2015', 'playerName': 'Ty Storey', 'highSchool': 'Charleston', 'city': 'Charleston', 'state': 'AR', 'position': 'PRO', 'height': 75.0, 'weight': '216', 'compRating': '0.9088', 'compStars': 4, 'nationalRank': '237', 'positionRank': '9', 'stateRank': '5', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '236', '247positionRank': '9', '247stateRank': '3'}, {'school': 'arkansas', 'year': '2015', 'playerName': 'Jeremiah Ledbetter', 'highSchool': 'Hutchinson C.C.', 'city': 'Hutchinson', 'state': 'KS', 'position': 'DT', 'height': 75.0, 'weight': '281', 'compRating': '0.8919', 'compStars': 4, 'nationalRank': '18', 'positionRank': '2', 'stateRank': '4', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '36', '247positionRank': '5', '247stateRank': '5'}, {'school': 'arkansas', 'year': '2015', 'playerName': 'Zach Rogers', 'highSchool': 'Hebron', 'city': 'Carrollton', 'state': 'TX', 'position': 'OG', 'height': 74.0, 'weight': '297', 'compRating': '0.8863', 'compStars': 3, 'nationalRank': '365', 'positionRank': '27', 'stateRank': '48', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '29', '247stateRank': '67'}, {'school': 'arkansas', 'year': '2015', 'playerName': 'Rawleigh Williams III', 'highSchool': 'Bishop Lynch', 'city': 'Dallas', 'state': 'TX', 'position': 'RB', 'height': 70.5, 'weight': '195', 'compRating': '0.8659', 'compStars': 3, 'nationalRank': '549', 'positionRank': '45', 'stateRank': '74', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '33', '247stateRank': '59'}, {'school': 'arkansas', 'year': '2015', 'playerName': 'Austin Cantrell', 'highSchool': 'Roland', 'city': 'Roland', 'state': 'OK', 'position': 'TE', 'height': 76.5, 'weight': '249', 'compRating': '0.8647', 'compStars': 3, 'nationalRank': '564', 'positionRank': '17', 'stateRank': '7', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '223', '247positionRank': '7', '247stateRank': '4'}, {'school': 'arkansas', 'year': '2015', 'playerName': 'Colton Jackson', 'highSchool': 'Conway', 'city': 'Conway', 'state': 'AR', 'position': 'OT', 'height': 78.0, 'weight': '291', 'compRating': '0.8637', 'compStars': 3, 'nationalRank': '584', 'positionRank': '66', 'stateRank': '7', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '32', '247stateRank': '5'}, {'school': 'arkansas', 'year': '2015', 'playerName': 'Dominique Reed', 'highSchool': 'Coffeyville C.C.', 'city': 'Coffeyville', 'state': 'KS', 'position': 'WR', 'height': 76.0, 'weight': '185', 'compRating': '0.8636', 'compStars': 3, 'nationalRank': '56', 'positionRank': '9', 'stateRank': '11', '247Rating': ' 90 ', '247Stars': 4, '247nationalRank': '27', '247positionRank': '4', '247stateRank': '4'}, {'school': 'arkansas', 'year': '2015', 'playerName': "La'Michael Pettway", 'highSchool': 'Nashville', 'city': 'Nashville', 'state': 'AR', 'position': 'ATH', 'height': 75.0, 'weight': '200', 'compRating': '0.8616', 'compStars': 3, 'nationalRank': '612', 'positionRank': '48', 'stateRank': '9', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '56', '247stateRank': '9'}, {'school': 'arkansas', 'year': '2015', 'playerName': 'Nate Dalton', 'highSchool': 'Cy Falls', 'city': 'Houston', 'state': 'TX', 'position': 'CB', 'height': 74.0, 'weight': '185', 'compRating': '0.8615', 'compStars': 3, 'nationalRank': '619', 'positionRank': '59', 'stateRank': '82', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '79', '247stateRank': '105'}, {'school': 'arkansas', 'year': '2015', 'playerName': 'Daytrieon Dean', 'highSchool': 'Northside', 'city': 'Fort Smith', 'state': 'AR', 'position': 'DT', 'height': 74.5, 'weight': '260', 'compRating': '0.8547', 'compStars': 3, 'nationalRank': '770', 'positionRank': '45', 'stateRank': '10', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '29', '247stateRank': '8'}, {'school': 'arkansas', 'year': '2015', 'playerName': 'Deon Stewart', 'highSchool': 'Highland', 'city': 'Hardy', 'state': 'AR', 'position': 'WR', 'height': 73.0, 'weight': '165', 'compRating': '0.8544', 'compStars': 3, 'nationalRank': '772', 'positionRank': '90', 'stateRank': '11', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '89', '247stateRank': '10'}, {'school': 'arkansas', 'year': '2015', 'playerName': 'Dre Greenlaw', 'highSchool': 'Fayetteville', 'city': 'Fayetteville', 'state': 'AR', 'position': 'S', 'height': 73.0, 'weight': '220', 'compRating': '0.8521', 'compStars': 3, 'nationalRank': '831', 'positionRank': '60', 'stateRank': '12', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '57', '247stateRank': '12'}, {'school': 'arkansas', 'year': '2015', 'playerName': 'T.J. Smith', 'highSchool': 'Colquitt County', 'city': 'Moultrie', 'state': 'GA', 'position': 'SDE', 'height': 75.5, 'weight': '250', 'compRating': '0.8460', 'compStars': 3, 'nationalRank': '988', 'positionRank': '55', 'stateRank': '97'}, {'school': 'arkansas', 'year': '2015', 'playerName': 'Derrick Graham', 'highSchool': 'Hardee', 'city': 'Wauchula', 'state': 'FL', 'position': 'OLB', 'height': 76.0, 'weight': '208', 'compRating': '0.8447', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '64', 'stateRank': '133', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '75', '247stateRank': '140'}, {'school': 'arkansas', 'year': '2015', 'playerName': 'Kendrick Jackson', 'highSchool': 'Haynesville', 'city': 'Haynesville', 'state': 'LA', 'position': 'ILB', 'height': 73.0, 'weight': '232', 'compRating': '0.8397', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '46', 'stateRank': '56', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '51', '247stateRank': '73'}, {'school': 'arkansas', 'year': '2015', 'playerName': 'Willie Sykes', 'highSchool': 'Spring HS', 'city': 'Spring', 'state': 'TX', 'position': 'CB', 'height': 72.0, 'weight': '174', 'compRating': '0.8392', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '102', 'stateRank': '140', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '93', '247stateRank': '129'}, {'school': 'arkansas', 'year': '2015', 'playerName': 'Ryan Pulley', 'highSchool': 'Island Coast', 'city': 'Cape Coral', 'state': 'FL', 'position': 'CB', 'height': 73.0, 'weight': '190', 'compRating': '0.8326', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '121', 'stateRank': '202', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '115', '247stateRank': '178'}, {'school': 'arkansas', 'year': '2015', 'playerName': 'Tyler Phillips', 'highSchool': 'North Little Rock', 'city': 'North Little Rock', 'state': 'AR', 'position': 'S', 'height': 73.5, 'weight': '208', 'compRating': '0.8123', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '126', 'stateRank': '21', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '132', '247stateRank': '27'}, {'school': 'arkansas', 'year': '2015', 'playerName': 'Blake Johnson', 'highSchool': 'Los Alamitos', 'city': 'Los Alamitos', 'state': 'CA', 'position': 'P', 'height': 73.0, 'weight': '190', 'compRating': '0.8105', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '7', 'stateRank': '207', '247Rating': ' 72 ', '247Stars': 2, '247positionRank': '15', '247stateRank': '262'}, {'school': 'arkansas', 'year': '2015', 'playerName': 'Byron Keaton', 'highSchool': 'Camden Fairview', 'city': 'Camden', 'state': 'AR', 'position': 'CB', 'height': 70.0, 'weight': '175', 'compRating': '0.8043', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '169', 'stateRank': '24', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '136', '247stateRank': '20'}, {'school': 'vanderbilt', 'year': '2016', 'playerName': 'Joejuan Williams', 'highSchool': 'Hendersonville', 'city': 'Hendersonville', 'state': 'TN', 'position': 'CB', 'height': 74.0, 'weight': '195', 'compRating': '0.9196', 'compStars': 4, 'nationalRank': '207', 'positionRank': '18', 'stateRank': '2', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '26', '247stateRank': '6'}, {'school': 'vanderbilt', 'year': '2016', 'playerName': 'Sean Auwae', 'highSchool': 'Kapolei', 'city': 'Kapolei', 'state': 'HI', 'position': 'OC', 'height': 76.0, 'weight': '285', 'compRating': '0.8675', 'compStars': 3, 'nationalRank': '522', 'positionRank': '5', 'stateRank': '3', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '4', '247stateRank': '3'}, {'school': 'vanderbilt', 'year': '2016', 'playerName': 'Zaire Jones', 'highSchool': 'Meridian', 'city': 'Meridian', 'state': 'MS', 'position': 'S', 'height': 73.0, 'weight': '190', 'compRating': '0.8671', 'compStars': 3, 'nationalRank': '524', 'positionRank': '31', 'stateRank': '17', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '41', '247stateRank': '18'}, {'school': 'vanderbilt', 'year': '2016', 'playerName': 'Deuce Wallace', 'highSchool': 'Sevier County', 'city': 'Sevierville', 'state': 'TN', 'position': 'PRO', 'height': 74.0, 'weight': '200', 'compRating': '0.8640', 'compStars': 3, 'nationalRank': '568', 'positionRank': '24', 'stateRank': '13', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '24', '247stateRank': '18'}, {'school': 'vanderbilt', 'year': '2016', 'playerName': 'Devin Cochran', 'highSchool': 'Greater Atlanta Christian School', 'city': 'Norcross', 'state': 'GA', 'position': 'OT', 'height': 79.0, 'weight': '305', 'compRating': '0.8590', 'compStars': 3, 'nationalRank': '646', 'positionRank': '58', 'stateRank': '57', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '98', '247stateRank': '92'}, {'school': 'vanderbilt', 'year': '2016', 'playerName': 'Kalija Lipscomb', 'highSchool': 'Jesuit', 'city': 'New Orleans', 'state': 'LA', 'position': 'WR', 'height': 72.0, 'weight': '185', 'compRating': '0.8407', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '153', 'stateRank': '55', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '143', '247stateRank': '48'}, {'school': 'vanderbilt', 'year': '2016', 'playerName': 'Donaven Tennyson', 'highSchool': 'Benedictine', 'city': 'Richmond', 'state': 'VA', 'position': 'WR', 'height': 70.0, 'weight': '170', 'compRating': '0.8403', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '154', 'stateRank': '32', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '220', '247stateRank': '52'}, {'school': 'vanderbilt', 'year': '2016', 'playerName': 'Bailey McElwain', 'highSchool': 'Hewitt-Trussville', 'city': 'Trussville', 'state': 'AL', 'position': 'FB', 'height': 72.0, 'weight': '231', 'compRating': '0.8334', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '3', 'stateRank': '43', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '3', '247stateRank': '48'}, {'school': 'vanderbilt', 'year': '2016', 'playerName': 'Frank Coppet', 'highSchool': 'St. Thomas Aquinas', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'CB', 'height': 70.0, 'weight': '177', 'compRating': '0.8334', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '110', 'stateRank': '166', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '121', '247stateRank': '177'}, {'school': 'vanderbilt', 'year': '2016', 'playerName': 'Jamauri Wakefield', 'highSchool': 'Providence', 'city': 'Jacksonville', 'state': 'FL', 'position': 'RB', 'height': 73.0, 'weight': '210', 'compRating': '0.8326', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '82', 'stateRank': '179', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '90', '247stateRank': '182'}, {'school': 'vanderbilt', 'year': '2016', 'playerName': 'Elijah Hamilton', 'highSchool': 'Blessed Trinity Catholic', 'city': 'Roswell', 'state': 'GA', 'position': 'CB', 'height': 73.0, 'weight': '190', 'compRating': '0.8290', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '127', 'stateRank': '127', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '84', '247stateRank': '80'}, {'school': 'vanderbilt', 'year': '2016', 'playerName': 'Austin Quillen', 'highSchool': 'Jenks', 'city': 'Jenks', 'state': 'OK', 'position': 'S', 'height': 72.0, 'weight': '195', 'compRating': '0.8281', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '92', 'stateRank': '17', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '65', '247stateRank': '10'}, {'school': 'vanderbilt', 'year': '2016', 'playerName': 'Turner Cockrell', 'highSchool': 'Allatoona', 'city': 'Acworth', 'state': 'GA', 'position': 'TE', 'height': 77.0, 'weight': '205', 'compRating': '0.8267', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '64', 'stateRank': '132'}, {'school': 'vanderbilt', 'year': '2016', 'playerName': 'Jackson Winrow', 'highSchool': 'Shawnee', 'city': 'Shawnee', 'state': 'OK', 'position': 'WR', 'height': 74.0, 'weight': '180', 'compRating': '0.8266', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '211', 'stateRank': '18', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '138', '247stateRank': '9'}, {'school': 'vanderbilt', 'year': '2016', 'playerName': 'Braden Kopp', 'highSchool': 'Houston Christian', 'city': 'Houston', 'state': 'TX', 'position': 'OT', 'height': 78.0, 'weight': '285', 'compRating': '0.8259', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '118', 'stateRank': '166', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '82', '247stateRank': '120'}, {'school': 'vanderbilt', 'year': '2016', 'playerName': 'Drew Birchmeier', 'highSchool': 'Cosby', 'city': 'Midlothian', 'state': 'VA', 'position': 'DT', 'height': 76.0, 'weight': '275', 'compRating': '0.8249', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '89', 'stateRank': '42', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '64', '247stateRank': '33'}, {'school': 'vanderbilt', 'year': '2016', 'playerName': 'Sam Loy', 'highSchool': 'Santa Margarita Catholic', 'city': 'Rancho Santa Margarita', 'state': 'CA', 'position': 'P', 'height': 74.0, 'weight': '192', 'compRating': '0.8163', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '11', 'stateRank': '196', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '7', '247stateRank': '181'}, {'school': 'vanderbilt', 'year': '2016', 'playerName': 'Cameron Tidd', 'highSchool': 'Center Grove', 'city': 'Greenwood', 'state': 'IN', 'position': 'DT', 'height': 75.0, 'weight': '265', 'compRating': '0.8137', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '110', 'stateRank': '25', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '73', '247stateRank': '21'}, {'school': 'vanderbilt', 'year': '2016', 'playerName': "Josiah Sa'o", 'highSchool': 'Kearny', 'city': 'San Diego', 'state': 'CA', 'position': 'DT', 'height': 74.5, 'weight': '285', 'compRating': '0.8025', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '121', 'stateRank': '230', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '83', '247stateRank': '143'}, {'school': 'vanderbilt', 'year': '2016', 'playerName': 'Kenny Hebert', 'highSchool': 'Holy Cross', 'city': 'New Orleans', 'state': 'LA', 'position': 'OLB', 'height': 75.5, 'weight': '215', 'compRating': '0.7857', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '172', 'stateRank': '110', '247Rating': ' 78 ', '247Stars': 2, '247positionRank': '154', '247stateRank': '107'}, {'school': 'vanderbilt', 'year': '2016', 'playerName': 'Andre Mintze', 'highSchool': 'Imhotep Institute', 'city': 'Philadelphia', 'state': 'PA', 'position': 'WDE', 'height': 75.0, 'weight': '220', 'compRating': '0.7817', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '139', 'stateRank': '58', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '120', '247stateRank': '55'}, {'school': 'alabama', 'year': '2016', 'playerName': 'Ben Davis', 'highSchool': 'Gordo', 'city': 'Gordo', 'state': 'AL', 'position': 'ILB', 'height': 75.0, 'weight': '240', 'compRating': '0.9955', 'compStars': 5, 'nationalRank': '10', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '13', '247positionRank': '1', '247stateRank': '1'}, {'school': 'alabama', 'year': '2016', 'playerName': 'Mack Wilson', 'highSchool': 'Carver', 'city': 'Montgomery', 'state': 'AL', 'position': 'OLB', 'height': 74.0, 'weight': '220', 'compRating': '0.9884', 'compStars': 5, 'nationalRank': '16', 'positionRank': '2', 'stateRank': '2', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '19', '247positionRank': '2', '247stateRank': '2'}, {'school': 'alabama', 'year': '2016', 'playerName': 'Jonah Williams', 'highSchool': 'Folsom', 'city': 'Folsom', 'state': 'CA', 'position': 'OT', 'height': 77.0, 'weight': '280', 'compRating': '0.9877', 'compStars': 5, 'nationalRank': '17', 'positionRank': '2', 'stateRank': '3', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '24', '247positionRank': '6', '247stateRank': '3'}, {'school': 'alabama', 'year': '2016', 'playerName': 'B.J. Emmons', 'highSchool': 'Freedom', 'city': 'Morganton', 'state': 'NC', 'position': 'RB', 'height': 70.0, 'weight': '232', 'compRating': '0.9805', 'compStars': 4, 'nationalRank': '35', 'positionRank': '2', 'stateRank': '3', '247Rating': ' 82 ', '247Stars': 3, '247nationalRank': '159', '247positionRank': '8', '247stateRank': '26'}, {'school': 'alabama', 'year': '2016', 'playerName': 'Nigel Knott', 'highSchool': 'Germantown', 'city': 'Madison', 'state': 'MS', 'position': 'CB', 'height': 71.0, 'weight': '175', 'compRating': '0.9675', 'compStars': 4, 'nationalRank': '66', 'positionRank': '8', 'stateRank': '4', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '51', '247positionRank': '4', '247stateRank': '4'}, {'school': 'alabama', 'year': '2016', 'playerName': 'Terrell Lewis', 'highSchool': "St. John's", 'city': 'Washington', 'state': 'DC', 'position': 'WDE', 'height': 77.0, 'weight': '250', 'compRating': '0.9671', 'compStars': 4, 'nationalRank': '67', 'positionRank': '6', 'stateRank': '1', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '23', '247positionRank': '3', '247stateRank': '1'}, {'school': 'alabama', 'year': '2016', 'playerName': 'Shyheim Carter', 'highSchool': 'Kentwood', 'city': 'Kentwood', 'state': 'LA', 'position': 'CB', 'height': 72.0, 'weight': '190', 'compRating': '0.9650', 'compStars': 4, 'nationalRank': '71', 'positionRank': '9', 'stateRank': '5', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '107', '247positionRank': '10', '247stateRank': '5'}, {'school': 'alabama', 'year': '2016', 'playerName': 'Raekwon Davis', 'highSchool': 'Meridian', 'city': 'Meridian', 'state': 'MS', 'position': 'DT', 'height': 78.5, 'weight': '327', 'compRating': '0.9587', 'compStars': 4, 'nationalRank': '83', 'positionRank': '12', 'stateRank': '5', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '92', '247positionRank': '14', '247stateRank': '5'}, {'school': 'alabama', 'year': '2016', 'playerName': 'Charles Baldwin', 'highSchool': 'ASA College', 'city': 'None', 'state': 'None', 'position': 'OT', 'height': 77.0, 'weight': '315', 'compRating': '0.9535', 'compStars': 4, 'nationalRank': '2', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '2', '247positionRank': '1', '247stateRank': '1'}, {'school': 'alabama', 'year': '2016', 'playerName': 'Trevon Diggs', 'highSchool': 'The Avalon School', 'city': 'Bethesda', 'state': 'MD', 'position': 'ATH', 'height': 72.0, 'weight': '183', 'compRating': '0.9462', 'compStars': 4, 'nationalRank': '115', 'positionRank': '4', 'stateRank': '5', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '186', '247positionRank': '7', '247stateRank': '6'}, {'school': 'alabama', 'year': '2016', 'playerName': 'Jared Mayden', 'highSchool': 'Sachse', 'city': 'Sachse', 'state': 'TX', 'position': 'CB', 'height': 73.0, 'weight': '190', 'compRating': '0.9344', 'compStars': 4, 'nationalRank': '145', 'positionRank': '13', 'stateRank': '23', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '37', '247stateRank': '58'}, {'school': 'alabama', 'year': '2016', 'playerName': 'Quinnen Williams', 'highSchool': 'Wenonah Sch', 'city': 'Birmingham', 'state': 'AL', 'position': 'DT', 'height': 76.0, 'weight': '265', 'compRating': '0.9321', 'compStars': 4, 'nationalRank': '155', 'positionRank': '17', 'stateRank': '4', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '180', '247positionRank': '20', '247stateRank': '4'}, {'school': 'alabama', 'year': '2016', 'playerName': 'Deonte Brown', 'highSchool': 'Austin', 'city': 'Decatur', 'state': 'AL', 'position': 'OG', 'height': 75.0, 'weight': '350', 'compRating': '0.9258', 'compStars': 4, 'nationalRank': '177', 'positionRank': '9', 'stateRank': '5', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '231', '247positionRank': '10', '247stateRank': '6'}, {'school': 'alabama', 'year': '2016', 'playerName': 'Chris Owens', 'highSchool': 'Lamar', 'city': 'Arlington', 'state': 'TX', 'position': 'OG', 'height': 74.5, 'weight': '312', 'compRating': '0.9241', 'compStars': 4, 'nationalRank': '187', 'positionRank': '10', 'stateRank': '28', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '221', '247positionRank': '9', '247stateRank': '35'}, {'school': 'alabama', 'year': '2016', 'playerName': 'Jalen Hurts', 'highSchool': 'Channelview', 'city': 'Channelview', 'state': 'TX', 'position': 'DUAL', 'height': 74.0, 'weight': '208', 'compRating': '0.9231', 'compStars': 4, 'nationalRank': '192', 'positionRank': '4', 'stateRank': '29', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '104', '247positionRank': '1', '247stateRank': '18'}, {'school': 'alabama', 'year': '2016', 'playerName': 'Scott Lashley', 'highSchool': 'West Point', 'city': 'West Point', 'state': 'MS', 'position': 'OT', 'height': 78.0, 'weight': '300', 'compRating': '0.9223', 'compStars': 4, 'nationalRank': '201', 'positionRank': '20', 'stateRank': '8', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '141', '247positionRank': '16', '247stateRank': '8'}, {'school': 'alabama', 'year': '2016', 'playerName': 'T.J. Simmons', 'highSchool': 'Clay-Chalkville', 'city': 'Pinson', 'state': 'AL', 'position': 'WR', 'height': 74.0, 'weight': '180', 'compRating': '0.8887', 'compStars': 3, 'nationalRank': '346', 'positionRank': '59', 'stateRank': '9', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '67', '247stateRank': '13'}, {'school': 'alabama', 'year': '2016', 'playerName': 'Miller Forristall', 'highSchool': 'Cartersville', 'city': 'Cartersville', 'state': 'GA', 'position': 'TE', 'height': 77.0, 'weight': '220', 'compRating': '0.8822', 'compStars': 3, 'nationalRank': '382', 'positionRank': '16', 'stateRank': '33', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '23', '247stateRank': '49'}, {'school': 'alabama', 'year': '2016', 'playerName': 'Josh Jacobs', 'highSchool': 'McLain', 'city': 'Tulsa', 'state': 'OK', 'position': 'APB', 'height': 70.0, 'weight': '200', 'compRating': '0.8725', 'compStars': 3, 'nationalRank': '469', 'positionRank': '11', 'stateRank': '4', '247Rating': ' 92 ', '247Stars': 4, '247positionRank': '6', '247stateRank': '2'}, {'school': 'alabama', 'year': '2016', 'playerName': 'Jamar King', 'highSchool': 'Mendocino College', 'city': 'Ukiah', 'state': 'CA', 'position': 'SDE', 'height': 77.0, 'weight': '285', 'compRating': '0.8676', 'compStars': 3, 'nationalRank': '53', 'positionRank': '3', 'stateRank': '8', '247Rating': ' 90 ', '247Stars': 4, '247nationalRank': '16', '247positionRank': '2', '247stateRank': '1'}, {'school': 'alabama', 'year': '2016', 'playerName': 'Irv Smith Jr.', 'highSchool': 'Brother Martin', 'city': 'New Orleans', 'state': 'LA', 'position': 'TE', 'height': 76.0, 'weight': '230', 'compRating': '0.8671', 'compStars': 3, 'nationalRank': '528', 'positionRank': '22', 'stateRank': '27', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '31', '247stateRank': '37'}, {'school': 'alabama', 'year': '2016', 'playerName': 'Aaron Robinson', 'highSchool': 'Deerfield Beach', 'city': 'Deerfield Beach', 'state': 'FL', 'position': 'CB', 'height': 73.0, 'weight': '178', 'compRating': '0.8621', 'compStars': 3, 'nationalRank': '584', 'positionRank': '55', 'stateRank': '84', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '41', '247stateRank': '59'}, {'school': 'alabama', 'year': '2016', 'playerName': 'Shawn Jennings', 'highSchool': 'Dadeville', 'city': 'Dadeville', 'state': 'AL', 'position': 'ATH', 'height': 74.0, 'weight': '218', 'compRating': '0.8615', 'compStars': 3, 'nationalRank': '598', 'positionRank': '36', 'stateRank': '20', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '56', '247stateRank': '30'}, {'school': 'alabama', 'year': '2016', 'playerName': 'Joe Donald', 'highSchool': 'Mountain Brook', 'city': 'Birmingham', 'state': 'AL', 'position': 'OLB', 'height': 75.0, 'weight': '210', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '161', 'stateRank': '85', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2016', 'playerName': 'Kendell Jones', 'highSchool': 'Shoemaker', 'city': 'Killeen', 'state': 'TX', 'position': 'DT', 'height': 77.0, 'weight': '375', 'compRating': '0.9548', 'compStars': 4, 'nationalRank': '96', 'positionRank': '13', 'stateRank': '14'}, {'school': 'florida', 'year': '2003', 'playerName': 'Eric Holcombe', 'highSchool': 'Northeast Mississippi C.C.', 'city': 'Booneville', 'state': 'MS', 'position': 'DT', 'height': 76.0, 'weight': '275', 'compRating': '0.9333', 'compStars': 4, 'nationalRank': '9', 'positionRank': '1', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2003', 'playerName': 'Reynaldo Hill', 'highSchool': 'Dodge City C.C.', 'city': 'Dodge City', 'state': 'KS', 'position': 'CB', 'height': 73.0, 'weight': '185', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '11', 'positionRank': '2', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2003', 'playerName': 'Anthony Guerrero', 'highSchool': 'Cerritos College', 'city': 'Norwalk', 'state': 'CA', 'position': 'OG', 'height': 75.0, 'weight': '305', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '17', 'positionRank': '1', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2003', 'playerName': 'Skyler Thornton', 'highSchool': 'LaGrange', 'city': 'Lagrange', 'state': 'GA', 'position': 'RB', 'height': 72.0, 'weight': '195', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '148', 'positionRank': '14', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2003', 'playerName': 'Tranell Morant', 'highSchool': 'G. Holmes Braddock Senior', 'city': 'Miami', 'state': 'FL', 'position': 'SDE', 'height': 77.0, 'weight': '260', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '271', 'positionRank': '18', 'stateRank': '35', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2003', 'playerName': 'Eric Wilbur', 'highSchool': 'Trinity Preparatory School', 'city': 'Winter Park', 'state': 'FL', 'position': 'K', 'height': 75.0, 'weight': '185', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '275', 'positionRank': '4', 'stateRank': '36', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2003', 'playerName': 'David Kenner', 'highSchool': 'Lackawanna C.C.', 'city': 'Scranton', 'state': 'PA', 'position': 'TE', 'height': 76.0, 'weight': '255', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '56', 'positionRank': '3', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2003', 'playerName': 'Tavarus Washington', 'highSchool': 'Mississippi Delta C.C.', 'city': 'Moorhead', 'state': 'MS', 'position': 'OT', 'height': 76.0, 'weight': '290', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '67', 'positionRank': '4', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2003', 'playerName': 'Howard Lingard', 'highSchool': 'Oviedo', 'city': 'Oviedo', 'state': 'FL', 'position': 'WDE', 'height': 75.0, 'weight': '225', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '358', 'positionRank': '16', 'stateRank': '46', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2003', 'playerName': 'Julian Riley', 'highSchool': 'Lakewood', 'city': 'Saint Petersburg', 'state': 'FL', 'position': 'SDE', 'height': 76.0, 'weight': '260', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '546', 'positionRank': '32', 'stateRank': '69', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2003', 'playerName': 'Carlton Medder', 'highSchool': 'South Lake', 'city': 'Groveland', 'state': 'FL', 'position': 'OT', 'height': 76.0, 'weight': '327', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '637', 'positionRank': '49', 'stateRank': '80', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2003', 'playerName': 'Billy Griffin', 'highSchool': 'Ventura College', 'city': 'Ventura', 'state': 'CA', 'position': 'OG', 'height': 76.0, 'weight': '299', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '106', 'positionRank': '6', 'stateRank': '42', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2003', 'playerName': 'Clint McMillan', 'highSchool': 'Oviedo', 'city': 'Oviedo', 'state': 'FL', 'position': 'DT', 'height': 75.0, 'weight': '270', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '733', 'positionRank': '54', 'stateRank': '95', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2003', 'playerName': 'Michael Hill', 'highSchool': 'Smiths Station', 'city': 'Smiths Station', 'state': 'AL', 'position': 'DT', 'height': 74.0, 'weight': '270', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '803', 'positionRank': '55', 'stateRank': '27', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2003', 'playerName': 'Steve Rissler', 'highSchool': 'Riverview', 'city': 'Sarasota', 'state': 'FL', 'position': 'OG', 'height': 75.0, 'weight': '315', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '828', 'positionRank': '64', 'stateRank': '103', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2003', 'playerName': 'Johnny Dingle', 'highSchool': 'Booker T. Washington', 'city': 'Pensacola', 'state': 'FL', 'position': 'SDE', 'height': 76.0, 'weight': '218', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '59', 'stateRank': '126', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2003', 'playerName': 'Andre Caldwell', 'highSchool': 'Jefferson', 'city': 'Tampa', 'state': 'FL', 'position': 'WR', 'height': 74.0, 'weight': '180', 'compRating': '0.9960', 'compStars': 5, 'nationalRank': '7', 'positionRank': '2', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2003', 'playerName': 'Chris Leak', 'highSchool': 'Independence', 'city': 'Charlotte', 'state': 'NC', 'position': 'PRO', 'height': 73.0, 'weight': '205', 'compRating': '0.9940', 'compStars': 5, 'nationalRank': '13', 'positionRank': '2', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2003', 'playerName': 'Jarvis Moss', 'highSchool': 'Ryan', 'city': 'Denton', 'state': 'TX', 'position': 'WDE', 'height': 79.0, 'weight': '220', 'compRating': '0.9928', 'compStars': 5, 'nationalRank': '18', 'positionRank': '1', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2003', 'playerName': 'Joe Cohen', 'highSchool': 'Palm Bay Senior', 'city': 'Melbourne', 'state': 'FL', 'position': 'SDE', 'height': 76.0, 'weight': '245', 'compRating': '0.9916', 'compStars': 5, 'nationalRank': '20', 'positionRank': '2', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2003', 'playerName': 'Chad Jackson', 'highSchool': 'Hoover', 'city': 'Hoover', 'state': 'AL', 'position': 'WR', 'height': 73.0, 'weight': '200', 'compRating': '0.9904', 'compStars': 5, 'nationalRank': '23', 'positionRank': '3', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2003', 'playerName': 'Reggie Nelson', 'highSchool': 'Palm Bay Senior', 'city': 'Melbourne', 'state': 'FL', 'position': 'S', 'height': 72.0, 'weight': '175', 'compRating': '0.9805', 'compStars': 4, 'nationalRank': '42', 'positionRank': '3', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2003', 'playerName': 'Marcus Thomas', 'highSchool': 'Mandarin', 'city': 'Jacksonville', 'state': 'FL', 'position': 'DT', 'height': 76.0, 'weight': '285', 'compRating': '0.9657', 'compStars': 4, 'nationalRank': '68', 'positionRank': '8', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2003', 'playerName': 'Earl Everett', 'highSchool': 'South Sumter', 'city': 'Bushnell', 'state': 'FL', 'position': 'OLB', 'height': 75.0, 'weight': '210', 'compRating': '0.9484', 'compStars': 4, 'nationalRank': '76', 'positionRank': '4', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2003', 'playerName': 'Justin Midgett', 'highSchool': 'Charlotte', 'city': 'Punta Gorda', 'state': 'FL', 'position': 'PRO', 'height': 76.0, 'weight': '195', 'compRating': '0.9400', 'compStars': 4, 'nationalRank': '93', 'positionRank': '6', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'texas-am', 'year': '2016', 'playerName': 'Justin Madubuike', 'highSchool': 'McKinney North', 'city': 'McKinney', 'state': 'TX', 'position': 'SDE', 'height': 74.5, 'weight': '250', 'compRating': '0.9726', 'compStars': 4, 'nationalRank': '56', 'positionRank': '5', 'stateRank': '10', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '75', '247positionRank': '8', '247stateRank': '8'}, {'school': 'texas-am', 'year': '2016', 'playerName': 'Kellen Diesch', 'highSchool': 'Byron Nelson', 'city': 'Trophy Club', 'state': 'TX', 'position': 'OT', 'height': 79.0, 'weight': '270', 'compRating': '0.9519', 'compStars': 4, 'nationalRank': '105', 'positionRank': '11', 'stateRank': '17', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '101', '247positionRank': '12', '247stateRank': '17'}, {'school': 'texas-am', 'year': '2016', 'playerName': 'Quartney Davis', 'highSchool': 'Langham Creek', 'city': 'Houston', 'state': 'TX', 'position': 'WR', 'height': 74.5, 'weight': '181', 'compRating': '0.9422', 'compStars': 4, 'nationalRank': '128', 'positionRank': '23', 'stateRank': '21', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '110', '247positionRank': '11', '247stateRank': '20'}, {'school': 'texas-am', 'year': '2016', 'playerName': 'Aaron Hansford', 'highSchool': "St. John's", 'city': 'Washington', 'state': 'DC', 'position': 'OLB', 'height': 74.0, 'weight': '210', 'compRating': '0.9341', 'compStars': 4, 'nationalRank': '148', 'positionRank': '12', 'stateRank': '2', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '210', '247positionRank': '15', '247stateRank': '2'}, {'school': 'texas-am', 'year': '2016', 'playerName': 'Klyde Chriss', 'highSchool': 'Warren Easton', 'city': 'New Orleans', 'state': 'LA', 'position': 'WR', 'height': 72.0, 'weight': '170', 'compRating': '0.9228', 'compStars': 4, 'nationalRank': '195', 'positionRank': '38', 'stateRank': '12', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '187', '247positionRank': '34', '247stateRank': '12'}, {'school': 'texas-am', 'year': '2016', 'playerName': 'Travon Fuller', 'highSchool': 'Athens', 'city': 'Athens', 'state': 'TX', 'position': 'CB', 'height': 73.0, 'weight': '170', 'compRating': '0.9123', 'compStars': 4, 'nationalRank': '234', 'positionRank': '21', 'stateRank': '35', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '182', '247positionRank': '18', '247stateRank': '28'}, {'school': 'texas-am', 'year': '2016', 'playerName': 'Charles Oliver', 'highSchool': 'Fairfield', 'city': 'Fairfield', 'state': 'TX', 'position': 'CB', 'height': 74.5, 'weight': '184', 'compRating': '0.9081', 'compStars': 4, 'nationalRank': '254', 'positionRank': '24', 'stateRank': '40', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '157', '247positionRank': '15', '247stateRank': '26'}, {'school': 'texas-am', 'year': '2016', 'playerName': 'Trayveon Williams', 'highSchool': 'C.E. King', 'city': 'Houston', 'state': 'TX', 'position': 'APB', 'height': 69.0, 'weight': '185', 'compRating': '0.8949', 'compStars': 4, 'nationalRank': '313', 'positionRank': '8', 'stateRank': '49', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '8', '247stateRank': '51'}, {'school': 'texas-am', 'year': '2016', 'playerName': 'Austin Anderson', 'highSchool': 'Mineola', 'city': 'Mineola', 'state': 'TX', 'position': 'OT', 'height': 76.0, 'weight': '285', 'compRating': '0.8832', 'compStars': 3, 'nationalRank': '373', 'positionRank': '40', 'stateRank': '59', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '38', '247stateRank': '60'}, {'school': 'texas-am', 'year': '2016', 'playerName': 'Tyrel Dodson', 'highSchool': 'Centennial', 'city': 'Franklin', 'state': 'TN', 'position': 'ILB', 'height': 74.0, 'weight': '235', 'compRating': '0.8796', 'compStars': 3, 'nationalRank': '408', 'positionRank': '14', 'stateRank': '9', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '209', '247positionRank': '11', '247stateRank': '3'}, {'school': 'texas-am', 'year': '2016', 'playerName': 'Ikenna Okeke', 'highSchool': 'Smyrna', 'city': 'Smyrna', 'state': 'TN', 'position': 'S', 'height': 74.0, 'weight': '200', 'compRating': '0.8761', 'compStars': 3, 'nationalRank': '435', 'positionRank': '24', 'stateRank': '11', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '19', '247stateRank': '10'}, {'school': 'texas-am', 'year': '2016', 'playerName': 'Rakeem Boyd', 'highSchool': 'Stratford', 'city': 'Houston', 'state': 'TX', 'position': 'RB', 'height': 71.0, 'weight': '198', 'compRating': '0.8752', 'compStars': 3, 'nationalRank': '447', 'positionRank': '24', 'stateRank': '72', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '72', '247positionRank': '4', '247stateRank': '13'}, {'school': 'texas-am', 'year': '2016', 'playerName': 'Kendrick Rogers', 'highSchool': 'Frankston', 'city': 'Frankston', 'state': 'TX', 'position': 'WR', 'height': 77.0, 'weight': '194', 'compRating': '0.8731', 'compStars': 3, 'nationalRank': '462', 'positionRank': '78', 'stateRank': '73', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '56', '247stateRank': '42'}, {'school': 'texas-am', 'year': '2016', 'playerName': 'Nick Starkel', 'highSchool': 'Liberty Christian', 'city': 'Argyle', 'state': 'TX', 'position': 'PRO', 'height': 75.5, 'weight': '186', 'compRating': '0.8671', 'compStars': 3, 'nationalRank': '523', 'positionRank': '21', 'stateRank': '80', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '19', '247stateRank': '77'}, {'school': 'texas-am', 'year': '2016', 'playerName': 'Moses Reynolds', 'highSchool': 'John Jay', 'city': 'San Antonio', 'state': 'TX', 'position': 'ATH', 'height': 74.0, 'weight': '185', 'compRating': '0.8634', 'compStars': 3, 'nationalRank': '574', 'positionRank': '34', 'stateRank': '89', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '38', '247stateRank': '75'}, {'school': 'texas-am', 'year': '2016', 'playerName': 'Riley Anderson', 'highSchool': 'Mineola', 'city': 'Mineola', 'state': 'TX', 'position': 'OT', 'height': 77.0, 'weight': '285', 'compRating': '0.8621', 'compStars': 3, 'nationalRank': '585', 'positionRank': '51', 'stateRank': '90', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '88', '247stateRank': '126'}, {'school': 'texas-am', 'year': '2016', 'playerName': 'Clifford Chattman', 'highSchool': 'McDonogh 35', 'city': 'New Orleans', 'state': 'LA', 'position': 'ATH', 'height': 76.0, 'weight': '175', 'compRating': '0.8590', 'compStars': 3, 'nationalRank': '640', 'positionRank': '41', 'stateRank': '31', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '54', '247stateRank': '40'}, {'school': 'texas-am', 'year': '2016', 'playerName': 'Colton Prater', 'highSchool': 'Airline', 'city': 'Bossier City', 'state': 'LA', 'position': 'OG', 'height': 76.0, 'weight': '275', 'compRating': '0.8383', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '56', 'stateRank': '58', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '48', '247stateRank': '50'}, {'school': 'texas-am', 'year': '2016', 'playerName': 'Braden Mann', 'highSchool': 'Cy-Fair', 'city': 'Cypress', 'state': 'TX', 'position': 'K', 'height': 72.0, 'weight': '200', 'compRating': '0.8353', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '5', 'stateRank': '142', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '4', '247stateRank': '227'}, {'school': 'texas-am', 'year': '2016', 'playerName': 'Ryan McCollum', 'highSchool': 'Klein Oak', 'city': 'Spring', 'state': 'TX', 'position': 'OT', 'height': 78.0, 'weight': '270', 'compRating': '0.8293', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '112', 'stateRank': '159', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '135', '247stateRank': '198'}, {'school': 'texas-am', 'year': '2016', 'playerName': 'Alton Robinson', 'highSchool': 'Judson', 'city': 'Converse', 'state': 'TX', 'position': 'WDE', 'height': 74.5, 'weight': '235', 'compRating': '0.8721', 'compStars': 3, 'nationalRank': '472', 'positionRank': '28', 'stateRank': '75', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '27', '247stateRank': '47'}, {'school': 'south-carolina', 'year': '2002', 'playerName': 'Ricardo Hurley', 'highSchool': 'Greenwood', 'city': 'Greenwood', 'state': 'SC', 'position': 'ILB', 'height': 73.0, 'weight': '235', 'compRating': '0.9924', 'compStars': 5, 'nationalRank': '17', 'positionRank': '2', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2002', 'playerName': 'Darel Slay', 'highSchool': 'Holmes C.C.', 'city': 'Goodman', 'state': 'MS', 'position': 'ILB', 'height': 75.0, 'weight': '245', 'compRating': '0.9667', 'compStars': 4, 'nationalRank': '2', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2002', 'playerName': 'Randy Jackson', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'DT', 'height': 76.0, 'weight': '277', 'compRating': '0.9667', 'compStars': 4, 'nationalRank': '9', 'positionRank': '2', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2002', 'playerName': 'Cory Peoples', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'CB', 'height': 74.0, 'weight': '203', 'compRating': '0.9333', 'compStars': 4, 'nationalRank': '15', 'positionRank': '1', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2002', 'playerName': 'Jabari Levey', 'highSchool': 'Berkeley', 'city': 'Moncks Corner', 'state': 'SC', 'position': 'OT', 'height': 79.0, 'weight': '300', 'compRating': '0.9301', 'compStars': 4, 'nationalRank': '122', 'positionRank': '11', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2002', 'playerName': 'Moe Thompson', 'highSchool': 'Stratford', 'city': 'Goose Creek', 'state': 'SC', 'position': 'TE', 'height': 76.0, 'weight': '255', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '162', 'positionRank': '10', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2002', 'playerName': 'Troy Williamson', 'highSchool': 'Silver Bluff', 'city': 'Aiken', 'state': 'SC', 'position': 'WR', 'height': 74.0, 'weight': '200', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '272', 'positionRank': '23', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2002', 'playerName': 'Kenny Irons', 'highSchool': 'Dacula', 'city': 'Dacula', 'state': 'GA', 'position': 'RB', 'height': 71.0, 'weight': '190', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '294', 'positionRank': '21', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2002', 'playerName': 'Aryhel Freeman', 'highSchool': 'Tri-cities', 'city': 'Atlanta', 'state': 'GA', 'position': 'DUAL', 'height': 74.0, 'weight': '200', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '327', 'positionRank': '13', 'stateRank': '27', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2002', 'playerName': 'Taqiy Muhammad', 'highSchool': 'Butler C.C.', 'city': 'El Dorado', 'state': 'KS', 'position': 'S', 'height': 73.0, 'weight': '180', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '76', 'positionRank': '4', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2002', 'playerName': 'Jermaine Harris', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'S', 'height': 76.0, 'weight': '205', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '77', 'positionRank': '5', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2002', 'playerName': 'Regis Edgerson', 'highSchool': 'Garfield Heights', 'city': 'Cleveland', 'state': 'OH', 'position': 'FB', 'height': 73.0, 'weight': '220', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '371', 'positionRank': '6', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2002', 'playerName': 'Brandon Schweitzer', 'highSchool': 'West Henderson', 'city': 'Hendersonville', 'state': 'NC', 'position': 'FB', 'height': 75.0, 'weight': '250', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '485', 'positionRank': '12', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2002', 'playerName': 'Stephen Sene', 'highSchool': 'Dutch Fork', 'city': 'Irmo', 'state': 'SC', 'position': 'OT', 'height': 78.0, 'weight': '300', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '490', 'positionRank': '39', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2002', 'playerName': 'Brandon Robinson', 'highSchool': 'South Forsyth', 'city': 'Cumming', 'state': 'GA', 'position': 'OG', 'height': 76.0, 'weight': '265', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '505', 'positionRank': '38', 'stateRank': '34', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2002', 'playerName': 'Charles Ben', 'highSchool': 'Calhoun County', 'city': 'Saint Matthews', 'state': 'SC', 'position': 'WR', 'height': 73.0, 'weight': '190', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '512', 'positionRank': '50', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2002', 'playerName': 'Tremaine Tyler', 'highSchool': 'Edisto Hi', 'city': 'Cordova', 'state': 'SC', 'position': 'CB', 'height': 72.0, 'weight': '175', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '522', 'positionRank': '36', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2002', 'playerName': 'Andre Hemphill', 'highSchool': 'Brevard', 'city': 'Brevard', 'state': 'NC', 'position': 'WR', 'height': 73.0, 'weight': '190', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '526', 'positionRank': '53', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2002', 'playerName': 'Andy Boyd', 'highSchool': 'Concord', 'city': 'Concord', 'state': 'NC', 'position': 'SDE', 'height': 77.0, 'weight': '250', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '535', 'positionRank': '29', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2002', 'playerName': 'John Hall', 'highSchool': 'Murray County', 'city': 'Chatsworth', 'state': 'GA', 'position': 'OT', 'height': 78.0, 'weight': '280', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '559', 'positionRank': '45', 'stateRank': '39', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2002', 'playerName': 'Dvon Hill', 'highSchool': 'Greenwood', 'city': 'Greenwood', 'state': 'SC', 'position': 'WR', 'height': 75.0, 'weight': '200', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '603', 'positionRank': '63', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2002', 'playerName': 'Kris Mick', 'highSchool': 'Troy', 'city': 'Troy', 'state': 'OH', 'position': 'OT', 'height': 77.0, 'weight': '275', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '618', 'positionRank': '50', 'stateRank': '31', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2002', 'playerName': 'Daccus Turman', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'RB', 'height': 72.0, 'weight': '220', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '9', 'positionRank': '1', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2002', 'playerName': 'Chris White', 'highSchool': 'Chester', 'city': 'Chester', 'state': 'SC', 'position': 'OG', 'height': 76.0, 'weight': '290', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '775', 'positionRank': '63', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2002', 'playerName': 'Kris Clark', 'highSchool': 'Lexington', 'city': 'Lexington', 'state': 'SC', 'position': 'DUAL', 'height': 71.0, 'weight': '185', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': '897', 'positionRank': '31', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2002', 'playerName': 'Bennett Swygert', 'highSchool': 'Summerville', 'city': 'Summerville', 'state': 'SC', 'position': 'DUAL', 'height': 75.0, 'weight': '195', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '34', 'stateRank': '22', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2002', 'playerName': 'Fred Bennett', 'highSchool': 'Manning', 'city': 'Manning', 'state': 'SC', 'position': 'CB', 'height': 74.0, 'weight': '180', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2012', 'playerName': 'Kwon Alexander', 'highSchool': 'Oxford', 'city': 'Oxford', 'state': 'AL', 'position': 'OLB', 'height': 74.0, 'weight': '210', 'compRating': '0.9581', 'compStars': 4, 'nationalRank': '94', 'positionRank': '7', 'stateRank': '6', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '104', '247positionRank': '9', '247stateRank': '6'}, {'school': 'lsu', 'year': '2012', 'playerName': 'Vadal Alexander', 'highSchool': 'Buford', 'city': 'Buford', 'state': 'GA', 'position': 'OG', 'height': 78.0, 'weight': '315', 'compRating': '0.9360', 'compStars': 4, 'nationalRank': '162', 'positionRank': '9', 'stateRank': '15', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '165', '247positionRank': '8', '247stateRank': '14'}, {'school': 'lsu', 'year': '2012', 'playerName': 'Danielle Hunter', 'highSchool': 'Katy', 'city': 'Katy', 'state': 'TX', 'position': 'WDE', 'height': 76.0, 'weight': '220', 'compRating': '0.9259', 'compStars': 4, 'nationalRank': '198', 'positionRank': '14', 'stateRank': '28', '247Rating': ' 92 ', '247Stars': 4, '247positionRank': '15', '247stateRank': '31'}, {'school': 'lsu', 'year': '2012', 'playerName': 'Dwayne Thomas', 'highSchool': 'O Perry Walker', 'city': 'New Orleans', 'state': 'LA', 'position': 'CB', 'height': 73.0, 'weight': '173', 'compRating': '0.9210', 'compStars': 4, 'nationalRank': '222', 'positionRank': '15', 'stateRank': '5', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '239', '247positionRank': '15', '247stateRank': '10'}, {'school': 'lsu', 'year': '2012', 'playerName': 'Lorenzo Phillips', 'highSchool': 'Patterson', 'city': 'Patterson', 'state': 'LA', 'position': 'OLB', 'height': 73.0, 'weight': '200', 'compRating': '0.9212', 'compStars': 4, 'nationalRank': '220', 'positionRank': '22', 'stateRank': '4', '247Rating': ' 90 ', '247Stars': 4, '247nationalRank': '24', '247positionRank': '1', '247stateRank': '11'}, {'school': 'lsu', 'year': '2012', 'playerName': 'Ronnie Feist', 'highSchool': 'West St. John', 'city': 'Edgard', 'state': 'LA', 'position': 'OLB', 'height': 73.0, 'weight': '225', 'compRating': '0.9140', 'compStars': 4, 'nationalRank': '252', 'positionRank': '27', 'stateRank': '7', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '41', '247stateRank': '16'}, {'school': 'lsu', 'year': '2012', 'playerName': 'Corey Thompson', 'highSchool': 'Elkins', 'city': 'Missouri City', 'state': 'TX', 'position': 'S', 'height': 74.0, 'weight': '202', 'compRating': '0.9106', 'compStars': 4, 'nationalRank': '266', 'positionRank': '17', 'stateRank': '38', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '137', '247positionRank': '9', '247stateRank': '18'}, {'school': 'lsu', 'year': '2012', 'playerName': 'Lamar Louis', 'highSchool': 'Breaux Bridge', 'city': 'Breaux Bridge', 'state': 'LA', 'position': 'OLB', 'height': 72.0, 'weight': '210', 'compRating': '0.9050', 'compStars': 4, 'nationalRank': '293', 'positionRank': '30', 'stateRank': '11', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '162', '247positionRank': '14', '247stateRank': '6'}, {'school': 'lsu', 'year': '2012', 'playerName': 'Derrick Raymond', 'highSchool': 'East Jefferson', 'city': 'Metairie', 'state': 'LA', 'position': 'CB', 'height': 72.0, 'weight': '165', 'compRating': '0.9074', 'compStars': 4, 'nationalRank': '279', 'positionRank': '17', 'stateRank': '8', '247Rating': ' 92 ', '247Stars': 4, '247positionRank': '18', '247stateRank': '11'}, {'school': 'lsu', 'year': '2012', 'playerName': 'Derek Edinburgh', 'highSchool': 'Edna Karr', 'city': 'New Orleans', 'state': 'LA', 'position': 'OT', 'height': 80.0, 'weight': '320', 'compRating': '0.9069', 'compStars': 4, 'nationalRank': '283', 'positionRank': '31', 'stateRank': '9', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '46', '247stateRank': '18'}, {'school': 'lsu', 'year': '2012', 'playerName': 'Jeremy Hill', 'highSchool': 'Redemptorist', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'RB', 'height': 73.0, 'weight': '220', 'compRating': '0.8994', 'compStars': 4, 'nationalRank': '316', 'positionRank': '17', 'stateRank': '13', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '18', '247stateRank': '15'}, {'school': 'lsu', 'year': '2012', 'playerName': 'Jerald Hawkins', 'highSchool': 'West St. Mary', 'city': 'Baldwin', 'state': 'LA', 'position': 'OT', 'height': 78.0, 'weight': '275', 'compRating': '0.8935', 'compStars': 4, 'nationalRank': '353', 'positionRank': '36', 'stateRank': '14', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '158', '247positionRank': '19', '247stateRank': '4'}, {'school': 'lsu', 'year': '2012', 'playerName': 'Travin Dural', 'highSchool': 'Breaux Bridge', 'city': 'Breaux Bridge', 'state': 'LA', 'position': 'WR', 'height': 73.0, 'weight': '180', 'compRating': '0.8923', 'compStars': 4, 'nationalRank': '363', 'positionRank': '47', 'stateRank': '15', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '39', '247stateRank': '12'}, {'school': 'lsu', 'year': '2012', 'playerName': 'Deion Jones', 'highSchool': 'Jesuit', 'city': 'New Orleans', 'state': 'LA', 'position': 'OLB', 'height': 74.0, 'weight': '200', 'compRating': '0.8899', 'compStars': 3, 'nationalRank': '381', 'positionRank': '37', 'stateRank': '16', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '226', '247positionRank': '27', '247stateRank': '8'}, {'school': 'lsu', 'year': '2012', 'playerName': 'Dillon Gordon', 'highSchool': 'John Curtis', 'city': 'New Orleans', 'state': 'LA', 'position': 'OT', 'height': 76.0, 'weight': '248', 'compRating': '0.8800', 'compStars': 3, 'nationalRank': '475', 'positionRank': '48', 'stateRank': '20', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '60', '247stateRank': '26'}, {'school': 'lsu', 'year': '2012', 'playerName': 'Trey Granier', 'highSchool': 'Thibodaux', 'city': 'Thibodaux', 'state': 'LA', 'position': 'OLB', 'height': 73.0, 'weight': '205', 'compRating': '0.8789', 'compStars': 3, 'nationalRank': '495', 'positionRank': '47', 'stateRank': '21', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '54', '247stateRank': '24'}, {'school': 'lsu', 'year': '2012', 'playerName': 'Jerqwinick Sandolph', 'highSchool': 'Hahnville', 'city': 'Boutte', 'state': 'LA', 'position': 'CB', 'height': 72.0, 'weight': '175', 'compRating': '0.8704', 'compStars': 3, 'nationalRank': '626', 'positionRank': '43', 'stateRank': '25', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '37', '247stateRank': '19'}, {'school': 'lsu', 'year': '2012', 'playerName': 'Jalen Mills', 'highSchool': 'DeSoto', 'city': 'DeSoto', 'state': 'TX', 'position': 'CB', 'height': 72.0, 'weight': '177', 'compRating': '0.8692', 'compStars': 3, 'nationalRank': '638', 'positionRank': '45', 'stateRank': '106', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '34', '247stateRank': '67'}, {'school': 'lsu', 'year': '2012', 'playerName': 'Kavahra Holmes', 'highSchool': 'Breaux Bridge', 'city': 'Breaux Bridge', 'state': 'LA', 'position': 'WR', 'height': 73.0, 'weight': '170', 'compRating': '0.8585', 'compStars': 3, 'nationalRank': '763', 'positionRank': '86', 'stateRank': '30', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '92', '247stateRank': '27'}, {'school': 'lsu', 'year': '2012', 'playerName': 'Reid Ferguson', 'highSchool': 'Buford', 'city': 'Buford', 'state': 'GA', 'position': 'LS', 'height': 74.0, 'weight': '235', 'compRating': '0.7897', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '2', 'stateRank': '138', '247Rating': ' 76 ', '247Stars': 2, '247positionRank': '1', '247stateRank': '147'}, {'school': 'lsu', 'year': '2012', 'playerName': 'Jamie Keehn', 'highSchool': 'The Rock Hampton GS', 'city': 'Miners Rest', 'state': 'VC', 'position': 'P', 'height': 76.0, 'weight': '220', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2012', 'playerName': 'Avery Peterson', 'highSchool': 'Blanche Ely', 'city': 'Pompano Beach', 'state': 'FL', 'position': 'WR', 'height': 74.0, 'weight': '185', 'compRating': '0.9184', 'compStars': 4, 'nationalRank': '233', 'positionRank': '29', 'stateRank': '36', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '7', '247positionRank': '3', '247stateRank': '7'}, {'school': 'lsu', 'year': '2012', 'playerName': 'Jeremy Liggins', 'highSchool': 'Lafayette', 'city': 'Oxford', 'state': 'MS', 'position': 'ATH', 'height': 75.0, 'weight': '270', 'compRating': '0.9088', 'compStars': 4, 'nationalRank': '277', 'positionRank': '20', 'stateRank': '5', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '64', '247positionRank': '1', '247stateRank': '13'}, {'school': 'lsu', 'year': '2012', 'playerName': 'Fehoko Fanaika', 'highSchool': 'College of San Mateo', 'city': 'San Mateo', 'state': 'CA', 'position': 'OT', 'height': 78.0, 'weight': '335', 'compRating': '0.7800', 'compStars': 2, 'nationalRank': '191', 'positionRank': '23', 'stateRank': '69', '247Rating': ' 84 ', '247Stars': 3, '247nationalRank': '137', '247positionRank': '11', '247stateRank': '45'}, {'school': 'tennessee', 'year': '2016', 'playerName': 'Nigel Warrior', 'highSchool': 'Peachtree Ridge', 'city': 'Suwanee', 'state': 'GA', 'position': 'S', 'height': 72.0, 'weight': '186', 'compRating': '0.9716', 'compStars': 4, 'nationalRank': '57', 'positionRank': '4', 'stateRank': '6', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '44', '247positionRank': '2', '247stateRank': '6'}, {'school': 'tennessee', 'year': '2016', 'playerName': 'Jarrett Guarantano', 'highSchool': 'Bergen Catholic', 'city': 'Oradell', 'state': 'NJ', 'position': 'DUAL', 'height': 76.0, 'weight': '201', 'compRating': '0.9628', 'compStars': 4, 'nationalRank': '79', 'positionRank': '1', 'stateRank': '2', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '193', '247positionRank': '4', '247stateRank': '3'}, {'school': 'tennessee', 'year': '2016', 'playerName': 'Jonathan Kongbo', 'highSchool': 'Arizona Western College', 'city': 'Yuma', 'state': 'AZ', 'position': 'SDE', 'height': 77.5, 'weight': '264', 'compRating': '0.9584', 'compStars': 4, 'nationalRank': '1', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'tennessee', 'year': '2016', 'playerName': 'Tyler Byrd', 'highSchool': 'Naples', 'city': 'Naples', 'state': 'FL', 'position': 'CB', 'height': 71.5, 'weight': '194', 'compRating': '0.9558', 'compStars': 4, 'nationalRank': '93', 'positionRank': '10', 'stateRank': '15', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '103', '247positionRank': '9', '247stateRank': '12'}, {'school': 'tennessee', 'year': '2016', 'playerName': 'Marquez Callaway', 'highSchool': 'Warner Robins', 'city': 'Warner Robins', 'state': 'GA', 'position': 'ATH', 'height': 74.0, 'weight': '185', 'compRating': '0.9515', 'compStars': 4, 'nationalRank': '106', 'positionRank': '3', 'stateRank': '13', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '132', '247positionRank': '6', '247stateRank': '14'}, {'school': 'tennessee', 'year': '2016', 'playerName': 'Marquill Osborne', 'highSchool': 'William Amos Hough', 'city': 'Cornelius', 'state': 'NC', 'position': 'CB', 'height': 71.0, 'weight': '180', 'compRating': '0.9241', 'compStars': 4, 'nationalRank': '188', 'positionRank': '17', 'stateRank': '6', '247Rating': ' 92 ', '247Stars': 4, '247positionRank': '23', '247stateRank': '10'}, {'school': 'tennessee', 'year': '2016', 'playerName': 'Daniel Bituli', 'highSchool': 'Nashville Christian School', 'city': 'Nashville', 'state': 'TN', 'position': 'OLB', 'height': 76.0, 'weight': '230', 'compRating': '0.9173', 'compStars': 4, 'nationalRank': '216', 'positionRank': '14', 'stateRank': '3', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '216', '247positionRank': '17', '247stateRank': '4'}, {'school': 'tennessee', 'year': '2016', 'playerName': 'Ryan Johnson', 'highSchool': 'Brentwood Academy', 'city': 'Brentwood', 'state': 'TN', 'position': 'OT', 'height': 78.0, 'weight': '290', 'compRating': '0.9064', 'compStars': 4, 'nationalRank': '266', 'positionRank': '26', 'stateRank': '5', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '29', '247stateRank': '7'}, {'school': 'tennessee', 'year': '2016', 'playerName': 'Carlin Fils-aime', 'highSchool': 'Naples', 'city': 'Naples', 'state': 'FL', 'position': 'RB', 'height': 71.0, 'weight': '180', 'compRating': '0.9028', 'compStars': 4, 'nationalRank': '286', 'positionRank': '12', 'stateRank': '39', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '30', '247stateRank': '67'}, {'school': 'tennessee', 'year': '2016', 'playerName': 'Alexis Johnson', 'highSchool': 'Fort Scott C.C.', 'city': 'Fort Scott', 'state': 'KS', 'position': 'DT', 'height': 76.0, 'weight': '297', 'compRating': '0.8900', 'compStars': 4, 'nationalRank': '22', 'positionRank': '2', 'stateRank': '4', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '66', '247positionRank': '7', '247stateRank': '14'}, {'school': 'tennessee', 'year': '2016', 'playerName': 'Jeff George', 'highSchool': 'Dodge City C.C.', 'city': 'Dodge City', 'state': 'KS', 'position': 'WR', 'height': 77.5, 'weight': '190', 'compRating': '0.8798', 'compStars': 3, 'nationalRank': '32', 'positionRank': '6', 'stateRank': '9', '247Rating': ' 87 ', '247Stars': 3, '247nationalRank': '45', '247positionRank': '8', '247stateRank': '10'}, {'school': 'tennessee', 'year': '2016', 'playerName': 'D.J. Henderson', 'highSchool': 'Dodge City C.C.', 'city': 'Dodge City', 'state': 'KS', 'position': 'CB', 'height': 71.0, 'weight': '170', 'compRating': '0.8773', 'compStars': 3, 'nationalRank': '38', 'positionRank': '3', 'stateRank': '12', '247Rating': ' 85 ', '247Stars': 3, '247nationalRank': '100', '247positionRank': '10', '247stateRank': '22'}, {'school': 'tennessee', 'year': '2016', 'playerName': 'Marcus Tatum', 'highSchool': 'Mainland', 'city': 'Daytona Beach', 'state': 'FL', 'position': 'OT', 'height': 78.5, 'weight': '255', 'compRating': '0.8751', 'compStars': 3, 'nationalRank': '449', 'positionRank': '44', 'stateRank': '59', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '63', '247stateRank': '87'}, {'school': 'tennessee', 'year': '2016', 'playerName': 'Mykelle McDaniel', 'highSchool': 'Grayson', 'city': 'Loganville', 'state': 'GA', 'position': 'SDE', 'height': 76.0, 'weight': '240', 'compRating': '0.8696', 'compStars': 3, 'nationalRank': '501', 'positionRank': '23', 'stateRank': '47', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '23', '247stateRank': '42'}, {'school': 'tennessee', 'year': '2016', 'playerName': 'Brandon Johnson', 'highSchool': 'American Heritage', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'WR', 'height': 75.0, 'weight': '175', 'compRating': '0.8691', 'compStars': 3, 'nationalRank': '508', 'positionRank': '84', 'stateRank': '71', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '53', '247stateRank': '39'}, {'school': 'tennessee', 'year': '2016', 'playerName': "Ja'Quain Blakely", 'highSchool': 'Colquitt County', 'city': 'Moultrie', 'state': 'GA', 'position': 'OLB', 'height': 74.0, 'weight': '220', 'compRating': '0.8649', 'compStars': 3, 'nationalRank': '556', 'positionRank': '39', 'stateRank': '49', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '52', '247stateRank': '57'}, {'school': 'tennessee', 'year': '2016', 'playerName': 'Austin Pope', 'highSchool': 'Christian Academy of Knoxville', 'city': 'Knoxville', 'state': 'TN', 'position': 'TE', 'height': 76.5, 'weight': '238', 'compRating': '0.8584', 'compStars': 3, 'nationalRank': '658', 'positionRank': '35', 'stateRank': '16', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '29', '247stateRank': '19'}, {'school': 'tennessee', 'year': '2016', 'playerName': 'Devante Brooks', 'highSchool': "St. John's", 'city': 'Washington', 'state': 'DC', 'position': 'TE', 'height': 77.0, 'weight': '255', 'compRating': '0.8575', 'compStars': 3, 'nationalRank': '669', 'positionRank': '36', 'stateRank': '6', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '36', '247stateRank': '6'}, {'school': 'tennessee', 'year': '2016', 'playerName': 'Baylen Buchanan', 'highSchool': 'Peachtree Ridge', 'city': 'Suwanee', 'state': 'GA', 'position': 'CB', 'height': 71.0, 'weight': '186', 'compRating': '0.8568', 'compStars': 3, 'nationalRank': '686', 'positionRank': '60', 'stateRank': '62', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '72', '247stateRank': '67'}, {'school': 'tennessee', 'year': '2016', 'playerName': 'Latrell Williams', 'highSchool': 'Columbia', 'city': 'Lake City', 'state': 'FL', 'position': 'WR', 'height': 71.0, 'weight': '171', 'compRating': '0.8555', 'compStars': 3, 'nationalRank': '712', 'positionRank': '111', 'stateRank': '100'}, {'school': 'tennessee', 'year': '2016', 'playerName': 'Nathan Niehaus', 'highSchool': 'Colerain', 'city': 'Cincinnati', 'state': 'OH', 'position': 'OT', 'height': 78.0, 'weight': '259', 'compRating': '0.8405', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '90', 'stateRank': '47', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '125', '247stateRank': '67'}, {'school': 'tennessee', 'year': '2016', 'playerName': 'Jeremy Lewis', 'highSchool': 'Lone Grove', 'city': 'Lone Grove', 'state': 'OK', 'position': 'RB', 'height': 73.0, 'weight': '193', 'compRating': '0.8113', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '125', 'stateRank': '22', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '125', '247stateRank': '25'}, {'school': 'tennessee', 'year': '2016', 'playerName': 'Corey Henderson', 'highSchool': 'Evangel Christian Academy', 'city': 'Shreveport', 'state': 'LA', 'position': 'WR', 'height': 73.0, 'weight': '173', 'compRating': '0.8585', 'compStars': 3, 'nationalRank': '650', 'positionRank': '101', 'stateRank': '33'}, {'school': 'georgia', 'year': '2010', 'playerName': 'Alec Ogletree', 'highSchool': 'Newnan', 'city': 'Newnan', 'state': 'GA', 'position': 'ILB', 'height': 75.0, 'weight': '210', 'compRating': '0.9889', 'compStars': 5, 'nationalRank': '19', 'positionRank': '1', 'stateRank': '2', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '28', '247positionRank': '1', '247stateRank': '4'}, {'school': 'georgia', 'year': '2010', 'playerName': 'T.J. Stripling', 'highSchool': 'Southwest DeKalb', 'city': 'Decatur', 'state': 'GA', 'position': 'WDE', 'height': 78.0, 'weight': '215', 'compRating': '0.9644', 'compStars': 4, 'nationalRank': '73', 'positionRank': '4', 'stateRank': '7', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '138', '247positionRank': '7', '247stateRank': '13'}, {'school': 'georgia', 'year': '2010', 'playerName': 'Brent Benedict', 'highSchool': 'The Bolles School', 'city': 'Jacksonville', 'state': 'FL', 'position': 'OT', 'height': 77.0, 'weight': '278', 'compRating': '0.9623', 'compStars': 4, 'nationalRank': '81', 'positionRank': '9', 'stateRank': '15', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '95', '247positionRank': '14', '247stateRank': '14'}, {'school': 'georgia', 'year': '2010', 'playerName': 'Garrison Smith', 'highSchool': 'Douglass', 'city': 'Atlanta', 'state': 'GA', 'position': 'DT', 'height': 75.0, 'weight': '250', 'compRating': '0.9546', 'compStars': 4, 'nationalRank': '94', 'positionRank': '7', 'stateRank': '11', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '157', '247positionRank': '12', '247stateRank': '14'}, {'school': 'georgia', 'year': '2010', 'playerName': 'Ken Malcome', 'highSchool': 'Southwest DeKalb', 'city': 'Decatur', 'state': 'GA', 'position': 'RB', 'height': 72.0, 'weight': '213', 'compRating': '0.9316', 'compStars': 4, 'nationalRank': '150', 'positionRank': '11', 'stateRank': '15', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '88', '247positionRank': '11', '247stateRank': '10'}, {'school': 'georgia', 'year': '2010', 'playerName': 'Jakar Hamilton', 'highSchool': 'Georgia Military College', 'city': 'Milledgeville', 'state': 'GA', 'position': 'S', 'height': 74.0, 'weight': '196', 'compRating': '0.9222', 'compStars': 4, 'nationalRank': '4', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2010', 'playerName': 'Kolton Houston', 'highSchool': 'Buford', 'city': 'Buford', 'state': 'GA', 'position': 'OG', 'height': 77.0, 'weight': '270', 'compRating': '0.9214', 'compStars': 4, 'nationalRank': '190', 'positionRank': '7', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2010', 'playerName': 'Mike Thornton', 'highSchool': 'Stephenson', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'DT', 'height': 74.0, 'weight': '280', 'compRating': '0.9161', 'compStars': 4, 'nationalRank': '208', 'positionRank': '15', 'stateRank': '21', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '223', '247positionRank': '19', '247stateRank': '19'}, {'school': 'georgia', 'year': '2010', 'playerName': 'Jalen Fields', 'highSchool': 'Dalton', 'city': 'Dalton', 'state': 'GA', 'position': 'SDE', 'height': 77.0, 'weight': '250', 'compRating': '0.9017', 'compStars': 4, 'nationalRank': '271', 'positionRank': '20', 'stateRank': '24', '247Rating': ' 80 ', '247Stars': 3, '247nationalRank': '115', '247positionRank': '8', '247stateRank': '4'}, {'school': 'georgia', 'year': '2010', 'playerName': 'Demetre Baker', 'highSchool': 'Orange Park', 'city': 'Orange Park', 'state': 'FL', 'position': 'OLB', 'height': 72.0, 'weight': '200', 'compRating': '0.8884', 'compStars': 3, 'nationalRank': '359', 'positionRank': '22', 'stateRank': '51', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2010', 'playerName': 'Dexter Morant', 'highSchool': 'Manning', 'city': 'Manning', 'state': 'SC', 'position': 'SDE', 'height': 79.0, 'weight': '240', 'compRating': '0.8844', 'compStars': 3, 'nationalRank': '385', 'positionRank': '25', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2010', 'playerName': 'Brandon Burrows', 'highSchool': 'Walton', 'city': 'Marietta', 'state': 'GA', 'position': 'SDE', 'height': 75.0, 'weight': '240', 'compRating': '0.8795', 'compStars': 3, 'nationalRank': '430', 'positionRank': '26', 'stateRank': '38', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2010', 'playerName': 'Derek Owens', 'highSchool': 'Andrew Jackson', 'city': 'Jacksonville', 'state': 'FL', 'position': 'CB', 'height': 71.0, 'weight': '180', 'compRating': '0.8733', 'compStars': 3, 'nationalRank': '507', 'positionRank': '36', 'stateRank': '75', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2010', 'playerName': 'Michael Bennett', 'highSchool': 'Alpharetta', 'city': 'Alpharetta', 'state': 'GA', 'position': 'WR', 'height': 75.0, 'weight': '186', 'compRating': '0.8701', 'compStars': 3, 'nationalRank': '551', 'positionRank': '77', 'stateRank': '49', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2010', 'playerName': 'Marc Deas', 'highSchool': 'Osceola', 'city': 'Kissimmee', 'state': 'FL', 'position': 'S', 'height': 72.0, 'weight': '185', 'compRating': '0.8684', 'compStars': 3, 'nationalRank': '602', 'positionRank': '50', 'stateRank': '89', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2010', 'playerName': 'Hutson Mason', 'highSchool': 'Lassiter', 'city': 'Marietta', 'state': 'GA', 'position': 'PRO', 'height': 75.0, 'weight': '193', 'compRating': '0.8653', 'compStars': 3, 'nationalRank': '664', 'positionRank': '30', 'stateRank': '56', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2010', 'playerName': 'Alexander Ogletree', 'highSchool': 'Newnan', 'city': 'Newnan', 'state': 'GA', 'position': 'FB', 'height': 69.0, 'weight': '205', 'compRating': '0.8528', 'compStars': 3, 'nationalRank': '998', 'positionRank': '7', 'stateRank': '80', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2010', 'playerName': 'Kenarious Gates', 'highSchool': 'Greenville', 'city': 'Greenville', 'state': 'GA', 'position': 'OG', 'height': 77.0, 'weight': '300', 'compRating': '0.8354', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '74', 'stateRank': '102', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2010', 'playerName': 'Lonnie Outlaw', 'highSchool': 'Wilcox County', 'city': 'Rochelle', 'state': 'GA', 'position': 'WR', 'height': 77.0, 'weight': '200', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '271', 'stateRank': '164'}, {'school': 'mississippi-state', 'year': '2020', 'playerName': "Jo'Quavious Marks", 'highSchool': 'Carver', 'city': 'Atlanta', 'state': 'GA', 'position': 'RB', 'height': 70.0, 'weight': '190', 'compRating': '0.9370', 'compStars': 4, 'nationalRank': '138', 'positionRank': '16', 'stateRank': '19', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '133', '247positionRank': '11', '247stateRank': '16'}, {'school': 'mississippi-state', 'year': '2020', 'playerName': 'Emmanuel Forbes', 'highSchool': 'Grenada', 'city': 'Grenada', 'state': 'MS', 'position': 'CB', 'height': 73.0, 'weight': '171', 'compRating': '0.9247', 'compStars': 4, 'nationalRank': '185', 'positionRank': '13', 'stateRank': '2', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '132', '247positionRank': '11', '247stateRank': '2'}, {'school': 'mississippi-state', 'year': '2020', 'playerName': 'Lideatrick Griffin', 'highSchool': 'Philadelphia', 'city': 'Philadelphia', 'state': 'MS', 'position': 'ATH', 'height': 70.0, 'weight': '170', 'compRating': '0.9065', 'compStars': 4, 'nationalRank': '265', 'positionRank': '8', 'stateRank': '5', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '217', '247positionRank': '9', '247stateRank': '5'}, {'school': 'mississippi-state', 'year': '2020', 'playerName': 'Jordan Davis', 'highSchool': 'Copiah-Lincoln C.C.', 'city': 'Wesson', 'state': 'MS', 'position': 'WDE', 'height': 77.0, 'weight': '249', 'compRating': '0.9034', 'compStars': 4, 'nationalRank': '5', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '2', '247positionRank': '1', '247stateRank': '1'}, {'school': 'mississippi-state', 'year': '2020', 'playerName': 'Malik Heath', 'highSchool': 'Copiah-Lincoln C.C.', 'city': 'Wesson', 'state': 'MS', 'position': 'WR', 'height': 75.0, 'weight': '210', 'compRating': '0.8913', 'compStars': 4, 'nationalRank': '9', 'positionRank': '2', 'stateRank': '2', '247Rating': ' 88 ', '247Stars': 3, '247nationalRank': '29', '247positionRank': '3', '247stateRank': '3'}, {'school': 'mississippi-state', 'year': '2020', 'playerName': 'Dillon Johnson', 'highSchool': 'St Joseph', 'city': 'Greenville', 'state': 'MS', 'position': 'ATH', 'height': 72.0, 'weight': '192', 'compRating': '0.8830', 'compStars': 3, 'nationalRank': '440', 'positionRank': '20', 'stateRank': '10', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '23', '247stateRank': '12'}, {'school': 'mississippi-state', 'year': '2020', 'playerName': 'Janari Dean', 'highSchool': 'South Panola', 'city': 'Batesville', 'state': 'MS', 'position': 'S', 'height': 72.0, 'weight': '190', 'compRating': '0.8809', 'compStars': 3, 'nationalRank': '469', 'positionRank': '38', 'stateRank': '11', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '37', '247stateRank': '10'}, {'school': 'mississippi-state', 'year': '2020', 'playerName': 'Jevon Banks', 'highSchool': 'Olive Branch', 'city': 'Olive Branch', 'state': 'MS', 'position': 'SDE', 'height': 74.0, 'weight': '260', 'compRating': '0.8755', 'compStars': 3, 'nationalRank': '538', 'positionRank': '25', 'stateRank': '16', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '26', '247stateRank': '17'}, {'school': 'mississippi-state', 'year': '2020', 'playerName': 'Rodney Groce Jr.', 'highSchool': 'Pleasant Grove', 'city': 'Pleasant Grove', 'state': 'AL', 'position': 'ILB', 'height': 73.0, 'weight': '240', 'compRating': '0.8742', 'compStars': 3, 'nationalRank': '561', 'positionRank': '29', 'stateRank': '24', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '30', '247stateRank': '24'}, {'school': 'mississippi-state', 'year': '2020', 'playerName': 'Jaden Walley', 'highSchool': "D'Iberville", 'city': 'Biloxi', 'state': 'MS', 'position': 'ATH', 'height': 73.0, 'weight': '175', 'compRating': '0.8735', 'compStars': 3, 'nationalRank': '567', 'positionRank': '29', 'stateRank': '17', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '22', '247stateRank': '9'}, {'school': 'mississippi-state', 'year': '2020', 'playerName': 'Tyrus Wheat', 'highSchool': 'Copiah-Lincoln C.C.', 'city': 'Wesson', 'state': 'MS', 'position': 'ILB', 'height': 74.0, 'weight': '245', 'compRating': '0.8722', 'compStars': 3, 'nationalRank': '33', 'positionRank': '1', 'stateRank': '5', '247Rating': ' 87 ', '247Stars': 3, '247nationalRank': '36', '247positionRank': '1', '247stateRank': '4'}, {'school': 'mississippi-state', 'year': '2020', 'playerName': 'Javorrius Selmon', 'highSchool': 'Provine', 'city': 'Jackson', 'state': 'MS', 'position': 'ATH', 'height': 70.0, 'weight': '170', 'compRating': '0.8710', 'compStars': 3, 'nationalRank': '605', 'positionRank': '33', 'stateRank': '18', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '51', '247stateRank': '23'}, {'school': 'mississippi-state', 'year': '2020', 'playerName': 'Will Rogers', 'highSchool': 'Brandon', 'city': 'Brandon', 'state': 'MS', 'position': 'PRO', 'height': 74.0, 'weight': '200', 'compRating': '0.8688', 'compStars': 3, 'nationalRank': '640', 'positionRank': '24', 'stateRank': '19', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '29', '247stateRank': '29'}, {'school': 'mississippi-state', 'year': '2020', 'playerName': 'Decamerion Richardson', 'highSchool': 'Bossier', 'city': 'Bossier City', 'state': 'LA', 'position': 'CB', 'height': 74.0, 'weight': '176', 'compRating': '0.8674', 'compStars': 3, 'nationalRank': '669', 'positionRank': '50', 'stateRank': '28', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '19', '247stateRank': '13'}, {'school': 'mississippi-state', 'year': '2020', 'playerName': 'Armondous Cooley', 'highSchool': 'Wayne County', 'city': 'Waynesboro', 'state': 'MS', 'position': 'DT', 'height': 76.0, 'weight': '300', 'compRating': '0.8660', 'compStars': 3, 'nationalRank': '695', 'positionRank': '59', 'stateRank': '22', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '43', '247stateRank': '13'}, {'school': 'mississippi-state', 'year': '2020', 'playerName': 'Caleb Ducking', 'highSchool': 'Holmes C.C.', 'city': 'Goodman', 'state': 'MS', 'position': 'WR', 'height': 77.0, 'weight': '195', 'compRating': '0.8627', 'compStars': 3, 'nationalRank': '55', 'positionRank': '8', 'stateRank': '8', '247Rating': ' 87 ', '247Stars': 3, '247nationalRank': '37', '247positionRank': '4', '247stateRank': '5'}, {'school': 'mississippi-state', 'year': '2020', 'playerName': 'Cameron Threatt', 'highSchool': 'Lewisburg', 'city': 'Olive Branch', 'state': 'MS', 'position': 'CB', 'height': 71.0, 'weight': '165', 'compRating': '0.8618', 'compStars': 3, 'nationalRank': '801', 'positionRank': '63', 'stateRank': '25', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '45', '247stateRank': '19'}, {'school': 'mississippi-state', 'year': '2020', 'playerName': 'Jamari Stewart', 'highSchool': 'St. Lucie West Centennial', 'city': 'Port Saint Lucie', 'state': 'FL', 'position': 'WDE', 'height': 75.0, 'weight': '205', 'compRating': '0.8615', 'compStars': 3, 'nationalRank': '803', 'positionRank': '39', 'stateRank': '105', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '34', '247stateRank': '80'}, {'school': 'mississippi-state', 'year': '2020', 'playerName': 'Tre Lawson', 'highSchool': 'Mississippi Gulf Coast C.C.', 'city': 'Perkinston', 'state': 'MS', 'position': 'SDE', 'height': 78.0, 'weight': '240', 'compRating': '0.8594', 'compStars': 3, 'nationalRank': '65', 'positionRank': '7', 'stateRank': '11', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '52', '247positionRank': '10', '247stateRank': '8'}, {'school': 'mississippi-state', 'year': '2020', 'playerName': 'Grant Jackson', 'highSchool': 'West Lincoln School', 'city': 'Brookhaven', 'state': 'MS', 'position': 'OT', 'height': 78.0, 'weight': '304', 'compRating': '0.8585', 'compStars': 3, 'nationalRank': '889', 'positionRank': '68', 'stateRank': '26', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '47', '247stateRank': '21'}, {'school': 'mississippi-state', 'year': '2020', 'playerName': 'Calvin McMillian', 'highSchool': 'Houston', 'city': 'Houston', 'state': 'MS', 'position': 'OT', 'height': 77.0, 'weight': '305', 'compRating': '0.8580', 'compStars': 3, 'nationalRank': '899', 'positionRank': '69', 'stateRank': '27', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '101', '247stateRank': '34'}, {'school': 'mississippi-state', 'year': '2020', 'playerName': 'Rufus Harvey', 'highSchool': 'Starkville', 'city': 'Starkville', 'state': 'MS', 'position': 'WR', 'height': 70.0, 'weight': '167', 'compRating': '0.8423', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '197', 'stateRank': '33', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '160', '247stateRank': '32'}, {'school': 'mississippi-state', 'year': '2020', 'playerName': 'Kyle Cass', 'highSchool': 'Mississippi Delta C.C.', 'city': 'Moorhead', 'state': 'MS', 'position': 'CB', 'height': 74.0, 'weight': '194', 'compRating': '0.8283', 'compStars': 3, 'nationalRank': '175', 'positionRank': '27', 'stateRank': '32', '247Rating': ' 83 ', '247Stars': 3, '247nationalRank': '159', '247positionRank': '23', '247stateRank': '29'}, {'school': 'mississippi-state', 'year': '2020', 'playerName': 'Reed Buys', 'highSchool': 'Jones College', 'city': 'Ellisville', 'state': 'MS', 'position': 'OT', 'height': 77.0, 'weight': '290', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2011', 'playerName': 'Christian Westerman', 'highSchool': 'Hamilton', 'city': 'Chandler', 'state': 'AZ', 'position': 'OT', 'height': 77.0, 'weight': '288', 'compRating': '0.9929', 'compStars': 5, 'nationalRank': '10', 'positionRank': '3', 'stateRank': '1', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '26', '247positionRank': '3', '247stateRank': '1'}, {'school': 'auburn', 'year': '2011', 'playerName': 'Kiehl Frazier', 'highSchool': 'Shiloh Christian', 'city': 'Springdale', 'state': 'AR', 'position': 'DUAL', 'height': 74.0, 'weight': '210', 'compRating': '0.9725', 'compStars': 4, 'nationalRank': '53', 'positionRank': '3', 'stateRank': '1', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '101', '247positionRank': '3', '247stateRank': '2'}, {'school': 'auburn', 'year': '2011', 'playerName': 'Quan Bray', 'highSchool': 'Troup County', 'city': 'Lagrange', 'state': 'GA', 'position': 'ATH', 'height': 71.0, 'weight': '178', 'compRating': '0.9629', 'compStars': 4, 'nationalRank': '74', 'positionRank': '6', 'stateRank': '9', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '77', '247positionRank': '7', '247stateRank': '8'}, {'school': 'auburn', 'year': '2011', 'playerName': 'Erique Florence', 'highSchool': 'Valley HS', 'city': 'Valley', 'state': 'AL', 'position': 'S', 'height': 74.0, 'weight': '181', 'compRating': '0.9627', 'compStars': 4, 'nationalRank': '75', 'positionRank': '3', 'stateRank': '3', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '141', '247positionRank': '9', '247stateRank': '5'}, {'school': 'auburn', 'year': '2011', 'playerName': 'Reese Dismukes', 'highSchool': 'Spanish Fort', 'city': 'Spanish Fort', 'state': 'AL', 'position': 'OC', 'height': 75.0, 'weight': '272', 'compRating': '0.9606', 'compStars': 4, 'nationalRank': '81', 'positionRank': '1', 'stateRank': '4', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '53', '247positionRank': '1', '247stateRank': '1'}, {'school': 'auburn', 'year': '2011', 'playerName': 'Gabe Wright', 'highSchool': 'Carver', 'city': 'Columbus', 'state': 'GA', 'position': 'DT', 'height': 74.0, 'weight': '275', 'compRating': '0.9598', 'compStars': 4, 'nationalRank': '83', 'positionRank': '7', 'stateRank': '10', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '132', '247positionRank': '11', '247stateRank': '12'}, {'school': 'auburn', 'year': '2011', 'playerName': 'Kris Frost', 'highSchool': 'Butler', 'city': 'Matthews', 'state': 'NC', 'position': 'OLB', 'height': 74.5, 'weight': '214', 'compRating': '0.9508', 'compStars': 4, 'nationalRank': '100', 'positionRank': '6', 'stateRank': '4', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '85', '247positionRank': '5', '247stateRank': '2'}, {'school': 'auburn', 'year': '2011', 'playerName': 'Greg Robinson', 'highSchool': 'Thibodaux', 'city': 'Thibodaux', 'state': 'LA', 'position': 'OT', 'height': 78.0, 'weight': '296', 'compRating': '0.9389', 'compStars': 4, 'nationalRank': '124', 'positionRank': '12', 'stateRank': '8', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '109', '247positionRank': '9', '247stateRank': '7'}, {'school': 'auburn', 'year': '2011', 'playerName': 'Jonathan Rose', 'highSchool': 'Leeds', 'city': 'Leeds', 'state': 'AL', 'position': 'CB', 'height': 74.0, 'weight': '195', 'compRating': '0.9368', 'compStars': 4, 'nationalRank': '129', 'positionRank': '9', 'stateRank': '5', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '89', '247positionRank': '8', '247stateRank': '3'}, {'school': 'auburn', 'year': '2011', 'playerName': 'Brandon Fulse', 'highSchool': 'Fort Meade', 'city': 'Fort Meade', 'state': 'FL', 'position': 'TE', 'height': 76.0, 'weight': '247', 'compRating': '0.9361', 'compStars': 4, 'nationalRank': '132', 'positionRank': '7', 'stateRank': '28', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '150', '247positionRank': '8', '247stateRank': '28'}, {'school': 'auburn', 'year': '2011', 'playerName': 'Robenson Therezie', 'highSchool': 'Miami Jackson', 'city': 'Miami', 'state': 'FL', 'position': 'S', 'height': 70.0, 'weight': '185', 'compRating': '0.9109', 'compStars': 4, 'nationalRank': '199', 'positionRank': '13', 'stateRank': '36', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '110', '247positionRank': '5', '247stateRank': '22'}, {'school': 'auburn', 'year': '2011', 'playerName': 'Jermaine Whitehead', 'highSchool': 'Amanda Elzy', 'city': 'Greenwood', 'state': 'MS', 'position': 'CB', 'height': 72.0, 'weight': '180', 'compRating': '0.8994', 'compStars': 4, 'nationalRank': '244', 'positionRank': '22', 'stateRank': '7', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '25', '247stateRank': '8'}, {'school': 'auburn', 'year': '2011', 'playerName': 'C.J. Uzomah', 'highSchool': 'North Gwinnett', 'city': 'Suwanee', 'state': 'GA', 'position': 'ATH', 'height': 77.0, 'weight': '229', 'compRating': '0.8990', 'compStars': 4, 'nationalRank': '246', 'positionRank': '19', 'stateRank': '18', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '180', '247positionRank': '12', '247stateRank': '15'}, {'school': 'auburn', 'year': '2011', 'playerName': 'Tre Mason', 'highSchool': 'Park Vista Community', 'city': 'Lake Worth', 'state': 'FL', 'position': 'RB', 'height': 68.0, 'weight': '185', 'compRating': '0.8954', 'compStars': 4, 'nationalRank': '262', 'positionRank': '21', 'stateRank': '46', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '27', '247stateRank': '64'}, {'school': 'auburn', 'year': '2011', 'playerName': "Thomas O'Reilly", 'highSchool': 'Pope', 'city': 'Marietta', 'state': 'GA', 'position': 'OG', 'height': 75.0, 'weight': '313', 'compRating': '0.8933', 'compStars': 4, 'nationalRank': '268', 'positionRank': '13', 'stateRank': '19', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '169', '247positionRank': '8', '247stateRank': '14'}, {'school': 'auburn', 'year': '2011', 'playerName': 'JaBrian Niles', 'highSchool': 'WP Davidson', 'city': 'Mobile', 'state': 'AL', 'position': 'SDE', 'height': 74.0, 'weight': '262', 'compRating': '0.8813', 'compStars': 3, 'nationalRank': '324', 'positionRank': '23', 'stateRank': '9', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '45', '247stateRank': '23'}, {'school': 'auburn', 'year': '2011', 'playerName': 'Sammie Coates', 'highSchool': 'Leroy Sch', 'city': 'Leroy', 'state': 'AL', 'position': 'WR', 'height': 74.0, 'weight': '178', 'compRating': '0.8795', 'compStars': 3, 'nationalRank': '334', 'positionRank': '40', 'stateRank': '10', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '171', '247positionRank': '25', '247stateRank': '6'}, {'school': 'auburn', 'year': '2011', 'playerName': 'Justin Garrett', 'highSchool': 'Tucker', 'city': 'Tucker', 'state': 'GA', 'position': 'OLB', 'height': 74.0, 'weight': '197', 'compRating': '0.8788', 'compStars': 3, 'nationalRank': '338', 'positionRank': '24', 'stateRank': '28', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '32', '247stateRank': '29'}, {'school': 'auburn', 'year': '2011', 'playerName': 'Jaylon Denson', 'highSchool': 'Hoover', 'city': 'Hoover', 'state': 'AL', 'position': 'WR', 'height': 75.0, 'weight': '195', 'compRating': '0.8775', 'compStars': 3, 'nationalRank': '348', 'positionRank': '42', 'stateRank': '12', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '42', '247stateRank': '10'}, {'school': 'auburn', 'year': '2011', 'playerName': 'Angelo Blackson', 'highSchool': 'Red Lion Christian', 'city': 'Bear', 'state': 'DE', 'position': 'DT', 'height': 77.0, 'weight': '295', 'compRating': '0.8759', 'compStars': 3, 'nationalRank': '359', 'positionRank': '28', 'stateRank': '2', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '238', '247positionRank': '24', '247stateRank': '2'}, {'school': 'auburn', 'year': '2011', 'playerName': 'Anthony Swain', 'highSchool': 'Gadsden City', 'city': 'Gadsden', 'state': 'AL', 'position': 'S', 'height': 74.0, 'weight': '225', 'compRating': '0.8665', 'compStars': 3, 'nationalRank': '449', 'positionRank': '32', 'stateRank': '13', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '29', '247stateRank': '11'}, {'school': 'auburn', 'year': '2011', 'playerName': 'Keymiya Harrell', 'highSchool': 'Dallas County', 'city': 'Plantersville', 'state': 'AL', 'position': 'WDE', 'height': 77.0, 'weight': '235', 'compRating': '0.8615', 'compStars': 3, 'nationalRank': '524', 'positionRank': '19', 'stateRank': '17', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '28', '247stateRank': '18'}, {'school': 'auburn', 'year': '2011', 'playerName': 'Devaunte Sigler', 'highSchool': 'Ben C Rain Sch', 'city': 'Mobile', 'state': 'AL', 'position': 'DT', 'height': 76.0, 'weight': '255', 'compRating': '0.8559', 'compStars': 3, 'nationalRank': '626', 'positionRank': '47', 'stateRank': '21', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '52', '247stateRank': '22'}, {'school': 'auburn', 'year': '2011', 'playerName': 'Chris Landrum', 'highSchool': 'Sweet Water Sch', 'city': 'Sweet Water', 'state': 'AL', 'position': 'ILB', 'height': 74.0, 'weight': '228', 'compRating': '0.8528', 'compStars': 3, 'nationalRank': '673', 'positionRank': '29', 'stateRank': '24', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '30', '247stateRank': '24'}, {'school': 'auburn', 'year': '2011', 'playerName': 'Wirth Campbell', 'highSchool': 'Ensworth', 'city': 'Nashville', 'state': 'TN', 'position': 'PRO', 'height': 76.0, 'weight': '195', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2011', 'playerName': 'Garrett Harper', 'highSchool': 'Shiloh Christian', 'city': 'Springdale', 'state': 'AR', 'position': 'ATH', 'height': 70.0, 'weight': '188', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2011', 'playerName': 'Ellis Smith', 'highSchool': 'LaGrange', 'city': 'Lagrange', 'state': 'GA', 'position': 'P', 'height': 71.0, 'weight': '201', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2011', 'playerName': 'Clay Finkelstein', 'highSchool': 'Trinity Presbyterian School', 'city': 'Montgomery', 'state': 'AL', 'position': 'OLB', 'height': 74.0, 'weight': '180', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2011', 'playerName': 'Daniel Pond', 'highSchool': 'Spanish Fort', 'city': 'Spanish Fort', 'state': 'AL', 'position': 'OLB', 'height': 73.0, 'weight': '215', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2011', 'playerName': 'Jon-Morgan Poole', 'highSchool': 'Valley HS', 'city': 'Valley', 'state': 'AL', 'position': 'OG', 'height': 76.0, 'weight': '275', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2011', 'playerName': 'Zach Rawden', 'highSchool': 'Woodward Academy', 'city': 'Atlanta', 'state': 'GA', 'position': 'DT', 'height': 74.0, 'weight': '265', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2011', 'playerName': 'Brian Walsh', 'highSchool': 'Winter Springs', 'city': 'Winter Springs', 'state': 'FL', 'position': 'DT', 'height': 75.0, 'weight': '307', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2011', 'playerName': 'Patrick Young', 'highSchool': 'Hewitt-Trussville', 'city': 'Trussville', 'state': 'AL', 'position': 'WR', 'height': 72.0, 'weight': '185', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2004', 'playerName': 'Claude Wroten', 'highSchool': 'Mississippi Delta C.C.', 'city': 'Moorhead', 'state': 'MS', 'position': 'DT', 'height': 75.0, 'weight': '315', 'compRating': '0.9667', 'compStars': 4, 'nationalRank': '2', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2004', 'playerName': 'Luke Sanders', 'highSchool': 'West Monroe', 'city': 'West Monroe', 'state': 'LA', 'position': 'ILB', 'height': 76.0, 'weight': '228', 'compRating': '0.9222', 'compStars': 4, 'nationalRank': '135', 'positionRank': '10', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2004', 'playerName': 'Mario Stevenson', 'highSchool': 'Northeast Mississippi C.C.', 'city': 'Booneville', 'state': 'MS', 'position': 'CB', 'height': 74.0, 'weight': '195', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '8', 'positionRank': '1', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2004', 'playerName': 'E.J. Kuale', 'highSchool': 'Dodge City C.C.', 'city': 'Dodge City', 'state': 'KS', 'position': 'ILB', 'height': 75.0, 'weight': '235', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '17', 'positionRank': '4', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2004', 'playerName': 'Craig Steltz', 'highSchool': 'Archbishop Rummel', 'city': 'Metairie', 'state': 'LA', 'position': 'S', 'height': 74.0, 'weight': '200', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '159', 'positionRank': '8', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2004', 'playerName': 'Matt Stoltz', 'highSchool': 'Pulaski Academy', 'city': 'Little Rock', 'state': 'AR', 'position': 'ILB', 'height': 75.0, 'weight': '230', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '165', 'positionRank': '14', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2004', 'playerName': 'Charles Alexander', 'highSchool': 'Breaux Bridge', 'city': 'Breaux Bridge', 'state': 'LA', 'position': 'SDE', 'height': 75.0, 'weight': '266', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '190', 'positionRank': '10', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2004', 'playerName': 'Brett Helms', 'highSchool': 'Stuttgart', 'city': 'Stuttgart', 'state': 'AR', 'position': 'OG', 'height': 75.0, 'weight': '300', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '249', 'positionRank': '16', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2004', 'playerName': 'Tyson Jackson', 'highSchool': 'West St. John', 'city': 'Edgard', 'state': 'LA', 'position': 'SDE', 'height': 78.0, 'weight': '265', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '296', 'positionRank': '17', 'stateRank': '13', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2004', 'playerName': 'Tremaine Johnson', 'highSchool': 'Galena Park', 'city': 'Galena Park', 'state': 'TX', 'position': 'SDE', 'height': 74.0, 'weight': '255', 'compRating': '0.8667', 'compStars': 3, 'nationalRank': '313', 'positionRank': '18', 'stateRank': '49', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2004', 'playerName': 'Mit Cole', 'highSchool': 'Picayune Memorial', 'city': 'Picayune', 'state': 'MS', 'position': 'TE', 'height': 76.0, 'weight': '245', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '375', 'positionRank': '16', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2004', 'playerName': 'Max Holmes', 'highSchool': 'Parkview Baptist School', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'OG', 'height': 76.0, 'weight': '286', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '387', 'positionRank': '25', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2004', 'playerName': 'Jeffrey Jack', 'highSchool': 'Madison', 'city': 'Houston', 'state': 'TX', 'position': 'CB', 'height': 71.0, 'weight': '180', 'compRating': '0.8444', 'compStars': 3, 'nationalRank': '442', 'positionRank': '33', 'stateRank': '72', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2004', 'playerName': 'Curtis Taylor', 'highSchool': 'Franklinton', 'city': 'Franklinton', 'state': 'LA', 'position': 'S', 'height': 75.0, 'weight': '180', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '489', 'positionRank': '29', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2004', 'playerName': 'Chevis Jackson', 'highSchool': "St. Paul's Episcopal", 'city': 'Mobile', 'state': 'AL', 'position': 'WR', 'height': 73.0, 'weight': '180', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '493', 'positionRank': '58', 'stateRank': '16', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2004', 'playerName': 'Harry Coleman', 'highSchool': 'West St. Mary', 'city': 'Baldwin', 'state': 'LA', 'position': 'OLB', 'height': 74.0, 'weight': '205', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '581', 'positionRank': '30', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2004', 'playerName': 'Quinn Johnson', 'highSchool': 'West St. John', 'city': 'Edgard', 'state': 'LA', 'position': 'ILB', 'height': 75.0, 'weight': '225', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '631', 'positionRank': '34', 'stateRank': '25', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2004', 'playerName': 'Jacob Hester', 'highSchool': 'Evangel Christian Academy', 'city': 'Shreveport', 'state': 'LA', 'position': 'FB', 'height': 70.0, 'weight': '234', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '795', 'positionRank': '17', 'stateRank': '28', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2004', 'playerName': 'Early Doucet', 'highSchool': 'St. Martinville Senior', 'city': 'Saint Martinville', 'state': 'LA', 'position': 'WR', 'height': 73.0, 'weight': '207', 'compRating': '0.9980', 'compStars': 5, 'nationalRank': '5', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2004', 'playerName': 'Xavier Carter', 'highSchool': 'Palm Bay Senior', 'city': 'Melbourne', 'state': 'FL', 'position': 'WR', 'height': 75.0, 'weight': '190', 'compRating': '0.9930', 'compStars': 5, 'nationalRank': '17', 'positionRank': '4', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2004', 'playerName': 'Glenn Dorsey', 'highSchool': 'East Ascension', 'city': 'Gonzales', 'state': 'LA', 'position': 'DT', 'height': 74.0, 'weight': '293', 'compRating': '0.9867', 'compStars': 5, 'nationalRank': '30', 'positionRank': '3', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2004', 'playerName': 'Herman Johnson', 'highSchool': 'Denton', 'city': 'Denton', 'state': 'TX', 'position': 'OT', 'height': 79.0, 'weight': '350', 'compRating': '0.9751', 'compStars': 4, 'nationalRank': '59', 'positionRank': '5', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2004', 'playerName': 'Marlon Favorite', 'highSchool': 'West Jefferson', 'city': 'Harvey', 'state': 'LA', 'position': 'DT', 'height': 74.0, 'weight': '310', 'compRating': '0.9745', 'compStars': 4, 'nationalRank': '62', 'positionRank': '8', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2004', 'playerName': 'Ryan Miller', 'highSchool': 'Barbe', 'city': 'Lake Charles', 'state': 'LA', 'position': 'OC', 'height': 78.0, 'weight': '310', 'compRating': '0.9709', 'compStars': 4, 'nationalRank': '77', 'positionRank': '2', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'lsu', 'year': '2004', 'playerName': 'Lavelle Hawkins', 'highSchool': 'Edison', 'city': 'Stockton', 'state': 'CA', 'position': 'WR', 'height': 71.0, 'weight': '194', 'compRating': '0.9667', 'compStars': 4, 'nationalRank': '88', 'positionRank': '12', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2014', 'playerName': 'Bryson Allen-Williams', 'highSchool': 'Cedar Grove', 'city': 'Ellenwood', 'state': 'GA', 'position': 'OLB', 'height': 73.0, 'weight': '222', 'compRating': '0.9530', 'compStars': 4, 'nationalRank': '102', 'positionRank': '8', 'stateRank': '6', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '96', '247positionRank': '6', '247stateRank': '7'}, {'school': 'south-carolina', 'year': '2014', 'playerName': 'Donell Stanley', 'highSchool': 'Latta', 'city': 'Latta', 'state': 'SC', 'position': 'OG', 'height': 76.0, 'weight': '330', 'compRating': '0.9353', 'compStars': 4, 'nationalRank': '149', 'positionRank': '10', 'stateRank': '3', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '115', '247positionRank': '5', '247stateRank': '4'}, {'school': 'south-carolina', 'year': '2014', 'playerName': 'Wesley Green', 'highSchool': 'Martin Luther King Jr.', 'city': 'Lithonia', 'state': 'GA', 'position': 'CB', 'height': 71.0, 'weight': '170', 'compRating': '0.9299', 'compStars': 4, 'nationalRank': '165', 'positionRank': '16', 'stateRank': '13', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '185', '247positionRank': '15', '247stateRank': '13'}, {'school': 'south-carolina', 'year': '2014', 'playerName': 'Shaq Davidson', 'highSchool': 'Gaffney', 'city': 'Gaffney', 'state': 'SC', 'position': 'WR', 'height': 72.0, 'weight': '170', 'compRating': '0.9213', 'compStars': 4, 'nationalRank': '197', 'positionRank': '31', 'stateRank': '5', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '241', '247positionRank': '36', '247stateRank': '6'}, {'school': 'south-carolina', 'year': '2014', 'playerName': 'D.J. Smith', 'highSchool': 'Walton', 'city': 'Marietta', 'state': 'GA', 'position': 'CB', 'height': 72.0, 'weight': '191', 'compRating': '0.9193', 'compStars': 4, 'nationalRank': '205', 'positionRank': '20', 'stateRank': '15', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '36', '247stateRank': '45'}, {'school': 'south-carolina', 'year': '2014', 'playerName': 'Chris Lammons', 'highSchool': 'Plantation', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'CB', 'height': 69.5, 'weight': '170', 'compRating': '0.9179', 'compStars': 4, 'nationalRank': '210', 'positionRank': '21', 'stateRank': '32', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '22', '247stateRank': '40'}, {'school': 'south-carolina', 'year': '2014', 'playerName': 'Abu Lamin', 'highSchool': 'Fort Scott C.C.', 'city': 'Fort Scott', 'state': 'KS', 'position': 'DT', 'height': 75.0, 'weight': '300', 'compRating': '0.8988', 'compStars': 4, 'nationalRank': '16', 'positionRank': '3', 'stateRank': '4', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '18', '247positionRank': '5', '247stateRank': '5'}, {'school': 'south-carolina', 'year': '2014', 'playerName': 'K.C. Crosby', 'highSchool': 'Bamberg-Ehrhardt', 'city': 'Bamberg', 'state': 'SC', 'position': 'TE', 'height': 72.0, 'weight': '236', 'compRating': '0.8965', 'compStars': 4, 'nationalRank': '287', 'positionRank': '9', 'stateRank': '9', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '8', '247stateRank': '9'}, {'school': 'south-carolina', 'year': '2014', 'playerName': 'Terry Googer', 'highSchool': 'Woodward Academy', 'city': 'Atlanta', 'state': 'GA', 'position': 'WR', 'height': 76.0, 'weight': '209', 'compRating': '0.8817', 'compStars': 3, 'nationalRank': '387', 'positionRank': '53', 'stateRank': '29', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '62', '247stateRank': '42'}, {'school': 'south-carolina', 'year': '2014', 'playerName': 'Darin Smalls', 'highSchool': 'Summerville', 'city': 'Summerville', 'state': 'SC', 'position': 'S', 'height': 71.0, 'weight': '200', 'compRating': '0.8706', 'compStars': 3, 'nationalRank': '482', 'positionRank': '37', 'stateRank': '12', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '37', '247stateRank': '15'}, {'school': 'south-carolina', 'year': '2014', 'playerName': 'Blake McClain', 'highSchool': 'Sandalwood', 'city': 'Jacksonville', 'state': 'FL', 'position': 'SDE', 'height': 76.0, 'weight': '280', 'compRating': '0.8656', 'compStars': 3, 'nationalRank': '534', 'positionRank': '23', 'stateRank': '77', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2014', 'playerName': 'Malik Young', 'highSchool': 'Woodmont', 'city': 'Piedmont', 'state': 'SC', 'position': 'OG', 'height': 75.0, 'weight': '277', 'compRating': '0.8615', 'compStars': 3, 'nationalRank': '587', 'positionRank': '31', 'stateRank': '15', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '47', '247stateRank': '23'}, {'school': 'south-carolina', 'year': '2014', 'playerName': 'Al Harris', 'highSchool': 'St. Thomas Aquinas', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'CB', 'height': 71.0, 'weight': '160', 'compRating': '0.8587', 'compStars': 3, 'nationalRank': '636', 'positionRank': '44', 'stateRank': '87', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '49', '247stateRank': '78'}, {'school': 'south-carolina', 'year': '2014', 'playerName': 'Taylor Stallworth', 'highSchool': 'Murphy', 'city': 'Mobile', 'state': 'AL', 'position': 'DT', 'height': 74.0, 'weight': '285', 'compRating': '0.8546', 'compStars': 3, 'nationalRank': '721', 'positionRank': '49', 'stateRank': '19', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '49', '247stateRank': '20'}, {'school': 'south-carolina', 'year': '2014', 'playerName': 'Deebo Samuel', 'highSchool': 'Chapman Hi', 'city': 'Inman', 'state': 'SC', 'position': 'WR', 'height': 71.0, 'weight': '180', 'compRating': '0.8483', 'compStars': 3, 'nationalRank': '838', 'positionRank': '112', 'stateRank': '23', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '238', '247positionRank': '35', '247stateRank': '5'}, {'school': 'south-carolina', 'year': '2014', 'playerName': 'Michael Scarnecchia', 'highSchool': 'Fleming Island', 'city': 'Orange Park', 'state': 'FL', 'position': 'PRO', 'height': 75.0, 'weight': '185', 'compRating': '0.7987', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '82', 'stateRank': '258', '247Rating': ' 78 ', '247Stars': 2, '247positionRank': '84', '247stateRank': '275'}, {'school': 'south-carolina', 'year': '2014', 'playerName': 'Nick McGriff', 'highSchool': 'Gainesville', 'city': 'Gainesville', 'state': 'FL', 'position': 'TE', 'height': 72.0, 'weight': '220', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2014', 'playerName': 'Scott Grant', 'highSchool': 'Laurens Dist 55', 'city': 'Laurens', 'state': 'SC', 'position': 'CB', 'height': 70.0, 'weight': '175', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'south-carolina', 'year': '2014', 'playerName': 'Dante Sawyer', 'highSchool': 'North Gwinnett', 'city': 'Suwanee', 'state': 'GA', 'position': 'WDE', 'height': 74.5, 'weight': '262', 'compRating': '0.9490', 'compStars': 4, 'nationalRank': '106', 'positionRank': '5', 'stateRank': '7', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '6', '247positionRank': '1', '247stateRank': '3'}, {'school': 'south-carolina', 'year': '2014', 'playerName': 'Dexter Wideman', 'highSchool': 'Saluda', 'city': 'Saluda', 'state': 'SC', 'position': 'DT', 'height': 76.0, 'weight': '255', 'compRating': '0.9301', 'compStars': 4, 'nationalRank': '164', 'positionRank': '13', 'stateRank': '4', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '1', '247positionRank': '1', '247stateRank': '1'}, {'school': 'south-carolina', 'year': '2014', 'playerName': 'Kalan Ritchie', 'highSchool': 'Goose Creek', 'city': 'Goose Creek', 'state': 'SC', 'position': 'TE', 'height': 77.0, 'weight': '210', 'compRating': '0.8564', 'compStars': 3, 'nationalRank': '687', 'positionRank': '29', 'stateRank': '19', '247Rating': ' 77 ', '247Stars': 2, '247positionRank': '13', '247stateRank': '2'}, {'school': 'south-carolina', 'year': '2014', 'playerName': 'Joe Blue', 'highSchool': 'Dillon', 'city': 'Dillon', 'state': 'SC', 'position': 'ILB', 'height': 71.0, 'weight': '235', 'compRating': '0.8518', 'compStars': 3, 'nationalRank': '772', 'positionRank': '31', 'stateRank': '21'}, {'school': 'ole-miss', 'year': '2008', 'playerName': 'Darius Barksdale', 'highSchool': 'South Panola', 'city': 'Batesville', 'state': 'MS', 'position': 'RB', 'height': 72.0, 'weight': '195', 'compRating': '0.9358', 'compStars': 4, 'nationalRank': '132', 'positionRank': '13', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2008', 'playerName': 'Patrick Trahan', 'highSchool': 'Northwest Mississippi C.C.', 'city': 'Senatobia', 'state': 'MS', 'position': 'OLB', 'height': 74.0, 'weight': '230', 'compRating': '0.9222', 'compStars': 4, 'nationalRank': '9', 'positionRank': '1', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2008', 'playerName': 'Enrique Davis', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'RB', 'height': 71.0, 'weight': '220', 'compRating': '0.9097', 'compStars': 4, 'nationalRank': '2', 'positionRank': '1', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2008', 'playerName': 'Emmanuel Stephens', 'highSchool': 'Blinn College', 'city': 'Brenham', 'state': 'TX', 'position': 'WDE', 'height': 75.0, 'weight': '225', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '20', 'positionRank': '1', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2008', 'playerName': 'Andrew Harris', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'WR', 'height': 76.0, 'weight': '195', 'compRating': '0.8778', 'compStars': 3, 'nationalRank': '11', 'positionRank': '3', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2008', 'playerName': 'Devin Thomas', 'highSchool': 'Madison', 'city': 'San Antonio', 'state': 'TX', 'position': 'RB', 'height': 70.0, 'weight': '185', 'compRating': '0.8701', 'compStars': 3, 'nationalRank': '498', 'positionRank': '45', 'stateRank': '75', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2008', 'playerName': 'Horatio Williams', 'highSchool': 'Oxford', 'city': 'Oxford', 'state': 'MS', 'position': 'ATH', 'height': 74.0, 'weight': '175', 'compRating': '0.8639', 'compStars': 3, 'nationalRank': '575', 'positionRank': '32', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2008', 'playerName': 'Derrick Herman', 'highSchool': 'Cleveland', 'city': 'Cleveland', 'state': 'MS', 'position': 'CB', 'height': 71.0, 'weight': '185', 'compRating': '0.8559', 'compStars': 3, 'nationalRank': '649', 'positionRank': '47', 'stateRank': '14', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2008', 'playerName': 'Justin Smith', 'highSchool': 'Chattahoochee', 'city': 'Alpharetta', 'state': 'GA', 'position': 'SDE', 'height': 75.0, 'weight': '256', 'compRating': '0.8559', 'compStars': 3, 'nationalRank': '657', 'positionRank': '31', 'stateRank': '48', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2008', 'playerName': 'Nathan Stanley', 'highSchool': 'Sequoyah', 'city': 'Claremore', 'state': 'OK', 'position': 'PRO', 'height': 77.0, 'weight': '185', 'compRating': '0.8559', 'compStars': 3, 'nationalRank': '661', 'positionRank': '25', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2008', 'playerName': 'Brandon Bolden', 'highSchool': 'Scotlandville Magnet', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'RB', 'height': 71.0, 'weight': '208', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '689', 'positionRank': '61', 'stateRank': '25', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2008', 'playerName': 'Kermit Tyler', 'highSchool': 'L.W. Higgins', 'city': 'Marrero', 'state': 'LA', 'position': 'OG', 'height': 77.0, 'weight': '290', 'compRating': '0.8497', 'compStars': 3, 'nationalRank': '768', 'positionRank': '56', 'stateRank': '30', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2008', 'playerName': 'Lekenwic Haynes', 'highSchool': 'Terry', 'city': 'Rosenberg', 'state': 'TX', 'position': 'OLB', 'height': 76.0, 'weight': '215', 'compRating': '0.8399', 'compStars': 3, 'nationalRank': '876', 'positionRank': '62', 'stateRank': '136', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2008', 'playerName': 'Gerald Rivers', 'highSchool': 'Cedar Grove', 'city': 'Ellenwood', 'state': 'GA', 'position': 'WDE', 'height': 77.0, 'weight': '240', 'compRating': '0.8337', 'compStars': 3, 'nationalRank': '946', 'positionRank': '26', 'stateRank': '66', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2008', 'playerName': 'Gerald Harris', 'highSchool': 'Navarro College', 'city': 'Corsicana', 'state': 'TX', 'position': 'TE', 'height': 77.0, 'weight': '245', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '115', 'positionRank': '3', 'stateRank': '8', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2008', 'playerName': 'Brandon Green', 'highSchool': 'Northwest Mississippi C.C.', 'city': 'Senatobia', 'state': 'MS', 'position': 'OG', 'height': 73.0, 'weight': '300', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '128', 'positionRank': '9', 'stateRank': '28', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2008', 'playerName': 'Demareo Marr', 'highSchool': 'Northwest Mississippi C.C.', 'city': 'Senatobia', 'state': 'MS', 'position': 'CB', 'height': 74.0, 'weight': '190', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '129', 'positionRank': '13', 'stateRank': '29', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2008', 'playerName': 'Julian Whitehead', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'CB', 'height': 70.0, 'weight': '180', 'compRating': '0.8222', 'compStars': 3, 'nationalRank': '26', 'positionRank': '4', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2008', 'playerName': 'Chris Wilkes', 'highSchool': 'Dr. Phillips', 'city': 'Orlando', 'state': 'FL', 'position': 'PRO', 'height': 76.0, 'weight': '220', 'compRating': '0.8163', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '45', 'stateRank': '141', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2008', 'playerName': 'Jared Mitchell', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'S', 'height': 75.0, 'weight': '175', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': '28', 'positionRank': '2', 'stateRank': '25', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2008', 'playerName': 'E.J. Epperson', 'highSchool': 'Humboldt', 'city': 'Humboldt', 'state': 'TN', 'position': 'TE', 'height': 76.0, 'weight': '225', 'compRating': '0.8111', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '67', 'stateRank': '33', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2008', 'playerName': 'Ferbia Allen', 'highSchool': 'Dollarway', 'city': 'White Hall', 'state': 'AR', 'position': 'TE', 'height': 77.0, 'weight': '235', 'compRating': '0.8101', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '68', 'stateRank': '17', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2008', 'playerName': 'H.R. Greer', 'highSchool': 'Southern Baptist Educ Center', 'city': 'Southaven', 'state': 'MS', 'position': 'FB', 'height': 72.0, 'weight': '225', 'compRating': '0.8083', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '7', 'stateRank': '24', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2008', 'playerName': 'Brandon Sanders', 'highSchool': 'Peachtree Ridge', 'city': 'Suwanee', 'state': 'GA', 'position': 'CB', 'height': 74.0, 'weight': '190', 'compRating': '0.8052', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '101', 'stateRank': '92', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2008', 'playerName': 'Rudy Wilson', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'S', 'height': 72.0, 'weight': '200', 'compRating': '0.8000', 'compStars': 3, 'nationalRank': '30', 'positionRank': '3', 'stateRank': '26', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2008', 'playerName': 'Aaron Hawkins', 'highSchool': 'Martin Luther King Jr.', 'city': 'Lithonia', 'state': 'GA', 'position': 'OG', 'height': 75.0, 'weight': '295', 'compRating': '0.7889', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '109', 'stateRank': '99', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2008', 'playerName': 'Hunter Miller', 'highSchool': 'Sylvan Hills', 'city': 'Sherwood', 'state': 'AR', 'position': 'S', 'height': 74.0, 'weight': '185', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '124', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2008', 'playerName': 'Melvin Harris', 'highSchool': 'Buford', 'city': 'Buford', 'state': 'GA', 'position': 'WR', 'height': 79.0, 'weight': '195', 'compRating': '0.7667', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '195', 'stateRank': '112', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'ole-miss', 'year': '2008', 'playerName': 'Andre Sterling', 'highSchool': 'Farragut', 'city': 'Knoxville', 'state': 'TN', 'position': 'RB', 'height': 70.0, 'weight': '190', 'compRating': '0.7531', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '128', 'stateRank': '44'}, {'school': 'ole-miss', 'year': '2008', 'playerName': 'Josh Tatum', 'highSchool': 'Marbury Sch', 'city': 'Marbury', 'state': 'AL', 'position': 'OT', 'height': 78.0, 'weight': '315', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'alabama', 'year': '2020', 'playerName': 'Bryce Young', 'highSchool': 'Mater Dei', 'city': 'Santa Ana', 'state': 'CA', 'position': 'DUAL', 'height': 71.0, 'weight': '183', 'compRating': '0.9994', 'compStars': 5, 'nationalRank': '2', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 101 ', '247Stars': 5, '247nationalRank': '1', '247positionRank': '1', '247stateRank': '1'}, {'school': 'alabama', 'year': '2020', 'playerName': 'Will Anderson', 'highSchool': 'Dutchtown', 'city': 'Hampton', 'state': 'GA', 'position': 'WDE', 'height': 75.0, 'weight': '230', 'compRating': '0.9913', 'compStars': 5, 'nationalRank': '17', 'positionRank': '1', 'stateRank': '4', '247Rating': ' 100 ', '247Stars': 5, '247nationalRank': '5', '247positionRank': '1', '247stateRank': '1'}, {'school': 'alabama', 'year': '2020', 'playerName': 'Chris Braswell', 'highSchool': 'St. Frances Academy', 'city': 'Baltimore', 'state': 'MD', 'position': 'WDE', 'height': 75.0, 'weight': '220', 'compRating': '0.9911', 'compStars': 5, 'nationalRank': '19', 'positionRank': '2', 'stateRank': '2', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '39', '247positionRank': '2', '247stateRank': '3'}, {'school': 'alabama', 'year': '2020', 'playerName': 'Drew Sanders', 'highSchool': 'Ryan', 'city': 'Denton', 'state': 'TX', 'position': 'ATH', 'height': 77.0, 'weight': '232', 'compRating': '0.9897', 'compStars': 5, 'nationalRank': '22', 'positionRank': '1', 'stateRank': '3', '247Rating': ' 99 ', '247Stars': 5, '247nationalRank': '13', '247positionRank': '1', '247stateRank': '1'}, {'school': 'alabama', 'year': '2020', 'playerName': 'Demouy Kennedy', 'highSchool': 'Theodore', 'city': 'Theodore', 'state': 'AL', 'position': 'ILB', 'height': 75.0, 'weight': '215', 'compRating': '0.9820', 'compStars': 4, 'nationalRank': '38', 'positionRank': '3', 'stateRank': '1', '247Rating': ' 97 ', '247Stars': 4, '247nationalRank': '35', '247positionRank': '3', '247stateRank': '1'}, {'school': 'alabama', 'year': '2020', 'playerName': 'Jase McClellan', 'highSchool': 'Aledo', 'city': 'Aledo', 'state': 'TX', 'position': 'RB', 'height': 70.5, 'weight': '202', 'compRating': '0.9756', 'compStars': 4, 'nationalRank': '47', 'positionRank': '6', 'stateRank': '6', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '86', '247positionRank': '7', '247stateRank': '13'}, {'school': 'alabama', 'year': '2020', 'playerName': 'Timothy Smith', 'highSchool': 'Sebastian River', 'city': 'Sebastian', 'state': 'FL', 'position': 'DT', 'height': 76.0, 'weight': '320', 'compRating': '0.9732', 'compStars': 4, 'nationalRank': '56', 'positionRank': '8', 'stateRank': '11', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '28', '247positionRank': '5', '247stateRank': '6'}, {'school': 'alabama', 'year': '2020', 'playerName': 'Brian Branch', 'highSchool': 'Sandy Creek', 'city': 'Tyrone', 'state': 'GA', 'position': 'S', 'height': 71.0, 'weight': '185', 'compRating': '0.9710', 'compStars': 4, 'nationalRank': '61', 'positionRank': '3', 'stateRank': '8', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '49', '247positionRank': '3', '247stateRank': '6'}, {'school': 'alabama', 'year': '2020', 'playerName': 'Quandarrius Robinson', 'highSchool': 'Jackson-Olin', 'city': 'Birmingham', 'state': 'AL', 'position': 'OLB', 'height': 77.0, 'weight': '217', 'compRating': '0.9704', 'compStars': 4, 'nationalRank': '65', 'positionRank': '6', 'stateRank': '2', '247Rating': ' 96 ', '247Stars': 4, '247nationalRank': '56', '247positionRank': '4', '247stateRank': '2'}, {'school': 'alabama', 'year': '2020', 'playerName': 'Roydell Williams', 'highSchool': 'Hueytown', 'city': 'Hueytown', 'state': 'AL', 'position': 'RB', 'height': 70.0, 'weight': '202', 'compRating': '0.9651', 'compStars': 4, 'nationalRank': '77', 'positionRank': '9', 'stateRank': '4', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '116', '247positionRank': '10', '247stateRank': '5'}, {'school': 'alabama', 'year': '2020', 'playerName': 'Thaiu Jones-Bell', 'highSchool': 'Miami Carol City', 'city': 'Opa Locka', 'state': 'FL', 'position': 'WR', 'height': 71.0, 'weight': '187', 'compRating': '0.9358', 'compStars': 4, 'nationalRank': '144', 'positionRank': '25', 'stateRank': '22', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '105', '247positionRank': '17', '247stateRank': '18'}, {'school': 'alabama', 'year': '2020', 'playerName': 'Jackson Bratton', 'highSchool': 'Muscle Shoals', 'city': 'Muscle Shoals', 'state': 'AL', 'position': 'ILB', 'height': 75.0, 'weight': '233', 'compRating': '0.9319', 'compStars': 4, 'nationalRank': '156', 'positionRank': '10', 'stateRank': '5', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '142', '247positionRank': '9', '247stateRank': '6'}, {'school': 'alabama', 'year': '2020', 'playerName': 'Kristian Story', 'highSchool': 'Lanett', 'city': 'Lanett', 'state': 'AL', 'position': 'ATH', 'height': 73.0, 'weight': '210', 'compRating': '0.9249', 'compStars': 4, 'nationalRank': '184', 'positionRank': '5', 'stateRank': '7', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '208', '247positionRank': '8', '247stateRank': '9'}, {'school': 'alabama', 'year': '2020', 'playerName': 'Jah-Marien Latham', 'highSchool': 'Pickens County', 'city': 'Reform', 'state': 'AL', 'position': 'DT', 'height': 75.0, 'weight': '280', 'compRating': '0.9216', 'compStars': 4, 'nationalRank': '198', 'positionRank': '18', 'stateRank': '8', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '22', '247stateRank': '12'}, {'school': 'alabama', 'year': '2020', 'playerName': 'Javon Baker', 'highSchool': 'McEachern', 'city': 'Powder Springs', 'state': 'GA', 'position': 'WR', 'height': 73.0, 'weight': '196', 'compRating': '0.9215', 'compStars': 4, 'nationalRank': '200', 'positionRank': '34', 'stateRank': '20', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '57', '247stateRank': '31'}, {'school': 'alabama', 'year': '2020', 'playerName': 'Malachi Moore', 'highSchool': 'Hewitt-Trussville', 'city': 'Trussville', 'state': 'AL', 'position': 'S', 'height': 72.0, 'weight': '180', 'compRating': '0.9193', 'compStars': 4, 'nationalRank': '210', 'positionRank': '19', 'stateRank': '9', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '159', '247positionRank': '13', '247stateRank': '7'}, {'school': 'alabama', 'year': '2020', 'playerName': 'Traeshon Holden', 'highSchool': 'Narbonne', 'city': 'Harbor City', 'state': 'CA', 'position': 'WR', 'height': 75.0, 'weight': '195', 'compRating': '0.9135', 'compStars': 4, 'nationalRank': '234', 'positionRank': '41', 'stateRank': '22', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '187', '247positionRank': '33', '247stateRank': '15'}, {'school': 'alabama', 'year': '2020', 'playerName': 'Jahquez Robinson', 'highSchool': 'Sandalwood', 'city': 'Jacksonville', 'state': 'FL', 'position': 'CB', 'height': 73.5, 'weight': '190', 'compRating': '0.9002', 'compStars': 4, 'nationalRank': '295', 'positionRank': '21', 'stateRank': '50', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '33', '247stateRank': '56'}, {'school': 'alabama', 'year': '2020', 'playerName': 'Javion Cohen', 'highSchool': 'Central', 'city': 'Phenix City', 'state': 'AL', 'position': 'OT', 'height': 77.0, 'weight': '295', 'compRating': '0.8952', 'compStars': 4, 'nationalRank': '333', 'positionRank': '25', 'stateRank': '16', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '240', '247positionRank': '18', '247stateRank': '11'}, {'school': 'alabama', 'year': '2020', 'playerName': 'Jamil Burroughs', 'highSchool': 'McEachern', 'city': 'Powder Springs', 'state': 'GA', 'position': 'DT', 'height': 74.0, 'weight': '323', 'compRating': '0.8936', 'compStars': 4, 'nationalRank': '346', 'positionRank': '34', 'stateRank': '34', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '30', '247stateRank': '38'}, {'school': 'alabama', 'year': '2020', 'playerName': 'Ronald Williams', 'highSchool': 'Hutchinson C.C.', 'city': 'Hutchinson', 'state': 'KS', 'position': 'CB', 'height': 74.0, 'weight': '188', 'compRating': '0.8904', 'compStars': 4, 'nationalRank': '12', 'positionRank': '4', 'stateRank': '5', '247Rating': ' 89 ', '247Stars': 3, '247nationalRank': '12', '247positionRank': '3', '247stateRank': '5'}, {'school': 'alabama', 'year': '2020', 'playerName': 'Damieon George', 'highSchool': 'North Shore', 'city': 'Houston', 'state': 'TX', 'position': 'OT', 'height': 78.5, 'weight': '348', 'compRating': '0.8884', 'compStars': 3, 'nationalRank': '388', 'positionRank': '31', 'stateRank': '56', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '29', '247stateRank': '41'}, {'school': 'alabama', 'year': '2020', 'playerName': 'Kyle Edwards', 'highSchool': 'Destrehan', 'city': 'Destrehan', 'state': 'LA', 'position': 'RB', 'height': 72.0, 'weight': '210', 'compRating': '0.8850', 'compStars': 3, 'nationalRank': '424', 'positionRank': '29', 'stateRank': '20', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '34', '247stateRank': '23'}, {'school': 'alabama', 'year': '2020', 'playerName': 'Seth McLaughlin', 'highSchool': 'Buford', 'city': 'Buford', 'state': 'GA', 'position': 'OC', 'height': 76.0, 'weight': '270', 'compRating': '0.8802', 'compStars': 3, 'nationalRank': '475', 'positionRank': '10', 'stateRank': '49', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '17', '247stateRank': '76'}, {'school': 'alabama', 'year': '2020', 'playerName': 'Caden Clark', 'highSchool': 'Archbishop Hoban', 'city': 'Akron', 'state': 'OH', 'position': 'TE', 'height': 75.5, 'weight': '245', 'compRating': '0.8784', 'compStars': 3, 'nationalRank': '493', 'positionRank': '20', 'stateRank': '11', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '29', '247stateRank': '23'}, {'school': 'georgia', 'year': '2006', 'playerName': 'Matthew Stafford', 'highSchool': 'Highland Park', 'city': 'Dallas', 'state': 'TX', 'position': 'PRO', 'height': 75.0, 'weight': '210', 'compRating': '0.9975', 'compStars': 5, 'nationalRank': '6', 'positionRank': '1', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2006', 'playerName': 'Reshad Jones', 'highSchool': 'Washington', 'city': 'Atlanta', 'state': 'GA', 'position': 'S', 'height': 73.0, 'weight': '175', 'compRating': '0.9934', 'compStars': 5, 'nationalRank': '14', 'positionRank': '2', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2006', 'playerName': 'Knowshon Moreno', 'highSchool': 'Middletown South', 'city': 'Middletown', 'state': 'NJ', 'position': 'RB', 'height': 71.0, 'weight': '205', 'compRating': '0.9717', 'compStars': 4, 'nationalRank': '68', 'positionRank': '15', 'stateRank': '3', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2006', 'playerName': 'NaDerris Ward', 'highSchool': 'McClymonds', 'city': 'Oakland', 'state': 'CA', 'position': 'TE', 'height': 77.0, 'weight': '250', 'compRating': '0.9683', 'compStars': 4, 'nationalRank': '74', 'positionRank': '4', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2006', 'playerName': 'Asher Allen', 'highSchool': 'Tucker', 'city': 'Tucker', 'state': 'GA', 'position': 'CB', 'height': 70.0, 'weight': '185', 'compRating': '0.9497', 'compStars': 4, 'nationalRank': '92', 'positionRank': '7', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2006', 'playerName': 'Tony Wilson', 'highSchool': 'Mainland', 'city': 'Daytona Beach', 'state': 'FL', 'position': 'WR', 'height': 71.0, 'weight': '170', 'compRating': '0.9321', 'compStars': 4, 'nationalRank': '134', 'positionRank': '20', 'stateRank': '21', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2006', 'playerName': 'Prince Miller', 'highSchool': 'Byrnes', 'city': 'Duncan', 'state': 'SC', 'position': 'CB', 'height': 69.0, 'weight': '185', 'compRating': '0.9298', 'compStars': 4, 'nationalRank': '140', 'positionRank': '15', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2006', 'playerName': 'Kiante Tripp', 'highSchool': 'Westlake', 'city': 'Atlanta', 'state': 'GA', 'position': 'OT', 'height': 78.0, 'weight': '293', 'compRating': '0.9269', 'compStars': 4, 'nationalRank': '153', 'positionRank': '10', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2006', 'playerName': 'Darius Dewberry', 'highSchool': 'Hargrave Military Academy', 'city': 'Chatham', 'state': 'VA', 'position': 'ILB', 'height': 75.0, 'weight': '215', 'compRating': '0.9000', 'compStars': 4, 'nationalRank': '7', 'positionRank': '1', 'stateRank': '7', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2006', 'playerName': 'Akeem Dent', 'highSchool': 'Douglass', 'city': 'Atlanta', 'state': 'GA', 'position': 'ILB', 'height': 74.0, 'weight': '233', 'compRating': '0.8938', 'compStars': 4, 'nationalRank': '225', 'positionRank': '14', 'stateRank': '15', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2006', 'playerName': 'Ben Harden', 'highSchool': 'Perry', 'city': 'Perry', 'state': 'GA', 'position': 'OG', 'height': 76.0, 'weight': '290', 'compRating': '0.8733', 'compStars': 3, 'nationalRank': '350', 'positionRank': '19', 'stateRank': '22', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2006', 'playerName': 'Ricardo Crawford', 'highSchool': 'West Columbus', 'city': 'Cerro Gordo', 'state': 'NC', 'position': 'DT', 'height': 73.0, 'weight': '303', 'compRating': '0.8733', 'compStars': 3, 'nationalRank': '357', 'positionRank': '33', 'stateRank': '10', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2006', 'playerName': 'Geno Atkins', 'highSchool': 'St. Thomas Aquinas', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'SDE', 'height': 73.0, 'weight': '270', 'compRating': '0.8719', 'compStars': 3, 'nationalRank': '360', 'positionRank': '25', 'stateRank': '48', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2006', 'playerName': 'Michael Lemon', 'highSchool': 'Stratford Academy', 'city': 'Macon', 'state': 'GA', 'position': 'SDE', 'height': 76.0, 'weight': '255', 'compRating': '0.8701', 'compStars': 3, 'nationalRank': '373', 'positionRank': '27', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2006', 'playerName': 'Kris Durham', 'highSchool': 'Calhoun', 'city': 'Calhoun', 'state': 'GA', 'position': 'WR', 'height': 77.0, 'weight': '212', 'compRating': '0.8670', 'compStars': 3, 'nationalRank': '396', 'positionRank': '49', 'stateRank': '25', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2006', 'playerName': 'Shaun Chapas', 'highSchool': 'The Bolles School', 'city': 'Jacksonville', 'state': 'FL', 'position': 'FB', 'height': 74.0, 'weight': '240', 'compRating': '0.8639', 'compStars': 3, 'nationalRank': '424', 'positionRank': '8', 'stateRank': '56', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2006', 'playerName': 'Kevin Perez', 'highSchool': 'Killian', 'city': 'Miami', 'state': 'FL', 'position': 'OG', 'height': 75.0, 'weight': '273', 'compRating': '0.8576', 'compStars': 3, 'nationalRank': '476', 'positionRank': '29', 'stateRank': '62', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2006', 'playerName': 'John Miller', 'highSchool': 'Woodland', 'city': 'Cartersville', 'state': 'GA', 'position': 'OT', 'height': 78.0, 'weight': '286', 'compRating': '0.8465', 'compStars': 3, 'nationalRank': '620', 'positionRank': '39', 'stateRank': '31', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2006', 'playerName': 'Chris Davis', 'highSchool': 'Jefferson', 'city': 'Jefferson', 'state': 'GA', 'position': 'OG', 'height': 76.0, 'weight': '245', 'compRating': '0.8417', 'compStars': 3, 'nationalRank': '671', 'positionRank': '38', 'stateRank': '34', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2006', 'playerName': 'Josh Davis', 'highSchool': 'Tylertown', 'city': 'Tylertown', 'state': 'MS', 'position': 'OT', 'height': 78.0, 'weight': '295', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '825', 'positionRank': '53', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2006', 'playerName': 'Akeem Hebron', 'highSchool': 'Good Counsel', 'city': 'Olney', 'state': 'MD', 'position': 'OLB', 'height': 73.0, 'weight': '200', 'compRating': '0.9819', 'compStars': 4, 'nationalRank': '36', 'positionRank': '1', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2006', 'playerName': 'Justin Anderson', 'highSchool': 'Irwin County', 'city': 'Ocilla', 'state': 'GA', 'position': 'OG', 'height': 77.0, 'weight': '320', 'compRating': '0.9679', 'compStars': 4, 'nationalRank': '76', 'positionRank': '6', 'stateRank': '4', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2006', 'playerName': 'Brandon Wood', 'highSchool': 'Haralson County', 'city': 'Tallapoosa', 'state': 'GA', 'position': 'SDE', 'height': 73.0, 'weight': '287', 'compRating': '0.9530', 'compStars': 4, 'nationalRank': '90', 'positionRank': '4', 'stateRank': '6', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2006', 'playerName': 'Quintin Banks', 'highSchool': 'Houston County', 'city': 'Warner Robins', 'state': 'GA', 'position': 'S', 'height': 74.0, 'weight': '195', 'compRating': '0.9353', 'compStars': 4, 'nationalRank': '125', 'positionRank': '8', 'stateRank': '9', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'georgia', 'year': '2006', 'playerName': 'Darryl Gamble', 'highSchool': 'Bainbridge', 'city': 'Bainbridge', 'state': 'GA', 'position': 'OLB', 'height': 74.0, 'weight': '250', 'compRating': '0.9248', 'compStars': 4, 'nationalRank': '158', 'positionRank': '8', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'vanderbilt', 'year': '2020', 'playerName': "De'Rickey Wright", 'highSchool': 'Gadsden City', 'city': 'Gadsden', 'state': 'AL', 'position': 'ATH', 'height': 76.0, 'weight': '220', 'compRating': '0.8884', 'compStars': 3, 'nationalRank': '396', 'positionRank': '19', 'stateRank': '18', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '20', '247stateRank': '15'}, {'school': 'vanderbilt', 'year': '2020', 'playerName': 'Donovan Kaufman', 'highSchool': 'Archbishop Rummel', 'city': 'Metairie', 'state': 'LA', 'position': 'S', 'height': 69.0, 'weight': '195', 'compRating': '0.8862', 'compStars': 3, 'nationalRank': '414', 'positionRank': '36', 'stateRank': '19', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '50', '247stateRank': '26'}, {'school': 'vanderbilt', 'year': '2020', 'playerName': 'Kevo Wesley', 'highSchool': 'Curie Metropolitan', 'city': 'Chicago', 'state': 'IL', 'position': 'OC', 'height': 75.0, 'weight': '280', 'compRating': '0.8788', 'compStars': 3, 'nationalRank': '490', 'positionRank': '11', 'stateRank': '7', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '10', '247stateRank': '8'}, {'school': 'vanderbilt', 'year': '2020', 'playerName': 'Ken Seals', 'highSchool': 'Weatherford', 'city': 'Weatherford', 'state': 'TX', 'position': 'PRO', 'height': 75.0, 'weight': '203', 'compRating': '0.8776', 'compStars': 3, 'nationalRank': '510', 'positionRank': '21', 'stateRank': '68', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '11', '247stateRank': '68'}, {'school': 'vanderbilt', 'year': '2020', 'playerName': 'Mike Wright', 'highSchool': 'Woodward Academy', 'city': 'Atlanta', 'state': 'GA', 'position': 'DUAL', 'height': 76.0, 'weight': '185', 'compRating': '0.8766', 'compStars': 3, 'nationalRank': '519', 'positionRank': '19', 'stateRank': '56', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '14', '247stateRank': '49'}, {'school': 'vanderbilt', 'year': '2020', 'playerName': 'Diego LaMonica', 'highSchool': 'Gulliver Prep', 'city': 'Miami', 'state': 'FL', 'position': 'TE', 'height': 76.0, 'weight': '226', 'compRating': '0.8613', 'compStars': 3, 'nationalRank': '823', 'positionRank': '34', 'stateRank': '109', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '53', '247stateRank': '126'}, {'school': 'vanderbilt', 'year': '2020', 'playerName': 'Will Sheppard', 'highSchool': 'Mandeville', 'city': 'Mandeville', 'state': 'LA', 'position': 'WR', 'height': 74.0, 'weight': '180', 'compRating': '0.8578', 'compStars': 3, 'nationalRank': '903', 'positionRank': '135', 'stateRank': '36', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '73', '247stateRank': '17'}, {'school': 'vanderbilt', 'year': '2020', 'playerName': 'Logan Kyle', 'highSchool': 'Memorial', 'city': 'Tomball', 'state': 'TX', 'position': 'WR', 'height': 74.5, 'weight': '199', 'compRating': '0.8552', 'compStars': 3, 'nationalRank': '948', 'positionRank': '138', 'stateRank': '114', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '109', '247stateRank': '81'}, {'school': 'vanderbilt', 'year': '2020', 'playerName': 'Rocko Griffin', 'highSchool': 'South Effingham', 'city': 'Guyton', 'state': 'GA', 'position': 'RB', 'height': 69.0, 'weight': '187', 'compRating': '0.8497', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '73', 'stateRank': '119', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '76', '247stateRank': '112'}, {'school': 'vanderbilt', 'year': '2020', 'playerName': 'Bradley Ashmore', 'highSchool': 'Duncan U. Fletcher', 'city': 'Neptune Beach', 'state': 'FL', 'position': 'OT', 'height': 78.0, 'weight': '280', 'compRating': '0.8485', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '92', 'stateRank': '146', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '96', '247stateRank': '123'}, {'school': 'vanderbilt', 'year': '2020', 'playerName': 'Jason Brooks', 'highSchool': 'Dobie', 'city': 'Houston', 'state': 'TX', 'position': 'OG', 'height': 76.0, 'weight': '290', 'compRating': '0.8485', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '71', 'stateRank': '144', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '71', '247stateRank': '161'}, {'school': 'vanderbilt', 'year': '2020', 'playerName': 'Chase Lloyd', 'highSchool': 'Westlake', 'city': 'Atlanta', 'state': 'GA', 'position': 'ATH', 'height': 73.5, 'weight': '190', 'compRating': '0.8438', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '94', 'stateRank': '132', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '156', '247stateRank': '176'}, {'school': 'vanderbilt', 'year': '2020', 'playerName': 'Ben Cox', 'highSchool': 'Radford', 'city': 'Radford', 'state': 'VA', 'position': 'OT', 'height': 77.0, 'weight': '275', 'compRating': '0.8397', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '118', 'stateRank': '27', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '140', '247stateRank': '30'}, {'school': 'vanderbilt', 'year': '2020', 'playerName': 'Griffin Lampton', 'highSchool': 'St. Thomas Aquinas', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'WDE', 'height': 75.0, 'weight': '231', 'compRating': '0.8376', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '76', 'stateRank': '198', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '84', '247stateRank': '207'}, {'school': 'vanderbilt', 'year': '2020', 'playerName': 'Ethan Barr', 'highSchool': 'Marcus', 'city': 'Flower Mound', 'state': 'TX', 'position': 'ILB', 'height': 75.0, 'weight': '210', 'compRating': '0.8275', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '79', 'stateRank': '262', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '111', '247stateRank': '309'}, {'school': 'vanderbilt', 'year': '2020', 'playerName': 'Jeremy Moussa', 'highSchool': 'San Bernardino Valley College', 'city': 'San Bernardino', 'state': 'CA', 'position': 'PRO', 'height': 74.0, 'weight': '190', 'compRating': '0.8250', 'compStars': 3, 'nationalRank': '187', 'positionRank': '3', 'stateRank': '42', '247Rating': ' 82 ', '247Stars': 3, '247nationalRank': '181', '247positionRank': '4', '247stateRank': '36'}, {'school': 'vanderbilt', 'year': '2020', 'playerName': 'Danny Clark', 'highSchool': 'Copiah-Lincoln C.C.', 'city': 'Wesson', 'state': 'MS', 'position': 'PRO', 'height': 76.0, 'weight': '223', 'compRating': '0.8217', 'compStars': 3, 'nationalRank': '195', 'positionRank': '4', 'stateRank': '36', '247Rating': ' 81 ', '247Stars': 3, '247nationalRank': '226', '247positionRank': '5', '247stateRank': '44'}, {'school': 'vanderbilt', 'year': '2020', 'playerName': 'Raashaan Wilkins', 'highSchool': 'Monterey Peninsula College', 'city': 'Monterey', 'state': 'CA', 'position': 'SDE', 'height': 76.0, 'weight': '285', 'compRating': '0.8106', 'compStars': 3, 'nationalRank': '241', 'positionRank': '25', 'stateRank': '55', '247Rating': ' 81 ', '247Stars': 3, '247nationalRank': '227', '247positionRank': '25', '247stateRank': '51'}, {'school': 'vanderbilt', 'year': '2020', 'playerName': 'Wesley Schelling', 'highSchool': 'Pearl-Cohn', 'city': 'Nashville', 'state': 'TN', 'position': 'LS', 'height': 77.0, 'weight': '240', 'compRating': '0.7673', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '11', 'stateRank': '111', '247Rating': ' 73 ', '247Stars': 2, '247positionRank': '12', '247stateRank': '119'}, {'school': 'auburn', 'year': '2007', 'playerName': 'Michael McNeil', 'highSchool': 'WP Davidson', 'city': 'Mobile', 'state': 'AL', 'position': 'S', 'height': 74.0, 'weight': '200', 'compRating': '0.9818', 'compStars': 4, 'nationalRank': '32', 'positionRank': '2', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2007', 'playerName': 'Chaz Ramsey', 'highSchool': 'Madison Central', 'city': 'Madison', 'state': 'MS', 'position': 'OG', 'height': 75.0, 'weight': '285', 'compRating': '0.9309', 'compStars': 4, 'nationalRank': '136', 'positionRank': '6', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2007', 'playerName': 'Kodi Burns', 'highSchool': 'Northside', 'city': 'Fort Smith', 'state': 'AR', 'position': 'DUAL', 'height': 74.0, 'weight': '207', 'compRating': '0.9290', 'compStars': 4, 'nationalRank': '141', 'positionRank': '5', 'stateRank': '2', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2007', 'playerName': 'Tim Lamb', 'highSchool': 'Lincoln', 'city': 'Tallahassee', 'state': 'FL', 'position': 'DT', 'height': 72.0, 'weight': '315', 'compRating': '0.9181', 'compStars': 4, 'nationalRank': '172', 'positionRank': '19', 'stateRank': '25', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2007', 'playerName': 'Johnnie Lee Dixon', 'highSchool': 'Glades Central', 'city': 'Belle Glade', 'state': 'FL', 'position': 'ATH', 'height': 71.0, 'weight': '176', 'compRating': '0.8938', 'compStars': 4, 'nationalRank': '220', 'positionRank': '14', 'stateRank': '33', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2007', 'playerName': 'Carlton Johnson', 'highSchool': 'A. Crawford Mosley', 'city': 'Lynn Haven', 'state': 'FL', 'position': 'OLB', 'height': 73.0, 'weight': '184', 'compRating': '0.8875', 'compStars': 3, 'nationalRank': '266', 'positionRank': '15', 'stateRank': '40', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2007', 'playerName': 'Wes Byrum', 'highSchool': 'St. Thomas Aquinas', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'K', 'height': 75.0, 'weight': '195', 'compRating': '0.8795', 'compStars': 3, 'nationalRank': '309', 'positionRank': '1', 'stateRank': '45', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2007', 'playerName': 'Bailey Woods', 'highSchool': 'Walton', 'city': 'Marietta', 'state': 'GA', 'position': 'TE', 'height': 77.0, 'weight': '240', 'compRating': '0.8781', 'compStars': 3, 'nationalRank': '313', 'positionRank': '14', 'stateRank': '22', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2007', 'playerName': 'Ryan Williams', 'highSchool': 'Ben C Rain Sch', 'city': 'Mobile', 'state': 'AL', 'position': 'CB', 'height': 71.0, 'weight': '182', 'compRating': '0.8701', 'compStars': 3, 'nationalRank': '407', 'positionRank': '28', 'stateRank': '12', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2007', 'playerName': 'Brent Slusher', 'highSchool': 'Bell County', 'city': 'Pineville', 'state': 'KY', 'position': 'TE', 'height': 75.0, 'weight': '221', 'compRating': '0.8670', 'compStars': 3, 'nationalRank': '427', 'positionRank': '20', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2007', 'playerName': 'John Douglas', 'highSchool': 'Aquinas', 'city': 'Augusta', 'state': 'GA', 'position': 'FB', 'height': 74.0, 'weight': '235', 'compRating': '0.8608', 'compStars': 3, 'nationalRank': '477', 'positionRank': '7', 'stateRank': '30', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2007', 'playerName': 'Mike Slade', 'highSchool': 'Lincoln', 'city': 'Tallahassee', 'state': 'FL', 'position': 'S', 'height': 74.0, 'weight': '185', 'compRating': '0.8590', 'compStars': 3, 'nationalRank': '491', 'positionRank': '35', 'stateRank': '67', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2007', 'playerName': 'Antoine Carter', 'highSchool': 'Dillard', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'SDE', 'height': 76.0, 'weight': '226', 'compRating': '0.8556', 'compStars': 3, 'nationalRank': '554', 'positionRank': '40', 'stateRank': '72', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2007', 'playerName': 'Kyle Coulahan', 'highSchool': 'Pensacola Catholic', 'city': 'Pensacola', 'state': 'FL', 'position': 'OT', 'height': 76.0, 'weight': '320', 'compRating': '0.8545', 'compStars': 3, 'nationalRank': '566', 'positionRank': '50', 'stateRank': '74', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2007', 'playerName': 'Jared Cooper', 'highSchool': 'W S Neal Sch', 'city': 'Brewton', 'state': 'AL', 'position': 'OG', 'height': 76.0, 'weight': '300', 'compRating': '0.8510', 'compStars': 3, 'nationalRank': '618', 'positionRank': '46', 'stateRank': '18', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2007', 'playerName': 'A.J. Greene', 'highSchool': 'Brentwood Academy', 'city': 'Brentwood', 'state': 'TN', 'position': 'OT', 'height': 77.0, 'weight': '309', 'compRating': '0.8510', 'compStars': 3, 'nationalRank': '619', 'positionRank': '56', 'stateRank': '20', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2007', 'playerName': 'Adam Herring', 'highSchool': 'Shiloh Christian', 'city': 'Springdale', 'state': 'AR', 'position': 'ILB', 'height': 74.0, 'weight': '218', 'compRating': '0.8385', 'compStars': 3, 'nationalRank': '774', 'positionRank': '34', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2007', 'playerName': 'Wilfred Journet', 'highSchool': 'Acadiana', 'city': 'Lafayette', 'state': 'LA', 'position': 'WDE', 'height': 75.0, 'weight': '242', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '881', 'positionRank': '36', 'stateRank': '35', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2007', 'playerName': 'Quindarius Carr', 'highSchool': 'Huntsville', 'city': 'Huntsville', 'state': 'AL', 'position': 'WR', 'height': 73.0, 'weight': '184', 'compRating': '0.8260', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '112', 'stateRank': '27', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2007', 'playerName': 'Brandon Earl', 'highSchool': 'North Jackson', 'city': 'Stevenson', 'state': 'AL', 'position': 'OG', 'height': 76.0, 'weight': '298', 'compRating': '0.8243', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '86', 'stateRank': '28', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2007', 'playerName': 'Chris Zinn', 'highSchool': 'Olive Branch', 'city': 'Olive Branch', 'state': 'MS', 'position': 'ILB', 'height': 74.0, 'weight': '235', 'compRating': '0.7222', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '97', 'stateRank': '41', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2007', 'playerName': 'Josh Bynes', 'highSchool': 'Boyd Anderson', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'ILB', 'height': 74.0, 'weight': '235', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2007', 'playerName': 'Darvin Adams', 'highSchool': 'Harrison', 'city': 'Kennesaw', 'state': 'GA', 'position': 'WR', 'height': 75.0, 'weight': '185', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2007', 'playerName': 'Josh Harris', 'highSchool': 'Carrollton', 'city': 'Carrollton', 'state': 'GA', 'position': 'LS', 'height': 73.0, 'weight': '227', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2007', 'playerName': 'Davis Hooper', 'highSchool': 'Trinity Presbyterian School', 'city': 'Montgomery', 'state': 'AL', 'position': 'RB', 'height': 72.0, 'weight': '212', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA'}, {'school': 'auburn', 'year': '2007', 'playerName': 'Chris Humphries', 'highSchool': 'Albert P Brewer', 'city': 'Somerville', 'state': 'AL', 'position': 'FB', 'height': 74.0, 'weight': '225', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2007', 'playerName': 'Bobby Ingalls', 'highSchool': 'Gardendale', 'city': 'Gardendale', 'state': 'AL', 'position': 'OG', 'height': 79.0, 'weight': '340', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2007', 'playerName': 'Nathan Taylor', 'highSchool': 'Massaponax', 'city': 'Fredericksburg', 'state': 'VA', 'position': 'WR', 'height': 70.0, 'weight': '181', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2007', 'playerName': 'Ashton Richardson', 'highSchool': 'St. Michael The Archangel', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'OLB', 'height': 72.0, 'weight': '212', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2007', 'playerName': 'Lee Ziemba', 'highSchool': 'Rogers', 'city': 'Rogers', 'state': 'AR', 'position': 'OT', 'height': 79.0, 'weight': '295', 'compRating': '0.9783', 'compStars': 4, 'nationalRank': '47', 'positionRank': '4', 'stateRank': '1', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2007', 'playerName': 'Ryan Pugh', 'highSchool': 'Hoover', 'city': 'Hoover', 'state': 'AL', 'position': 'OC', 'height': 74.0, 'weight': '275', 'compRating': '0.9442', 'compStars': 4, 'nationalRank': '105', 'positionRank': '1', 'stateRank': '5', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2007', 'playerName': 'Enrique Davis', 'highSchool': 'A. Crawford Mosley', 'city': 'Lynn Haven', 'state': 'FL', 'position': 'RB', 'height': 71.0, 'weight': '212', 'compRating': '0.9254', 'compStars': 4, 'nationalRank': '152', 'positionRank': '19', 'stateRank': '23', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2007', 'playerName': 'Nick Fairley', 'highSchool': 'Williamson', 'city': 'Mobile', 'state': 'AL', 'position': 'DT', 'height': 76.0, 'weight': '257', 'compRating': '0.8733', 'compStars': 3, 'nationalRank': '379', 'positionRank': '34', 'stateRank': '11', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'auburn', 'year': '2007', 'playerName': 'Jermaine Johnson', 'highSchool': 'St. Thomas Aquinas', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'OT', 'height': 78.0, 'weight': '325', 'compRating': '0.8333', 'compStars': 3, 'nationalRank': '920', 'positionRank': '81', 'stateRank': '101', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'florida', 'year': '2015', 'playerName': 'Martez Ivey', 'highSchool': 'Apopka', 'city': 'Apopka', 'state': 'FL', 'position': 'OT', 'height': 77.5, 'weight': '275', 'compRating': '0.9991', 'compStars': 5, 'nationalRank': '2', 'positionRank': '1', 'stateRank': '1', '247Rating': ' 100 ', '247Stars': 5, '247nationalRank': '2', '247positionRank': '1', '247stateRank': '1'}, {'school': 'florida', 'year': '2015', 'playerName': 'CeCe Jefferson', 'highSchool': 'Baker County Senior', 'city': 'Glen Saint Mary', 'state': 'FL', 'position': 'SDE', 'height': 74.0, 'weight': '275', 'compRating': '0.9952', 'compStars': 5, 'nationalRank': '7', 'positionRank': '2', 'stateRank': '4', '247Rating': ' 98 ', '247Stars': 5, '247nationalRank': '11', '247positionRank': '2', '247stateRank': '5'}, {'school': 'florida', 'year': '2015', 'playerName': 'Jordan Scarlett', 'highSchool': 'St. Thomas Aquinas', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'RB', 'height': 70.5, 'weight': '202', 'compRating': '0.9464', 'compStars': 4, 'nationalRank': '117', 'positionRank': '12', 'stateRank': '18', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '135', '247positionRank': '13', '247stateRank': '18'}, {'school': 'florida', 'year': '2015', 'playerName': 'Antonio Callaway', 'highSchool': 'Booker T. Washington', 'city': 'Miami', 'state': 'FL', 'position': 'WR', 'height': 71.0, 'weight': '185', 'compRating': '0.8902', 'compStars': 4, 'nationalRank': '341', 'positionRank': '43', 'stateRank': '51', '247Rating': ' 93 ', '247Stars': 4, '247nationalRank': '183', '247positionRank': '20', '247stateRank': '25'}, {'school': 'florida', 'year': '2015', 'playerName': 'Jordan Cronkrite', 'highSchool': 'Westminster Christian School', 'city': 'Miami', 'state': 'FL', 'position': 'ATH', 'height': 71.0, 'weight': '198', 'compRating': '0.8853', 'compStars': 3, 'nationalRank': '370', 'positionRank': '26', 'stateRank': '55', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '18', '247stateRank': '34'}, {'school': 'florida', 'year': '2015', 'playerName': 'Tyler Jordan', 'highSchool': 'Bishop Kenny', 'city': 'Jacksonville', 'state': 'FL', 'position': 'OC', 'height': 76.0, 'weight': '280', 'compRating': '0.8821', 'compStars': 3, 'nationalRank': '389', 'positionRank': '7', 'stateRank': '57', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '10', '247stateRank': '85'}, {'school': 'florida', 'year': '2015', 'playerName': 'Chris Williamson', 'highSchool': 'Gainesville', 'city': 'Gainesville', 'state': 'GA', 'position': 'CB', 'height': 73.0, 'weight': '190', 'compRating': '0.8761', 'compStars': 3, 'nationalRank': '438', 'positionRank': '43', 'stateRank': '38', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '39', '247stateRank': '32'}, {'school': 'florida', 'year': '2015', 'playerName': 'Daniel Imatorbhebhe', 'highSchool': 'North Gwinnett', 'city': 'Suwanee', 'state': 'GA', 'position': 'TE', 'height': 76.0, 'weight': '227', 'compRating': '0.8624', 'compStars': 3, 'nationalRank': '604', 'positionRank': '18', 'stateRank': '61', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '19', '247stateRank': '68'}, {'school': 'florida', 'year': '2015', 'playerName': 'Jabari Zuniga', 'highSchool': 'Sprayberry', 'city': 'Marietta', 'state': 'GA', 'position': 'SDE', 'height': 75.0, 'weight': '255', 'compRating': '0.8604', 'compStars': 3, 'nationalRank': '636', 'positionRank': '35', 'stateRank': '70', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '18', '247stateRank': '29'}, {'school': 'florida', 'year': '2015', 'playerName': 'Brandon Sandifer', 'highSchool': 'Northside', 'city': 'Warner Robins', 'state': 'GA', 'position': 'OG', 'height': 76.0, 'weight': '335', 'compRating': '0.8600', 'compStars': 3, 'nationalRank': '639', 'positionRank': '40', 'stateRank': '71'}, {'school': 'florida', 'year': '2015', 'playerName': 'Camrin Knight', 'highSchool': 'Lincoln', 'city': 'Tallahassee', 'state': 'FL', 'position': 'TE', 'height': 76.0, 'weight': '225', 'compRating': '0.8540', 'compStars': 3, 'nationalRank': '785', 'positionRank': '28', 'stateRank': '97', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '38', '247stateRank': '164'}, {'school': 'florida', 'year': '2015', 'playerName': 'Kylan Johnson', 'highSchool': 'Skyline', 'city': 'Dallas', 'state': 'TX', 'position': 'S', 'height': 75.0, 'weight': '202', 'compRating': '0.8537', 'compStars': 3, 'nationalRank': '796', 'positionRank': '57', 'stateRank': '106', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '50', '247stateRank': '97'}, {'school': 'florida', 'year': '2015', 'playerName': 'Kalif Jackson', 'highSchool': 'Duncan U. Fletcher', 'city': 'Neptune Beach', 'state': 'FL', 'position': 'WR', 'height': 77.0, 'weight': '200', 'compRating': '0.8513', 'compStars': 3, 'nationalRank': '848', 'positionRank': '103', 'stateRank': '107', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '75', '247stateRank': '76'}, {'school': 'florida', 'year': '2015', 'playerName': 'Andrew Ivie', 'highSchool': 'Pasco', 'city': 'Dade City', 'state': 'FL', 'position': 'DT', 'height': 73.0, 'weight': '265', 'compRating': '0.8484', 'compStars': 3, 'nationalRank': '921', 'positionRank': '57', 'stateRank': '118', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '77', '247stateRank': '179'}, {'school': 'florida', 'year': '2015', 'playerName': 'Keivonnis Davis', 'highSchool': 'Miami Central', 'city': 'Miami', 'state': 'FL', 'position': 'SDE', 'height': 76.0, 'weight': '227', 'compRating': '0.8395', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '58', 'stateRank': '158', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '41', '247stateRank': '78'}, {'school': 'florida', 'year': '2015', 'playerName': 'Richerd Desir-Jones', 'highSchool': 'St. Thomas Aquinas', 'city': 'Fort Lauderdale', 'state': 'FL', 'position': 'DT', 'height': 76.0, 'weight': '285', 'compRating': '0.8381', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '83', 'stateRank': '165', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '86', '247stateRank': '203'}, {'school': 'florida', 'year': '2015', 'playerName': 'Fred Johnson', 'highSchool': 'Royal Palm Beach', 'city': 'West Palm Beach', 'state': 'FL', 'position': 'OT', 'height': 78.5, 'weight': '301', 'compRating': '0.8329', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '144', 'stateRank': '201', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '104', '247stateRank': '121'}, {'school': 'florida', 'year': '2015', 'playerName': 'Nick Buchanan', 'highSchool': 'Dunwoody', 'city': 'Atlanta', 'state': 'GA', 'position': 'OT', 'height': 76.0, 'weight': '280', 'compRating': '0.8274', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '158', 'stateRank': '152', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '182', '247stateRank': '182'}, {'school': 'florida', 'year': '2015', 'playerName': 'Rayshad Jackson', 'highSchool': 'Norland', 'city': 'Miami', 'state': 'FL', 'position': 'OLB', 'height': 74.0, 'weight': '215', 'compRating': '0.8173', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '110', 'stateRank': '247', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '100', '247stateRank': '207'}, {'school': 'florida', 'year': '2015', 'playerName': 'Luke Ancrum', 'highSchool': 'Sebring', 'city': 'Sebring', 'state': 'FL', 'position': 'SDE', 'height': 77.0, 'weight': '230', 'compRating': '0.8122', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '82', 'stateRank': '260', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '65', '247stateRank': '177'}, {'school': 'florida', 'year': '2015', 'playerName': "D'Anfernee McGriff", 'highSchool': 'Tallahassee Leon', 'city': 'Tallahassee', 'state': 'FL', 'position': 'RB', 'height': 73.0, 'weight': '230', 'compRating': '0.9052', 'compStars': 4, 'nationalRank': '257', 'positionRank': '19', 'stateRank': '33', '247Rating': ' 77 ', '247Stars': 2, '247positionRank': '5', '247stateRank': '11'}, {'school': 'kentucky', 'year': '2004', 'playerName': 'Joe Joe Brown', 'highSchool': 'Crisp County', 'city': 'Cordele', 'state': 'GA', 'position': 'DUAL', 'height': 75.0, 'weight': '190', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2004', 'playerName': 'Tedd Bullock', 'highSchool': 'Valley', 'city': 'Lucasville', 'state': 'OH', 'position': 'ILB', 'height': 75.0, 'weight': '225', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2004', 'playerName': 'Jamir Davis', 'highSchool': 'City College of San Francisco', 'city': 'San Francisco', 'state': 'CA', 'position': 'TE', 'height': 75.0, 'weight': '250', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2004', 'playerName': 'Lonnell Dewalt', 'highSchool': 'Warren Central', 'city': 'Bowling Green', 'state': 'KY', 'position': 'WR', 'height': 79.0, 'weight': '220', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2004', 'playerName': 'Tony Dixon', 'highSchool': 'Parrish Sch', 'city': 'Parrish', 'state': 'AL', 'position': 'APB', 'height': 69.0, 'weight': '180', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2004', 'playerName': 'Kane Hannaford', 'highSchool': 'Palmetto', 'city': 'Palmetto', 'state': 'FL', 'position': 'OG', 'height': 78.0, 'weight': '335', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2004', 'playerName': 'Micah Jones', 'highSchool': 'Mayfield', 'city': 'Mayfield', 'state': 'KY', 'position': 'OT', 'height': 77.0, 'weight': '330', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2004', 'playerName': 'Cedric Koger', 'highSchool': 'Dodge City C.C.', 'city': 'Dodge City', 'state': 'KS', 'position': 'SDE', 'height': 77.0, 'weight': '245', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2004', 'playerName': 'Jason Leger', 'highSchool': 'Rockcastle County', 'city': 'Mount Vernon', 'state': 'KY', 'position': 'DT', 'height': 73.0, 'weight': '270', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2004', 'playerName': 'Trevard Lindley', 'highSchool': 'Hiram', 'city': 'Hiram', 'state': 'GA', 'position': 'CB', 'height': 73.0, 'weight': '190', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2004', 'playerName': 'Rafael Little', 'highSchool': 'T L Hanna', 'city': 'Anderson', 'state': 'SC', 'position': 'APB', 'height': 71.0, 'weight': '190', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2004', 'playerName': 'Richard Lyons', 'highSchool': 'Holy Cross', 'city': 'New Orleans', 'state': 'LA', 'position': 'WR', 'height': 71.0, 'weight': '180', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2004', 'playerName': 'Mikhail Mabry', 'highSchool': 'Mililani', 'city': 'Mililani', 'state': 'HI', 'position': 'ILB', 'height': 74.0, 'weight': '230', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2004', 'playerName': 'Marcus McClinton', 'highSchool': 'Fort Campbell', 'city': 'Fort Campbell', 'state': 'KY', 'position': 'S', 'height': 74.0, 'weight': '200', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2004', 'playerName': 'Ben McGrath', 'highSchool': 'Archbishop Moeller', 'city': 'Cincinnati', 'state': 'OH', 'position': 'PRO', 'height': 75.0, 'weight': '225', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2004', 'playerName': 'Aaron Miller', 'highSchool': 'East Carter County', 'city': 'Grayson', 'state': 'KY', 'position': 'OT', 'height': 78.0, 'weight': '300', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2004', 'playerName': 'Scott Mitchell', 'highSchool': 'Mt. San Antonio College', 'city': 'Walnut', 'state': 'CA', 'position': 'WR', 'height': 75.0, 'weight': '210', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2004', 'playerName': 'Shomari Moore', 'highSchool': 'Camden', 'city': 'Camden', 'state': 'NJ', 'position': 'ATH', 'height': 70.0, 'weight': '180', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2004', 'playerName': 'Nii Adjei Oninku', 'highSchool': 'Northmont', 'city': 'Clayton', 'state': 'OH', 'position': 'SDE', 'height': 75.0, 'weight': '245', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2004', 'playerName': 'B.Jay Parsons', 'highSchool': 'Saddleback College', 'city': 'Mission Viejo', 'state': 'CA', 'position': 'SDE', 'height': 77.0, 'weight': '250', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2004', 'playerName': 'Ernie Pelayo', 'highSchool': 'Southwestern College', 'city': 'Chula Vista', 'state': 'CA', 'position': 'OT', 'height': 78.0, 'weight': '290', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2004', 'playerName': 'Myron Pryor', 'highSchool': 'Eastern', 'city': 'Louisville', 'state': 'KY', 'position': 'DT', 'height': 73.0, 'weight': '300', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2004', 'playerName': 'Garry Williams', 'highSchool': 'Seneca Academy', 'city': 'Louisville', 'state': 'KY', 'position': 'OG', 'height': 76.0, 'weight': '275', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2004', 'playerName': 'Jarrell Williams', 'highSchool': 'Princeton', 'city': 'Cincinnati', 'state': 'OH', 'position': 'DUAL', 'height': 74.0, 'weight': '180', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2004', 'playerName': 'Johnny Williams', 'highSchool': 'Duncan U. Fletcher', 'city': 'Neptune Beach', 'state': 'FL', 'position': 'ILB', 'height': 75.0, 'weight': '235', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2004', 'playerName': 'Wesley Woodyard', 'highSchool': 'LaGrange', 'city': 'Lagrange', 'state': 'GA', 'position': 'S', 'height': 74.0, 'weight': '195', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2004', 'playerName': 'Gabe Wallace', 'highSchool': 'Fort Campbell', 'city': 'Fort Campbell', 'state': 'KY', 'position': 'ILB', 'height': 73.0, 'weight': '232', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2004', 'playerName': 'Aubrey White', 'highSchool': 'Henry Clay', 'city': 'Lexington', 'state': 'KY', 'position': 'ATH', 'height': 75.0, 'weight': '187', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'missouri', 'year': '2016', 'playerName': 'Darvis Holmes', 'highSchool': 'Long County', 'city': 'Lincolnton', 'state': 'GA', 'position': 'OT', 'height': 78.0, 'weight': '325', 'compRating': '0.9566', 'compStars': 4, 'nationalRank': '88', 'positionRank': '9', 'stateRank': '11', '247Rating': ' 95 ', '247Stars': 4, '247nationalRank': '109', '247positionRank': '14', '247stateRank': '12'}, {'school': 'missouri', 'year': '2016', 'playerName': 'Natereace Strong', 'highSchool': 'Hinds C.C.', 'city': 'Raymond', 'state': 'MS', 'position': 'RB', 'height': 73.0, 'weight': '210', 'compRating': '0.8959', 'compStars': 4, 'nationalRank': '15', 'positionRank': '2', 'stateRank': '2', '247Rating': ' 90 ', '247Stars': 4, '247nationalRank': '20', '247positionRank': '2', '247stateRank': '3'}, {'school': 'missouri', 'year': '2016', 'playerName': 'Tre Williams', 'highSchool': 'Rock Bridge', 'city': 'Columbia', 'state': 'MO', 'position': 'WDE', 'height': 76.0, 'weight': '220', 'compRating': '0.8670', 'compStars': 3, 'nationalRank': '530', 'positionRank': '31', 'stateRank': '4', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '51', '247stateRank': '7'}, {'school': 'missouri', 'year': '2016', 'playerName': 'Damarea Crockett', 'highSchool': 'Little Rock Christian Academy', 'city': 'Little Rock', 'state': 'AR', 'position': 'RB', 'height': 72.0, 'weight': '212', 'compRating': '0.8664', 'compStars': 3, 'nationalRank': '539', 'positionRank': '31', 'stateRank': '5', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '32', '247stateRank': '5'}, {'school': 'missouri', 'year': '2016', 'playerName': 'Brendan Scales', 'highSchool': 'Lafayette', 'city': 'Ballwin', 'state': 'MO', 'position': 'TE', 'height': 76.0, 'weight': '230', 'compRating': '0.8656', 'compStars': 3, 'nationalRank': '543', 'positionRank': '24', 'stateRank': '5', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '22', '247stateRank': '5'}, {'school': 'missouri', 'year': '2016', 'playerName': 'Albert Okwuegbunam', 'highSchool': 'Sacred Heart Griffin', 'city': 'Springfield', 'state': 'IL', 'position': 'TE', 'height': 77.0, 'weight': '223', 'compRating': '0.8609', 'compStars': 3, 'nationalRank': '614', 'positionRank': '30', 'stateRank': '16', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '28', '247stateRank': '21'}, {'school': 'missouri', 'year': '2016', 'playerName': 'Greg Taylor', 'highSchool': 'Hinds C.C.', 'city': 'Raymond', 'state': 'MS', 'position': 'S', 'height': 71.0, 'weight': '180', 'compRating': '0.8575', 'compStars': 3, 'nationalRank': '72', 'positionRank': '4', 'stateRank': '14', '247Rating': ' 85 ', '247Stars': 3, '247nationalRank': '98', '247positionRank': '6', '247stateRank': '17'}, {'school': 'missouri', 'year': '2016', 'playerName': 'DeMarkus Acy', 'highSchool': 'Wilmer-Hutchins', 'city': 'Dallas', 'state': 'TX', 'position': 'S', 'height': 75.0, 'weight': '180', 'compRating': '0.8467', 'compStars': 3, 'nationalRank': '900', 'positionRank': '59', 'stateRank': '118', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '30', '247stateRank': '66'}, {'school': 'missouri', 'year': '2016', 'playerName': 'Trevour Simms', 'highSchool': 'East St. Louis', 'city': 'East Saint Louis', 'state': 'IL', 'position': 'OT', 'height': 77.0, 'weight': '290', 'compRating': '0.8457', 'compStars': 3, 'nationalRank': '932', 'positionRank': '80', 'stateRank': '25', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '79', '247stateRank': '24'}, {'school': 'missouri', 'year': '2016', 'playerName': 'Trystan Colon-Castillo', 'highSchool': 'Webb City', 'city': 'Webb City', 'state': 'MO', 'position': 'OC', 'height': 76.0, 'weight': '280', 'compRating': '0.8446', 'compStars': 3, 'nationalRank': '957', 'positionRank': '8', 'stateRank': '10', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '9', '247stateRank': '10'}, {'school': 'missouri', 'year': '2016', 'playerName': 'Trey Baldwin', 'highSchool': 'Cy Falls', 'city': 'Houston', 'state': 'TX', 'position': 'OLB', 'height': 74.0, 'weight': '223', 'compRating': '0.8420', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '68', 'stateRank': '128'}, {'school': 'missouri', 'year': '2016', 'playerName': 'Micah Wilson', 'highSchool': 'Lincoln Christian School', 'city': 'Tulsa', 'state': 'OK', 'position': 'DUAL', 'height': 75.0, 'weight': '195', 'compRating': '0.8404', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '27', 'stateRank': '11', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '14', '247stateRank': '6'}, {'school': 'missouri', 'year': '2016', 'playerName': 'Dominic Collins', 'highSchool': 'Saddleback College', 'city': 'Mission Viejo', 'state': 'CA', 'position': 'WR', 'height': 74.0, 'weight': '175', 'compRating': '0.8367', 'compStars': 3, 'nationalRank': '125', 'positionRank': '24', 'stateRank': '31', '247Rating': ' 84 ', '247Stars': 3, '247nationalRank': '141', '247positionRank': '26', '247stateRank': '36'}, {'school': 'missouri', 'year': '2016', 'playerName': 'Christian Holmes', 'highSchool': 'McNair', 'city': 'Atlanta', 'state': 'GA', 'position': 'CB', 'height': 73.5, 'weight': '182', 'compRating': '0.8332', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '114', 'stateRank': '114', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '141', '247stateRank': '140'}, {'school': 'missouri', 'year': '2016', 'playerName': 'Tucker McCann', 'highSchool': 'O Fallon', 'city': "O'Fallon", 'state': 'IL', 'position': 'K', 'height': 73.0, 'weight': '185', 'compRating': '0.8312', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '9', 'stateRank': '36', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '9', '247stateRank': '51'}, {'school': 'missouri', 'year': '2016', 'playerName': 'Markell Utsey', 'highSchool': 'Parkview Magnet', 'city': 'Little Rock', 'state': 'AR', 'position': 'DT', 'height': 76.0, 'weight': '290', 'compRating': '0.8163', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '104', 'stateRank': '15', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '105', '247stateRank': '21'}, {'school': 'missouri', 'year': '2016', 'playerName': 'Cale Garrett', 'highSchool': 'Kearney', 'city': 'Kearney', 'state': 'MO', 'position': 'ILB', 'height': 74.0, 'weight': '218', 'compRating': '0.8073', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '83', 'stateRank': '24', '247Rating': ' 80 ', '247Stars': 3, '247positionRank': '76', '247stateRank': '21'}, {'school': 'missouri', 'year': '2016', 'playerName': 'Dimetrios Mason', 'highSchool': 'Grayson', 'city': 'Loganville', 'state': 'GA', 'position': 'WR', 'height': 72.0, 'weight': '170', 'compRating': '0.8058', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '282', 'stateRank': '175', '247Rating': ' 84 ', '247Stars': 3, '247positionRank': '189', '247stateRank': '121'}, {'school': 'missouri', 'year': '2016', 'playerName': 'Jerod Alton', 'highSchool': 'Kirkwood', 'city': 'Saint Louis', 'state': 'MO', 'position': 'ATH', 'height': 70.0, 'weight': '179', 'compRating': '0.8359', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '91', 'stateRank': '15'}, {'school': 'arkansas', 'year': '2019', 'playerName': 'Treylon Burks', 'highSchool': 'Warren', 'city': 'Warren', 'state': 'AR', 'position': 'WR', 'height': 75.0, 'weight': '225', 'compRating': '0.9544', 'compStars': 4, 'nationalRank': '103', 'positionRank': '16', 'stateRank': '1', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '129', '247positionRank': '21', '247stateRank': '1'}, {'school': 'arkansas', 'year': '2019', 'playerName': 'Hudson Henry', 'highSchool': 'Pulaski Academy', 'city': 'Little Rock', 'state': 'AR', 'position': 'TE', 'height': 77.0, 'weight': '230', 'compRating': '0.9423', 'compStars': 4, 'nationalRank': '132', 'positionRank': '4', 'stateRank': '2', '247Rating': ' 94 ', '247Stars': 4, '247nationalRank': '141', '247positionRank': '4', '247stateRank': '2'}, {'school': 'arkansas', 'year': '2019', 'playerName': 'Trey Knox', 'highSchool': 'Blackman', 'city': 'Murfreesboro', 'state': 'TN', 'position': 'WR', 'height': 77.0, 'weight': '215', 'compRating': '0.9129', 'compStars': 4, 'nationalRank': '228', 'positionRank': '34', 'stateRank': '7', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '66', '247stateRank': '13'}, {'school': 'arkansas', 'year': '2019', 'playerName': 'Devin Bush', 'highSchool': 'Edna Karr', 'city': 'New Orleans', 'state': 'LA', 'position': 'CB', 'height': 72.0, 'weight': '190', 'compRating': '0.9063', 'compStars': 4, 'nationalRank': '260', 'positionRank': '28', 'stateRank': '13', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '45', '247stateRank': '17'}, {'school': 'arkansas', 'year': '2019', 'playerName': 'Jalen Catalon', 'highSchool': 'Mansfield Legacy', 'city': 'Mansfield', 'state': 'TX', 'position': 'S', 'height': 69.0, 'weight': '188', 'compRating': '0.9001', 'compStars': 4, 'nationalRank': '305', 'positionRank': '26', 'stateRank': '38', '247Rating': ' 91 ', '247Stars': 4, '247positionRank': '23', '247stateRank': '29'}, {'school': 'arkansas', 'year': '2019', 'playerName': 'Collin Clay', 'highSchool': 'Putnam City', 'city': 'Oklahoma City', 'state': 'OK', 'position': 'SDE', 'height': 75.5, 'weight': '261', 'compRating': '0.8982', 'compStars': 4, 'nationalRank': '317', 'positionRank': '20', 'stateRank': '4', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '30', '247stateRank': '7'}, {'school': 'arkansas', 'year': '2019', 'playerName': 'Mataio Soli', 'highSchool': 'Douglas County', 'city': 'Douglasville', 'state': 'GA', 'position': 'WDE', 'height': 76.0, 'weight': '225', 'compRating': '0.8967', 'compStars': 4, 'nationalRank': '326', 'positionRank': '20', 'stateRank': '34', '247Rating': ' 92 ', '247Stars': 4, '247nationalRank': '228', '247positionRank': '15', '247stateRank': '22'}, {'school': 'arkansas', 'year': '2019', 'playerName': 'KJ Jefferson', 'highSchool': 'North Panola', 'city': 'Sardis', 'state': 'MS', 'position': 'DUAL', 'height': 75.0, 'weight': '211', 'compRating': '0.8960', 'compStars': 4, 'nationalRank': '331', 'positionRank': '12', 'stateRank': '14', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '5', '247stateRank': '14'}, {'school': 'arkansas', 'year': '2019', 'playerName': 'Greg Brooks Jr.', 'highSchool': 'West Jefferson', 'city': 'Harvey', 'state': 'LA', 'position': 'CB', 'height': 70.0, 'weight': '178', 'compRating': '0.8925', 'compStars': 4, 'nationalRank': '356', 'positionRank': '36', 'stateRank': '16', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '40', '247stateRank': '16'}, {'school': 'arkansas', 'year': '2019', 'playerName': 'TQ Jackson', 'highSchool': 'Jefferson', 'city': 'Jefferson', 'state': 'TX', 'position': 'WR', 'height': 75.0, 'weight': '188', 'compRating': '0.8904', 'compStars': 4, 'nationalRank': '381', 'positionRank': '45', 'stateRank': '46', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '51', '247stateRank': '42'}, {'school': 'arkansas', 'year': '2019', 'playerName': 'Shamar Nash', 'highSchool': 'IMG Academy', 'city': 'Bradenton', 'state': 'FL', 'position': 'WR', 'height': 74.0, 'weight': '194', 'compRating': '0.8904', 'compStars': 4, 'nationalRank': '383', 'positionRank': '46', 'stateRank': '46', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '55', '247stateRank': '48'}, {'school': 'arkansas', 'year': '2019', 'playerName': 'Zach Williams', 'highSchool': 'Joe T. Robinson', 'city': 'Little Rock', 'state': 'AR', 'position': 'WDE', 'height': 76.0, 'weight': '235', 'compRating': '0.8888', 'compStars': 3, 'nationalRank': '399', 'positionRank': '27', 'stateRank': '5', '247Rating': ' 91 ', '247Stars': 4, '247nationalRank': '247', '247positionRank': '16', '247stateRank': '4'}, {'school': 'arkansas', 'year': '2019', 'playerName': 'Eric Gregory', 'highSchool': 'IMG Academy', 'city': 'Bradenton', 'state': 'FL', 'position': 'WDE', 'height': 76.0, 'weight': '270', 'compRating': '0.8824', 'compStars': 3, 'nationalRank': '478', 'positionRank': '33', 'stateRank': '56', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '54', '247stateRank': '97'}, {'school': 'arkansas', 'year': '2019', 'playerName': 'Ricky Stromberg', 'highSchool': 'Union', 'city': 'Tulsa', 'state': 'OK', 'position': 'OC', 'height': 75.0, 'weight': '280', 'compRating': '0.8810', 'compStars': 3, 'nationalRank': '501', 'positionRank': '6', 'stateRank': '8', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '5', '247stateRank': '4'}, {'school': 'arkansas', 'year': '2019', 'playerName': 'Enoch Jackson', 'highSchool': 'Mansfield Legacy', 'city': 'Mansfield', 'state': 'TX', 'position': 'DT', 'height': 72.0, 'weight': '290', 'compRating': '0.8809', 'compStars': 3, 'nationalRank': '509', 'positionRank': '37', 'stateRank': '64', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '28', '247stateRank': '49'}, {'school': 'arkansas', 'year': '2019', 'playerName': 'Zach Zimos', 'highSchool': 'Fort Bend Travis', 'city': 'Richmond', 'state': 'TX', 'position': 'OLB', 'height': 75.5, 'weight': '204', 'compRating': '0.8762', 'compStars': 3, 'nationalRank': '571', 'positionRank': '38', 'stateRank': '70', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '61', '247stateRank': '106'}, {'school': 'arkansas', 'year': '2019', 'playerName': 'Taurean Carter', 'highSchool': 'Mansfield Legacy', 'city': 'Mansfield', 'state': 'TX', 'position': 'DT', 'height': 75.0, 'weight': '260', 'compRating': '0.8742', 'compStars': 3, 'nationalRank': '604', 'positionRank': '44', 'stateRank': '73', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '58', '247stateRank': '96'}, {'school': 'arkansas', 'year': '2019', 'playerName': 'Beaux Limmer', 'highSchool': 'Tyler Lee', 'city': 'Tyler', 'state': 'TX', 'position': 'OC', 'height': 77.0, 'weight': '280', 'compRating': '0.8701', 'compStars': 3, 'nationalRank': '672', 'positionRank': '10', 'stateRank': '85', '247Rating': ' 88 ', '247Stars': 3, '247positionRank': '8', '247stateRank': '66'}, {'school': 'arkansas', 'year': '2019', 'playerName': "A'Montae Spivey", 'highSchool': 'Central', 'city': 'Phenix City', 'state': 'AL', 'position': 'RB', 'height': 72.0, 'weight': '208', 'compRating': '0.8654', 'compStars': 3, 'nationalRank': '775', 'positionRank': '47', 'stateRank': '30', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '71', '247stateRank': '42'}, {'school': 'arkansas', 'year': '2019', 'playerName': 'Chibueze Nwanna', 'highSchool': 'Lackawanna C.C.', 'city': 'Scranton', 'state': 'PA', 'position': 'OT', 'height': 80.0, 'weight': '320', 'compRating': '0.8648', 'compStars': 3, 'nationalRank': '50', 'positionRank': '6', 'stateRank': '4', '247Rating': ' 87 ', '247Stars': 3, '247nationalRank': '38', '247positionRank': '5', '247stateRank': '4'}, {'school': 'arkansas', 'year': '2019', 'playerName': 'Malik Chavis', 'highSchool': 'Rison', 'city': 'Rison', 'state': 'AR', 'position': 'ATH', 'height': 74.0, 'weight': '187', 'compRating': '0.8601', 'compStars': 3, 'nationalRank': '875', 'positionRank': '59', 'stateRank': '7', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '96', '247stateRank': '7'}, {'school': 'arkansas', 'year': '2019', 'playerName': 'Myron Cunningham', 'highSchool': 'Iowa Central C.C.', 'city': 'Fort Dodge', 'state': 'IA', 'position': 'OT', 'height': 77.0, 'weight': '300', 'compRating': '0.8561', 'compStars': 3, 'nationalRank': '71', 'positionRank': '9', 'stateRank': '5', '247Rating': ' 86 ', '247Stars': 3, '247nationalRank': '69', '247positionRank': '9', '247stateRank': '5'}, {'school': 'arkansas', 'year': '2019', 'playerName': 'Brady Latham', 'highSchool': 'Jenks', 'city': 'Jenks', 'state': 'OK', 'position': 'OT', 'height': 77.0, 'weight': '287', 'compRating': '0.8519', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '88', 'stateRank': '13', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '66', '247stateRank': '11'}, {'school': 'arkansas', 'year': '2019', 'playerName': 'Marcus Miller', 'highSchool': 'Warren', 'city': 'Warren', 'state': 'AR', 'position': 'DT', 'height': 77.0, 'weight': '300', 'compRating': '0.8518', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '75', 'stateRank': '8', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '79', '247stateRank': '8'}, {'school': 'arkansas', 'year': '2019', 'playerName': 'Dylan Rathcke', 'highSchool': 'University Lab', 'city': 'Baton Rouge', 'state': 'LA', 'position': 'OT', 'height': 77.0, 'weight': '290', 'compRating': '0.8510', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '89', 'stateRank': '38', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '68', '247stateRank': '33'}, {'school': 'kentucky', 'year': '2012', 'playerName': 'Patrick Towles', 'highSchool': 'Highlands', 'city': 'Fort Thomas', 'state': 'KY', 'position': 'PRO', 'height': 77.0, 'weight': '230', 'compRating': '0.8932', 'compStars': 4, 'nationalRank': '357', 'positionRank': '15', 'stateRank': '2', '247Rating': ' 90 ', '247Stars': 4, '247positionRank': '10', '247stateRank': '1'}, {'school': 'kentucky', 'year': '2012', 'playerName': 'Thomas Chapman', 'highSchool': 'Dupont Manual', 'city': 'Louisville', 'state': 'KY', 'position': 'DT', 'height': 76.0, 'weight': '290', 'compRating': '0.8828', 'compStars': 3, 'nationalRank': '447', 'positionRank': '32', 'stateRank': '3', '247Rating': ' 89 ', '247Stars': 3, '247positionRank': '30', '247stateRank': '4'}, {'school': 'kentucky', 'year': '2012', 'playerName': 'Justin Taylor', 'highSchool': 'Washington', 'city': 'Atlanta', 'state': 'GA', 'position': 'RB', 'height': 71.0, 'weight': '200', 'compRating': '0.8774', 'compStars': 3, 'nationalRank': '523', 'positionRank': '27', 'stateRank': '42', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '35', '247stateRank': '47'}, {'school': 'kentucky', 'year': '2012', 'playerName': 'Langston Newton', 'highSchool': 'Carmel', 'city': 'Carmel', 'state': 'IN', 'position': 'SDE', 'height': 77.0, 'weight': '240', 'compRating': '0.8714', 'compStars': 3, 'nationalRank': '605', 'positionRank': '34', 'stateRank': '7', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '28', '247stateRank': '6'}, {'school': 'kentucky', 'year': '2012', 'playerName': 'Jalen Whitlow', 'highSchool': 'Prattville', 'city': 'Prattville', 'state': 'AL', 'position': 'DUAL', 'height': 74.0, 'weight': '210', 'compRating': '0.8657', 'compStars': 3, 'nationalRank': '684', 'positionRank': '18', 'stateRank': '23', '247Rating': ' 87 ', '247Stars': 3, '247positionRank': '12', '247stateRank': '20'}, {'school': 'kentucky', 'year': '2012', 'playerName': 'Jordan Watson', 'highSchool': 'Whitewater', 'city': 'Fayetteville', 'state': 'GA', 'position': 'OG', 'height': 76.0, 'weight': '304', 'compRating': '0.8654', 'compStars': 3, 'nationalRank': '689', 'positionRank': '37', 'stateRank': '54', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '37', '247stateRank': '54'}, {'school': 'kentucky', 'year': '2012', 'playerName': "Kadeem 'Pancho' Thomas", 'highSchool': 'Amos P. Godby', 'city': 'Tallahassee', 'state': 'FL', 'position': 'ILB', 'height': 71.0, 'weight': '220', 'compRating': '0.8615', 'compStars': 3, 'nationalRank': '728', 'positionRank': '29', 'stateRank': '89', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '35', '247stateRank': '131'}, {'school': 'kentucky', 'year': '2012', 'playerName': 'Daron Blaylock', 'highSchool': 'Walton', 'city': 'Marietta', 'state': 'GA', 'position': 'ILB', 'height': 72.0, 'weight': '220', 'compRating': '0.8519', 'compStars': 3, 'nationalRank': '850', 'positionRank': '41', 'stateRank': '72', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '33', '247stateRank': '78'}, {'school': 'kentucky', 'year': '2012', 'playerName': 'Khalid Henderson', 'highSchool': 'Pebblebrook', 'city': 'Mableton', 'state': 'GA', 'position': 'OLB', 'height': 73.0, 'weight': '210', 'compRating': '0.8510', 'compStars': 3, 'nationalRank': '859', 'positionRank': '75', 'stateRank': '73', '247Rating': ' 85 ', '247Stars': 3, '247positionRank': '73', '247stateRank': '57'}, {'school': 'kentucky', 'year': '2012', 'playerName': 'Zack Blaylock', 'highSchool': 'Walton', 'city': 'Marietta', 'state': 'GA', 'position': 'S', 'height': 71.0, 'weight': '180', 'compRating': '0.8452', 'compStars': 3, 'nationalRank': '947', 'positionRank': '62', 'stateRank': '78', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '83', '247stateRank': '88'}, {'school': 'kentucky', 'year': '2012', 'playerName': 'A.J. Legree', 'highSchool': 'Fort White', 'city': 'Fort White', 'state': 'FL', 'position': 'ATH', 'height': 74.0, 'weight': '190', 'compRating': '0.8437', 'compStars': 3, 'nationalRank': '969', 'positionRank': '70', 'stateRank': '111', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '88', '247stateRank': '114'}, {'school': 'kentucky', 'year': '2012', 'playerName': 'DeMarcus Sweat', 'highSchool': 'Stephenson', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'WR', 'height': 74.0, 'weight': '180', 'compRating': '0.8428', 'compStars': 3, 'nationalRank': '980', 'positionRank': '113', 'stateRank': '82', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '136', '247stateRank': '77'}, {'school': 'kentucky', 'year': '2012', 'playerName': 'Fred Tiller', 'highSchool': 'Clinch County', 'city': 'Homerville', 'state': 'GA', 'position': 'ATH', 'height': 73.0, 'weight': '180', 'compRating': '0.8418', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '72', 'stateRank': '87', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '108', '247stateRank': '101'}, {'school': 'kentucky', 'year': '2012', 'playerName': 'Dyshawn Mobley', 'highSchool': 'Powell', 'city': 'Powell', 'state': 'TN', 'position': 'RB', 'height': 72.0, 'weight': '210', 'compRating': '0.8409', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '59', 'stateRank': '23', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '62', '247stateRank': '25'}, {'school': 'kentucky', 'year': '2012', 'playerName': 'Jonathan Reed', 'highSchool': 'Pike', 'city': 'Indianapolis', 'state': 'IN', 'position': 'CB', 'height': 70.0, 'weight': '175', 'compRating': '0.8388', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '77', 'stateRank': '20', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '86', '247stateRank': '26'}, {'school': 'kentucky', 'year': '2012', 'playerName': 'Jon Toth', 'highSchool': 'Brebeuf Jesuit Preparatory School', 'city': 'Indianapolis', 'state': 'IN', 'position': 'OG', 'height': 77.0, 'weight': '280', 'compRating': '0.8370', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '65', 'stateRank': '24', '247Rating': ' 86 ', '247Stars': 3, '247positionRank': '33', '247stateRank': '11'}, {'school': 'kentucky', 'year': '2012', 'playerName': 'Josh Harris', 'highSchool': 'Mason County', 'city': 'Maysville', 'state': 'KY', 'position': 'ATH', 'height': 73.0, 'weight': '205', 'compRating': '0.8363', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '81', 'stateRank': '9', '247Rating': ' 81 ', '247Stars': 3, '247positionRank': '109', '247stateRank': '13'}, {'school': 'kentucky', 'year': '2012', 'playerName': 'Cody Quinn', 'highSchool': 'Middletown', 'city': 'Middletown', 'state': 'OH', 'position': 'CB', 'height': 70.0, 'weight': '165', 'compRating': '0.8356', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '87', 'stateRank': '73', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '87', '247stateRank': '71'}, {'school': 'kentucky', 'year': '2012', 'playerName': 'Zach Myers', 'highSchool': 'Miamisburg', 'city': 'Miamisburg', 'state': 'OH', 'position': 'OG', 'height': 75.0, 'weight': '287', 'compRating': '0.8337', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '68', 'stateRank': '75', '247Rating': ' 79 ', '247Stars': 2, '247positionRank': '83', '247stateRank': '91'}, {'school': 'kentucky', 'year': '2012', 'playerName': 'T.J. Jones', 'highSchool': 'Myrtle Beach', 'city': 'Myrtle Beach', 'state': 'SC', 'position': 'OT', 'height': 78.0, 'weight': '290', 'compRating': '0.8295', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '111', 'stateRank': '28', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '80', '247stateRank': '20'}, {'school': 'kentucky', 'year': '2012', 'playerName': 'Shawn Blaylock', 'highSchool': 'Stephenson', 'city': 'Stone Mountain', 'state': 'GA', 'position': 'WR', 'height': 74.0, 'weight': '180', 'compRating': '0.8288', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '149', 'stateRank': '101', '247Rating': ' 82 ', '247Stars': 3, '247positionRank': '146', '247stateRank': '94'}, {'school': 'kentucky', 'year': '2012', 'playerName': 'Patrick Graffree', 'highSchool': 'Central Hardin', 'city': 'Cecilia', 'state': 'KY', 'position': 'DT', 'height': 76.0, 'weight': '277', 'compRating': '0.8215', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '90', 'stateRank': '12', '247Rating': ' 83 ', '247Stars': 3, '247positionRank': '74', '247stateRank': '10'}, {'school': 'kentucky', 'year': '2012', 'playerName': 'Jordan Swindle', 'highSchool': 'Creekside', 'city': 'Saint Augustine', 'state': 'FL', 'position': 'OT', 'height': 80.0, 'weight': '305', 'compRating': '0.8120', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '130', 'stateRank': '192'}, {'school': 'kentucky', 'year': '2012', 'playerName': 'Landon Foster', 'highSchool': 'Independence', 'city': "Thompson's Station", 'state': 'TN', 'position': 'K', 'height': 74.0, 'weight': '195', 'compRating': '0.8079', 'compStars': 3, 'nationalRank': 'NA', 'positionRank': '11', 'stateRank': '34', '247Rating': ' 76 ', '247Stars': 2, '247positionRank': '12', '247stateRank': '39'}, {'school': 'kentucky', 'year': '2012', 'playerName': 'Kory Brown', 'highSchool': 'East Central C.C.', 'city': 'Decatur', 'state': 'MS', 'position': 'S', 'height': 73.0, 'weight': '200', 'compRating': '0.8067', 'compStars': 3, 'nationalRank': '124', 'positionRank': '4', 'stateRank': '20', '247Rating': ' 82 ', '247Stars': 3, '247nationalRank': '100', '247positionRank': '4', '247stateRank': '18'}, {'school': 'kentucky', 'year': '2012', 'playerName': 'Ryan Mosby', 'highSchool': 'Arizona Western College', 'city': 'Yuma', 'state': 'AZ', 'position': 'OLB', 'height': 72.0, 'weight': '220', 'compRating': '0.7833', 'compStars': 2, 'nationalRank': '175', 'positionRank': '10', 'stateRank': '19', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2012', 'playerName': 'Sterling Wright', 'highSchool': 'Coral Reef', 'city': 'Miami', 'state': 'FL', 'position': 'S', 'height': 72.0, 'weight': '190', 'compRating': '0.7000', 'compStars': 2, 'nationalRank': 'NA', 'positionRank': '228', 'stateRank': '418'}, {'school': 'kentucky', 'year': '2012', 'playerName': 'Jeff Witthuhn', 'highSchool': 'Greenwood', 'city': 'Bowling Green', 'state': 'KY', 'position': 'PRO', 'height': 75.0, 'weight': '245', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}, {'school': 'kentucky', 'year': '2012', 'playerName': 'Will Thomas Collins', 'highSchool': 'Pikeville', 'city': 'Pikeville', 'state': 'KY', 'position': 'FB', 'height': 71.0, 'weight': '238', 'compRating': 'NA', 'compStars': 0, 'nationalRank': 'NA', 'positionRank': 'NA', 'stateRank': 'NA', '247Rating': ' N/A ', '247Stars': 0, '247positionRank': 'N/A', '247stateRank': 'N/A'}]
with open("..//scraped_json//247_" + conference + ".json", "w") as write_file:
json.dump(all_recruits, write_file)